HomeSort by relevance Sort by last modified time
    Searched full:coef (Results 101 - 125 of 324) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libopus/celt/
celt.h 199 int N, int CC, int upsample, const opus_val16 *coef, celt_sig *mem, int clip);
208 void deemphasis(celt_sig *in[], opus_val16 *pcm, int N, int C, int downsample, const opus_val16 *coef, celt_sig *mem, celt_sig * OPUS_RESTRICT scratch);
  /external/libopus/silk/
LPC_inv_pred_gain.c 59 /* Set RC equal to negated AR coef */
93 /* Set RC equal to negated AR coef */
define.h 78 #define STEREO_RATIO_SMOOTH_COEF 0.01 /* smoothing coef for signal norms and stereo width */
140 /* Find Pred Coef defines */
  /external/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jdtrans.c 54 /* Absorb whole file into the coef buffer */
84 return cinfo->coef->coef_arrays;
fpdfapi_jcphuff.c 41 int last_dc_val[MAX_COMPS_IN_SCAN]; /* last DC coef for each component */
503 /* For a negative coef, want temp2 = bitwise complement of abs(coef) */
509 /* Watch out for case that nonzero coef is zero after point transform */
658 EOB = k; /* EOB = index of last newly-nonzero coef */
686 /* If the coef was previously nonzero, it only needs a correction bit.
703 /* Emit output bit for newly-nonzero coef */
  /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]);
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
codec.h 182 void WebRtcIsac_AllPoleFilter(double* InOut, double* Coef, int lengthInOut,
185 void WebRtcIsac_AllZeroFilter(double* In, double* Coef, int lengthInOut,
  /frameworks/av/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/av/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 318 if (tnsInfo.coef[i*TNS_MAX_ORDER_SHORT+k] > 3 ||
319 tnsInfo.coef[i*TNS_MAX_ORDER_SHORT+k] < -4) {
329 if (tnsInfo.coef[i*TNS_MAX_ORDER_SHORT+k] > 1 ||
330 tnsInfo.coef[i*TNS_MAX_ORDER_SHORT+k] < -2) {
340 WriteBits(hBitStream,tnsInfo.coef[i*TNS_MAX_ORDER_SHORT+k] & rmask[coefBits],coefBits);
  /external/aac/libAACdec/src/
aacdec_tns.cpp 185 UCHAR coef,s_mask; local
202 coef = (UCHAR) FDKreadBits(bs,filter->Resolution - coef_compress);
203 filter->Coeff[i] = (coef & s_mask) ? (coef | n_mask) : coef;
  /external/qemu/distrib/sdl-1.2.15/src/joystick/linux/
SDL_sysjoystick.c 293 int coef[3]; member in struct:joystick_hwdata::axis_correct
727 joystick->hwdata->abs_correct[i].coef[0] =
729 joystick->hwdata->abs_correct[i].coef[1] =
733 joystick->hwdata->abs_correct[i].coef[2] = (1 << 29) / t;
735 joystick->hwdata->abs_correct[i].coef[2] = 0;
1058 if ( value > correct->coef[0] ) {
1059 if ( value < correct->coef[1] ) {
1062 value -= correct->coef[1];
1064 value -= correct->coef[0];
1066 value *= correct->coef[2]
    [all...]
  /external/chromium_org/third_party/libjpeg_turbo/
jcphuff.c 40 int last_dc_val[MAX_COMPS_IN_SCAN]; /* last DC coef for each component */
500 /* For a negative coef, want temp2 = bitwise complement of abs(coef) */
506 /* Watch out for case that nonzero coef is zero after point transform */
655 EOB = k; /* EOB = index of last newly-nonzero coef */
683 /* If the coef was previously nonzero, it only needs a correction bit.
700 /* Emit output bit for newly-nonzero coef */
  /external/chromium_org/third_party/speex/libspeex/
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]);
  /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 */
  /external/qemu/distrib/jpeg-6b/
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 */
  /frameworks/base/core/java/android/widget/
Scroller.java 122 float x, tx, coef; typedefs
125 coef = 3.0f * x * (1.0f - x);
126 tx = coef * ((1.0f - x) * P1 + x * P2) + x * x * x;
131 SPLINE_POSITION[i] = coef * ((1.0f - x) * START_TENSION + x) + x * x * x;
137 coef = 3.0f * y * (1.0f - y);
138 dy = coef * ((1.0f - y) * START_TENSION + y) + y * y * y;
143 SPLINE_TIME[i] = coef * ((1.0f - y) * P1 + y * P2) + y * y * y;
  /external/aac/libAACenc/src/
bitenc.cpp 521 if (tnsInfo->coef[i][j][k]> 3 ||
522 tnsInfo->coef[i][j][k]< -4) {
530 if ( tnsInfo->coef[i][j][k]> 1
531 || tnsInfo->coef[i][j][k]< -2) {
541 FDKwriteBits(hBitStream,tnsInfo->coef[i][j][k] & rmask[coefBits],coefBits);
564 if (tnsInfo->coef[i][j][k]> 3 || tnsInfo->coef[i][j][k]< -4) {
573 if (tnsInfo->coef[i][j][k]> 1 || tnsInfo->coef[i][j][k]< -2) {
    [all...]
  /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. */
  /bionic/libc/kernel/uapi/linux/
joystick.h 52 __s32 coef[8]; member in struct:js_corr

Completed in 3213 milliseconds

1 2 3 45 6 7 8 91011>>