Home
last modified time | relevance | path

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

/external/sonivox/arm-wt-22k/lib_src/
Deas_math.h154 #define NUM_EG1_FRAC_BITS 15 macro
159 #define SYNTH_FULL_SCALE_EG1_GAIN (int32_t) ((0x1L << NUM_EG1_FRAC_BITS) -1)
162 #define EG1_ONE (int32_t) ((0x1L << NUM_EG1_FRAC_BITS))
186 >> NUM_EG1_FRAC_BITS \
205 >> (NUM_EG1_FRAC_BITS -1) \
234 #define CENTS_TO_DENTS (int32_t) (DENTS_ONE * (0x1L << NUM_EG1_FRAC_BITS) / 1200L) …
277 (0x1L << NUM_EG1_FRAC_BITS) \
281 #define LFO_GAIN_TO_CENTS (int32_t) (1671981156L >> (23 - NUM_EG1_FRAC_BITS))
Deas_wtsynth.c661 ((pChannel->modWheel) << (NUM_EG1_FRAC_BITS -7))); in WT_UpdatePhaseInc()
665 ((pChannel->channelPressure) << (NUM_EG1_FRAC_BITS -7))); in WT_UpdatePhaseInc()
715 staticGain = MULT_EG1_EG1((pChannel->volume) << (NUM_EG1_FRAC_BITS - 7), in WT_UpdateChannel()
716 (pChannel->expression) << (NUM_EG1_FRAC_BITS - 7)); in WT_UpdateChannel()
778 temp = (pVoice->velocity) << (NUM_EG1_FRAC_BITS - 7); in WT_UpdateGain()
DARM_synth_constants_gnu.inc80 .equ NUM_EG1_FRAC_BITS, 15
DARM-E_interpolate_noloop_gnu.s102 ADD tmp1, tmp0, tmp1, ASR #(NUM_EG1_FRAC_BITS-6) @ tmp1 = tmp0 + (tmp1 >> (15-6))
DARM-E_interpolate_loop_gnu.s110 ADD tmp1, tmp0, tmp1, ASR #(NUM_EG1_FRAC_BITS-6) @ tmp1 = tmp0 + (tmp1 >> (15-6))
Deas_wtengine.c633 tmp1 = tmp0 + (tmp1 >> NUM_EG1_FRAC_BITS); in WT_InterpolateMono()