• Home
  • Raw
  • Download

Lines Matching refs:int32_t

61     (((int32_t)(a) * (int32_t)(b)) >> 15)
66 (((int32_t)(a) * (int32_t)(b) ) << 1)
71 (((int32_t)(a) * (int32_t)(b) ) >> 1)
76 (((int32_t)((a) << 7) * (int32_t)(b)) >> 15)
108 #define PHASE_ONE (int32_t) (0x1L << NUM_PHASE_FRAC_BITS)
117 (int32_t)( \
119 ((int32_t)(audio)) * ((int32_t)(coef)) \
130 #define WET_DRY_ONE (int32_t) ((0x1L << NUM_WET_DRY_FRAC_BITS))
131 #define WET_DRY_MINUS_ONE (int32_t) (~WET_DRY_ONE)
132 #define WET_DRY_FULL_SCALE (int32_t) (WET_DRY_ONE - 1)
135 (int32_t)( \
137 ((int32_t)(audio)) * ((int32_t)(coef)) \
149 #define SYNTH_FULL_SCALE_EG1_GAIN (int32_t) ((0x1L << NUM_EG1_FRAC_BITS) -1)
152 #define EG1_ONE (int32_t) ((0x1L << NUM_EG1_FRAC_BITS))
153 #define EG1_MINUS_ONE (int32_t) (~SYNTH_FULL_SCALE_EG1_GAIN)
155 #define EG1_HALF (int32_t) (EG1_ONE/2)
156 #define EG1_MINUS_HALF (int32_t) (EG1_MINUS_ONE/2)
172 (int32_t)( \
174 ((int32_t)(gain)) * ((int32_t)(damping)) \
191 (int32_t)( \
193 ((int32_t)(gain)) * ((int32_t)(damping)) \
199 ((int32_t)(x) > SYNTH_FULL_SCALE_EG1_GAIN) ? (SYNTH_FULL_SCALE_EG1_GAIN) : \
200 ((int32_t)(x) < EG1_MINUS_ONE) ? (EG1_MINUS_ONE) : (x);
214 #define DENTS_FRAC_MASK (int32_t) ((0x1L << NUM_DENTS_FRAC_BITS) -1)
217 (int32_t)((int32_t)(x) >> NUM_DENTS_FRAC_BITS)
219 #define GET_DENTS_FRAC_PART(x) (int32_t)((int32_t)(x) & DENTS_FRAC_MASK)
221 #define DENTS_ONE (int32_t) (0x1L << NUM_DENTS_FRAC_BITS)
224 #define CENTS_TO_DENTS (int32_t) (DENTS_ONE * (0x1L << NUM_EG1_FRAC_BITS) / 1200L) …
264 #define LFO_GAIN_TO_CENTS (int32_t) \
271 #define LFO_GAIN_TO_CENTS (int32_t) (1671981156L >> (23 - NUM_EG1_FRAC_BITS))
275 (int32_t)( \
277 ((int32_t)(dents)) * ((int32_t)(coef)) \
288 #define DISTORTION_ONE (int32_t)((0x1L << (BITS_PER_AUDIO_SAMPLE-1)) -1)
289 #define DISTORTION_MINUS_ONE (int32_t)(~DISTORTION_ONE)
296 (int32_t) ( \
298 ((int32_t)(audio)) * ((int32_t)(drive)) \
304 (int32_t) ( \
306 ((int32_t)(audio1)) * ((int32_t)(audio2)) \
312 ((((int32_t)(x)) > DISTORTION_ONE) ? (DISTORTION_ONE) : \
313 (((int32_t)(x)) < DISTORTION_MINUS_ONE) ? (DISTORTION_MINUS_ONE) : ((int32_t)(x)));
332 int32_t Effects_log2(uint32_t x);
350 uint32_t Effects_exp2(int32_t x);
376 int16_t Effects_MillibelsToLinear16 (int32_t nGain);
399 int16_t Effects_Linear16ToMillibels (int32_t nGain);
417 int32_t Effects_Sqrt(int32_t in);