Home
last modified time | relevance | path

Searched refs:pitch (Results 1 – 6 of 6) sorted by relevance

/TwlSDK-5.4/build/libraries/snd/common/src/
Dsnd_util.c316 int pitch = -pitch_; // Find inverse in SND_CalcTimer() local
318 while (pitch < 0) in SND_CalcTimer()
321 pitch += SND_PITCH_TABLE_SIZE; in SND_CalcTimer()
323 while (pitch >= SND_PITCH_TABLE_SIZE) in SND_CalcTimer()
326 pitch -= SND_PITCH_TABLE_SIZE; in SND_CalcTimer()
330 timer = SVC_GetPitchTable(pitch); in SND_CalcTimer()
332 timer = PitchTable[pitch]; in SND_CalcTimer()
/TwlSDK-5.4/include/nitro/snd/common/
Dutil.h113 u16 SND_CalcTimer(int orgTimer, int pitch);
/TwlSDK-5.4/build/demos/snd/synth/src/
Dmain.c39 #define GetFreq(pitch) (SND_TIMER_CLOCK / SND_CalcTimer((SND_TIMER_CLOCK / 440), (pitch - 69 * 64))) argument
/TwlSDK-5.4/build/libraries/snd/ARM9/src/
Dsnd_interface.c183 void SND_SetTrackPitch(int playerNo, u32 trackBitMask, int pitch) in SND_SetTrackPitch() argument
186 SDK_MINMAX_ASSERT(pitch, -32768, 32767); in SND_SetTrackPitch()
189 GetOffset(SNDTrack, ext_pitch), (u32)pitch, GetSize(SNDTrack, ext_pitch)); in SND_SetTrackPitch()
/TwlSDK-5.4/include/nitro/snd/ARM9/
Dinterface.h71 void SND_SetTrackPitch(int playerNo, u32 trackBitMask, int pitch);
/TwlSDK-5.4/build/demos/math/fft-2/src/
Dmain.c60 #define GetFreq(pitch) (SND_TIMER_CLOCK / SND_CalcTimer((SND_TIMER_CLOCK / 440), (pitch - 69 * 64))) argument