HomeSort by relevance Sort by last modified time
    Searched full:coef (Results 26 - 50 of 108) sorted by null

12 3 4 5

  /frameworks/base/media/libstagefright/codecs/amrnb/common/src/
az_lsp.cpp 388 Word16 *coef;
436 coef = f1;
439 ylow = Chebps (xlow, coef, NC);
449 ylow = Chebps (xlow, coef, NC);
460 ymid = Chebps (xmid, coef, NC);
512 coef = f2;
517 coef = f1;
519 ylow = Chebps (xlow, coef, NC);
582 Word16 *coef; local
630 coef = f1
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_math.h 122 - b is the unsigned fraction (cast to signed int as long as coef
125 #define MULT_AUDIO_COEF(audio,coef) /*lint -e704 <avoid divide for performance>*/ \
128 ((EAS_I32)(audio)) * ((EAS_I32)(coef)) \
143 #define MULT_AUDIO_WET_DRY_COEF(audio,coef) /*lint -e(702) <avoid divide for performance>*/ \
146 ((EAS_I32)(audio)) * ((EAS_I32)(coef)) \
283 #define MULT_DENTS_COEF(dents,coef) /*lint -e704 <avoid divide for performance>*/ \
286 ((EAS_I32)(dents)) * ((EAS_I32)(coef)) \
299 /* drive coef is given as int.frac */
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_math.h 122 - b is the unsigned fraction (cast to signed int as long as coef
125 #define MULT_AUDIO_COEF(audio,coef) /*lint -e704 <avoid divide for performance>*/ \
128 ((EAS_I32)(audio)) * ((EAS_I32)(coef)) \
143 #define MULT_AUDIO_WET_DRY_COEF(audio,coef) /*lint -e(702) <avoid divide for performance>*/ \
146 ((EAS_I32)(audio)) * ((EAS_I32)(coef)) \
283 #define MULT_DENTS_COEF(dents,coef) /*lint -e704 <avoid divide for performance>*/ \
286 ((EAS_I32)(dents)) * ((EAS_I32)(coef)) \
299 /* drive coef is given as int.frac */
  /external/sonivox/arm-wt-22k/lib_src/
eas_math.h 122 - b is the unsigned fraction (cast to signed int as long as coef
125 #define MULT_AUDIO_COEF(audio,coef) /*lint -e704 <avoid divide for performance>*/ \
128 ((EAS_I32)(audio)) * ((EAS_I32)(coef)) \
143 #define MULT_AUDIO_WET_DRY_COEF(audio,coef) /*lint -e(702) <avoid divide for performance>*/ \
146 ((EAS_I32)(audio)) * ((EAS_I32)(coef)) \
283 #define MULT_DENTS_COEF(dents,coef) /*lint -e704 <avoid divide for performance>*/ \
286 ((EAS_I32)(dents)) * ((EAS_I32)(coef)) \
299 /* drive coef is given as int.frac */
  /external/speex/libspeex/
sb_celp.h 55 spx_word16_t gamma1; /**< Perceptual weighting coef 1 */
56 spx_word16_t gamma2; /**< Perceptual weighting coef 2 */
lsp.c 141 spx_word16_t *coef, /* P or Q coefs in Q13 format */
162 sum = ADD32(EXTEND32(coef[m]), EXTEND32(MULT16_16_P14(coef[m-1],x)));
168 sum = ADD32(sum, EXTEND32(MULT16_16_P14(coef[m-i],b0)));
177 static float cheb_poly_eva(spx_word32_t *coef, spx_word16_t x, int m, char *stack)
192 b0=x*b0-b1+coef[m-k]; /* b0 holds its new value based on b0 and b1 */
196 return(-b1+.5*x*b0+coef[m]);
filters.h 68 /* Apply bandwidth expansion on LPC coef */
  /frameworks/base/media/libeffects/testlibs/
AudioShelvingFilter.h 121 // Fractional index into the gain dimension of the coef table in
124 // Fractional index into the frequency dimension of the coef table in
EffectsMath.h 113 - b is the unsigned fraction (cast to signed int as long as coef
116 #define MULT_AUDIO_COEF(audio,coef) /*lint -e704 <avoid divide for performance>*/ \
119 ((int32_t)(audio)) * ((int32_t)(coef)) \
134 #define MULT_AUDIO_WET_DRY_COEF(audio,coef) /*lint -e(702) <avoid divide for performance>*/ \
137 ((int32_t)(audio)) * ((int32_t)(coef)) \
274 #define MULT_DENTS_COEF(dents,coef) /*lint -e704 <avoid divide for performance>*/ \
277 ((int32_t)(dents)) * ((int32_t)(coef)) \
291 /* drive coef is given as int.frac */
  /frameworks/base/media/libstagefright/codecs/aacenc/src/
stat_bits.c 130 ptcoef = tnsInfo->coef + i*TNS_MAX_ORDER_SHORT;
142 ptcoef = tnsInfo->coef + i*TNS_MAX_ORDER_SHORT;
bitenc.c 317 if (tnsInfo.coef[i*TNS_MAX_ORDER_SHORT+k] > 3 ||
318 tnsInfo.coef[i*TNS_MAX_ORDER_SHORT+k] < -4) {
328 if (tnsInfo.coef[i*TNS_MAX_ORDER_SHORT+k] > 1 ||
329 tnsInfo.coef[i*TNS_MAX_ORDER_SHORT+k] < -2) {
339 WriteBits(hBitStream,tnsInfo.coef[i*TNS_MAX_ORDER_SHORT+k] & rmask[coefBits],coefBits);
  /external/qemu/distrib/sdl-1.2.12/src/joystick/linux/
SDL_sysjoystick.c 290 int coef[3]; member in struct:joystick_hwdata::axis_correct
715 joystick->hwdata->abs_correct[i].coef[0] =
717 joystick->hwdata->abs_correct[i].coef[1] =
721 joystick->hwdata->abs_correct[i].coef[2] = (1 << 29) / t;
723 joystick->hwdata->abs_correct[i].coef[2] = 0;
1039 if ( value > correct->coef[0] ) {
1040 if ( value < correct->coef[1] ) {
1043 value -= correct->coef[1];
1045 value -= correct->coef[0];
1047 value *= correct->coef[2]
    [all...]
  /external/jpeg/
jcphuff.c 40 int last_dc_val[MAX_COMPS_IN_SCAN]; /* last DC coef for each component */
502 /* For a negative coef, want temp2 = bitwise complement of abs(coef) */
508 /* Watch out for case that nonzero coef is zero after point transform */
657 EOB = k; /* EOB = index of last newly-nonzero coef */
685 /* If the coef was previously nonzero, it only needs a correction bit.
702 /* Emit output bit for newly-nonzero coef */
jdinput.c 277 (*cinfo->coef->start_input_pass) (cinfo);
278 cinfo->inputctl->consume_input = cinfo->coef->consume_data;
280 cinfo->coef->consume_data_build_huffman_index;
347 /* Prevent infinite loop in coef ctlr's decompress_data routine
jidctfst.c 129 #define DEQUANTIZE(coef,quantval) (((IFAST_MULT_TYPE) (coef)) * (quantval))
131 #define DEQUANTIZE(coef,quantval) \
132 DESCALE((coef)*(quantval), IFAST_SCALE_BITS-PASS1_BITS)
jcapimin.c 168 /* We bypass the main controller and invoke coef controller directly;
171 if (! (*cinfo->coef->compress_data) (cinfo, (JSAMPIMAGE) NULL))
jcmainct.c 135 if (! (*cinfo->coef->compress_data) (cinfo, main->buffer)) {
209 if (! (*cinfo->coef->compress_data) (cinfo, main->buffer)) {
  /external/srec/srec/cfront/
cheldsp4.c 225 cepdata rgmcep[MAX_CEP_DIM+1]; /*regression MCEP coef. */
226 cepdata ddmcep[MAX_CEP_DIM+1]; /*del-del-MCEP coef. */
227 cepdata rastapar[MAX_CEP_DIM+1]; /*del-del-MCEP coef. */
  /frameworks/base/core/java/android/widget/
Scroller.java 80 float x, tx, coef; typedefs
83 coef = 3.0f * x * (1.0f - x);
84 tx = coef * ((1.0f - x) * START_TENSION + x * END_TENSION) + x * x * x;
89 final float d = coef + x * x * x;
  /hardware/invensense/mlsdk/mllite/
mlFIFO.h 112 inv_error_t inv_set_linear_accel_filter_coef(float coef);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
joystick.h 82 __s32 coef[8]; member in struct:js_corr
  /external/libvpx/vp8/common/arm/armv6/
bilinearfilter_v6.asm 46 cmp r5, #128 ; if filter coef = 128, then skip the filter
159 cmp r5, #128 ; if filter coef = 128, then skip the filter
  /frameworks/base/core/java/android/speech/srec/
UlawEncoderInputStream.java 78 int coef = MAX_ULAW * (1 << SCALE_BITS) / max; local
82 pcm = (pcm * coef) >> SCALE_BITS;
  /frameworks/base/media/libeffects/lvm/lib/Bass/src/
LVDBE_Init.c 89 * Coef memory
214 * Set pointer to data and coef memory
  /frameworks/base/media/libstagefright/codecs/aacdec/
huffspec_fxp.cpp 107 coef[] = array that holds inverse quantized coefs, Int32 QFormat.
130 coef contains the newly inverse quantized 1024 spec coefs,
157 This function should set the content of the array 'coef' with the inverse
304 Int32 coef[],
321 Int stop_idx; /* index of 1st coef in next sfb */
333 Int32 *pCoef; /* ptr to coef[], inverse quantized coefs */
548 /* stop_idx is the index of the 1st coef of next section */
623 pCoef = coef;

Completed in 785 milliseconds

12 3 4 5