HomeSort by relevance Sort by last modified time
    Searched refs:coeff (Results 26 - 50 of 61) sorted by null

12 3

  /external/qemu/distrib/sdl-1.2.15/src/audio/
SDL_wave.c 82 Uint8 nybble, Sint16 *coeff)
92 new_sample = ((state->iSamp1 * coeff[0]) +
93 (state->iSamp2 * coeff[1]))/256;
121 Sint16 *coeff[2]; local
166 coeff[0] = MS_ADPCM_state.aCoeff[state[0]->hPredictor];
167 coeff[1] = MS_ADPCM_state.aCoeff[state[1]->hPredictor];
192 new_sample = MS_ADPCM_nibble(state[0],nybble,coeff[0]);
199 new_sample = MS_ADPCM_nibble(state[1],nybble,coeff[1]);
  /external/libvpx/vp8/encoder/
encodemb.h 22 int (sym)(short *coeff, short *dqcoeff)
asm_enc_offsets.c 37 DEFINE(vp8_block_coeff, offsetof(BLOCK, coeff));
encodeintra.c 39 x->vp8_short_fdct4x4(be->src_diff, be->coeff, 32);
rdopt.c 383 int vp8_block_error_c(short *coeff, short *dqcoeff)
390 int this_diff = coeff[i] - dqcoeff[i];
413 int this_diff = be->coeff[j] - bd->dqcoeff[j];
438 error += vp8_block_error_c(be->coeff, bd->dqcoeff);
560 mb->vp8_short_fdct8x4(beptr->src_diff, beptr->coeff, 32);
561 *Y2DCPtr++ = beptr->coeff[0];
562 *Y2DCPtr++ = beptr->coeff[16];
566 mb->short_walsh4x4(mb_y2->src_diff, mb_y2->coeff, 8);
579 d += ENCODEMB_INVOKE(rtcd, berr)(mb_y2->coeff, x_y2->dqcoeff);
634 x->vp8_short_fdct4x4(be->src_diff, be->coeff, 32)
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
block_switch.c 34 IIRFilter(const Word16 in, const Word32 coeff[], Word32 states[]);
339 static Word16 IIRFilter(const Word16 in, const Word32 coeff[], Word32 states[])
344 accu1 = L_mpy_ls(coeff[1], in);
346 accu2 = fixmul( coeff[0], states[1] );
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_metrics.h 42 double one_plus_r2s,half_dfu_dx,half_dfu_dy,coeff,coeff2,coeff3; local
93 coeff=(r2s/one_plus_r2s*one_over_r2-fu)*one_over_r2;
94 half_dfu_dx=f[0]*coeff;
95 half_dfu_dy=f[1]*coeff;
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_metrics.h 42 double one_plus_r2s,half_dfu_dx,half_dfu_dy,coeff,coeff2,coeff3; local
93 coeff=(r2s/one_plus_r2s*one_over_r2-fu)*one_over_r2;
94 half_dfu_dx=f[0]*coeff;
95 half_dfu_dy=f[1]*coeff;
  /external/libvpx/vp8/encoder/ppc/
csystemdependent.c 35 int (*vp8_block_error)(short *coeff, short *dqcoeff);
57 extern int block_error_c(short *coeff, short *dqcoeff);
97 extern int vp8_block_error_ppc(short *coeff, short *dqcoeff);
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
isf_extrapolation.cpp 122 int16 coeff, mean, tmp, tmp2, tmp3; local
231 coeff = div_16by16(tmp, tmp2); /* Coefficient for stretching the ISF vector */
236 tmp = mult_int16(sub_int16(HfIsf[i], HfIsf[i - 1]), coeff);
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
VectorArithmetic.h 103 LVM_INT16 coeff, /* All pass filter coefficient */
  /external/flac/libFLAC/
lpc.c 92 unsigned sample, coeff; local
98 for(coeff = 0; coeff < lag; coeff++)
99 autoc[coeff] = 0.0;
102 for(coeff = 0; coeff < lag; coeff++)
103 autoc[coeff] += d * data[sample+coeff];
    [all...]
  /external/skia/src/gpu/gl/
GrGpuGL.h 191 static bool BlendCoeffReferencesConstant(GrBlendCoeff coeff);
GrGLProgram.cpp 262 static inline void needBlendInputs(SkXfermode::Coeff srcCoeff,
263 SkXfermode::Coeff dstCoeff,
304 static void blendTermString(GrStringBuilder* str, SkXfermode::Coeff coeff,
307 switch (coeff) {
339 GrCrash("Unexpected xfer coeff.");
348 SkXfermode::Coeff uniformCoeff,
349 SkXfermode::Coeff colorCoeff,
657 SkXfermode::Coeff colorCoeff, uniformCoeff;
918 GrStringBuilder coeff; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
fastcodemb.h 32 Int(*DCT)(Int block[ ], Int coeff[ ], approxDCT *);
  /external/aac/libAACenc/src/
aacenc_tns.cpp 389 /* initialize TNS filter flag, order, and coefficient resolution (in bits per coeff) */
    [all...]
  /device/samsung/tuna/keymaster/
keymaster_tuna.cpp 550 Unique_ByteArray prime1, prime2, exp1, exp2, coeff; local
584 coeff.reset(bignum_to_array(rsa->iqmp));
585 if (coeff->get() == NULL) {
589 set_attribute(&privateKeyTemplate[templateOffset++], CKA_COEFFICIENT, coeff->get(),
590 coeff->length());
  /external/webp/src/dsp/
enc.c 21 // Compute susceptibility based on DCT-coeff histograms:
654 int coeff = (sign ? -in[j] : in[j]) + mtx->sharpen_[j]; local
655 if (coeff > 2047) coeff = 2047;
656 if (coeff > mtx->zthresh_[j]) {
660 out[n] = QUANTDIV(coeff, iQ, B);
  /external/libvpx/vp8/common/x86/
idctllm_sse2.asm 111 ; dc is set as first coeff, so no need to load qcoeff
374 ; dc is set as first coeff, so no need to load qcoeff
450 ; dc is set as first coeff, so no need to load qcoeff
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
BoundingSphere.java 611 float coeff = (length + radiusDiff) / (2.0f * length); local
612 rCenter.set(center.addLocal(diff.multLocal(coeff)));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
ixjuser.h 717 unsigned int coeff[19]; member in struct:__anon24246
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
ixjuser.h 717 unsigned int coeff[19]; member in struct:__anon25836
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
ixjuser.h 717 unsigned int coeff[19]; member in struct:__anon27348
  /external/libvpx/vp8/encoder/arm/armv6/
vp8_fast_quantize_b_armv6.asm 27 ldr r3, [r0, #vp8_block_coeff] ; coeff
  /external/libvpx/vp8/encoder/x86/
variance_impl_ssse3.asm 52 shl rax, 4 ; point to filter coeff with xoffset

Completed in 892 milliseconds

12 3