/frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/ |
LVPSA_Memory.c | 59 INST_ALLOC Coef; 66 InstAlloc_Init( &Coef , LVM_NULL); 145 InstAlloc_AddMember( &Coef, pInitParams->nBands * sizeof(Biquad_Instance_t) ); 146 InstAlloc_AddMember( &Coef, pInitParams->nBands * sizeof(QPD_State_t) ); 147 pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_COEF].Size = InstAlloc_GetTotal(&Coef);
|
LVPSA_Init.c | 57 INST_ALLOC Coef; 91 InstAlloc_Init( &Coef , pMemoryTable->Region[LVPSA_MEMREGION_PERSISTENT_COEF].pBaseAddress); 151 pLVPSA_Inst->pBP_Instances = InstAlloc_AddMember( &Coef, pInitParams->nBands * sizeof(Biquad_Instance_t) ); 152 pLVPSA_Inst->pQPD_States = InstAlloc_AddMember( &Coef, pInitParams->nBands * sizeof(QPD_State_t) );
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
partial_idct_test.cc | 90 int16_t coef = static_cast<int16_t>(sqrt(1.0 * max_energy_leftover) * local 92 max_energy_leftover -= coef * coef; 95 coef = 0; 97 test_coef_block1[vp9_default_scan_orders[tx_size_].scan[j]] = coef;
|
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
cmswtpnt.c | 281 cmsVEC3 WhitePoint, Coef; 311 _cmsMAT3eval(&Coef, &Result, &WhitePoint); 314 _cmsVEC3init(&r -> v[0], Coef.n[VX]*xr, Coef.n[VY]*xg, Coef.n[VZ]*xb); 315 _cmsVEC3init(&r -> v[1], Coef.n[VX]*yr, Coef.n[VY]*yg, Coef.n[VZ]*yb); 316 _cmsVEC3init(&r -> v[2], Coef.n[VX]*(1.0-xr-yr), Coef.n[VY]*(1.0-xg-yg), Coef.n[VZ]*(1.0-xb-yb)) [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/ |
lsf_interpolate_to_poly_dec.c | 31 int16_t coef, /* (i) weighting coefficient to use between 38 WebRtcIlbcfix_Interpolate(lsftmp, lsf1, lsf2, coef, length);
|
lsf_interpolate_to_poly_enc.c | 32 int16_t coef, /* (i) weighting coefficient to use between 40 WebRtcIlbcfix_Interpolate(lsftmp, lsf1, lsf2, coef, length);
|
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
entropy_coding.h | 37 /* decode & dequantize LPC Coef */ 49 /* quantize & code LPC Coef */
|
/frameworks/av/media/libeffects/lvm/lib/Eq/src/ |
LVEQNB_CalcCoef.c | 109 LVM_INT16 coef; local 138 * CosErr += coef(n) * t0^n For n = 0 to 4 146 coef = LVEQNB_DPCosCoef[i]; /* Get the nth coefficient */ 147 CosErr += (factor * coef) >> 5; /* The nth partial sum */ 240 LVM_INT16 coef; local 269 * Cos += coef(n) * t0^n For n = 0 to 6 277 coef = LVEQNB_CosCoef[i]; /* Get the nth coefficient */ 278 COS_T0 += (factor * coef) >> 5; /* The nth partial sum */
|
/frameworks/av/services/audioflinger/ |
AudioResamplerFirProcessNeon.h | 29 // and looping stride 16 (or vice versa). This has some polyphase coef data alignment 77 "vmlal.s16 q0, d4, d17 \n"// (1+0d) multiply (reversed)samples by coef 78 "vmlal.s16 q0, d5, d16 \n"// (1) multiply (reversed)samples by coef 202 "vmlal.s16 q0, d4, d17 \n"// (1+0d) multiply reversed samples by coef 203 "vmlal.s16 q0, d5, d16 \n"// (1) multiply reversed samples by coef 338 "vqrdmulh.s32 q12, q12, q9 \n"// multiply samples by interpolated coef 339 "vqrdmulh.s32 q13, q13, q8 \n"// multiply samples by interpolated coef 340 "vqrdmulh.s32 q14, q14, q10 \n"// multiply samples by interpolated coef 341 "vqrdmulh.s32 q15, q15, q11 \n"// multiply samples by interpolated coef 401 "vqrdmulh.s32 q12, q12, q9 \n"// multiply samples by interpolated coef [all...] |
AudioResamplerFirProcess.h | 27 void mac(int32_t& l, int32_t& r, TC coef, const int16_t* samples) 30 l = mulAddRL(1, rl, coef, l); 31 r = mulAddRL(0, rl, coef, r); 36 void mac(int32_t& l, TC coef, const int16_t* samples) 38 l = mulAdd(samples[0], coef, l); 44 void mac(float& l, float& r, TC coef, const float* samples) 46 l += *samples++ * coef; 47 r += *samples * coef; 52 void mac(float& l, TC coef, const float* samples) 54 l += *samples * coef; [all...] |
/external/jpeg/ |
jdapistd.c | 51 /* If file has multiple scans, absorb them all into the coef buffer */ 224 cinfo->coef->MCU_columns_to_skip = 251 cinfo->inputctl->consume_input = cinfo->coef->consume_data; 253 cinfo->coef->consume_data_build_huffman_index; 257 cinfo->coef->MCU_column_left_boundary = col_left_boundary; 258 cinfo->coef->MCU_column_right_boundary = col_right_boundary; 259 cinfo->coef->column_left_boundary = 261 cinfo->coef->column_right_boundary = 288 int offset_data_col_position = cinfo->coef->MCU_column_left_boundary / 332 if (! (*cinfo->coef->decompress_data) (cinfo, data) [all...] |
/external/qemu/distrib/jpeg-6b/ |
jdapistd.c | 51 /* If file has multiple scans, absorb them all into the coef buffer */ 224 cinfo->coef->MCU_columns_to_skip = 251 cinfo->inputctl->consume_input = cinfo->coef->consume_data; 253 cinfo->coef->consume_data_build_huffman_index; 257 cinfo->coef->MCU_column_left_boundary = col_left_boundary; 258 cinfo->coef->MCU_column_right_boundary = col_right_boundary; 259 cinfo->coef->column_left_boundary = 261 cinfo->coef->column_right_boundary = 288 int offset_data_col_position = cinfo->coef->MCU_column_left_boundary / 332 if (! (*cinfo->coef->decompress_data) (cinfo, data) [all...] |
/external/aac/libSBRdec/src/ |
psdec.cpp | [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/ |
sp_fs.h | 43 void sp_setup_pos_vector(const struct tgsi_interp_coef *coef,
|
sp_fs_exec.c | 84 setup_pos_vector(const struct tgsi_interp_coef *coef, 103 const float dadx = coef->dadx[chan]; 104 const float dady = coef->dady[chan]; 105 const float a0 = coef->a0[chan] + dadx * x + dady * y;
|
/external/eigen/bench/btl/libs/ublas/ |
ublas_interface.hh | 99 static inline void axpy_slow(const real coef, const gene_vector & X, gene_vector & Y, int N){ 100 Y+=coef*X; 117 static inline void axpy(const real coef, const gene_vector & X, gene_vector & Y, int N){ 118 Y.plus_assign(coef*X);
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_fs.h | 43 void sp_setup_pos_vector(const struct tgsi_interp_coef *coef,
|
sp_fs_exec.c | 84 setup_pos_vector(const struct tgsi_interp_coef *coef, 103 const float dadx = coef->dadx[chan]; 104 const float dady = coef->dady[chan]; 105 const float a0 = coef->a0[chan] + dadx * x + dady * y;
|
/external/chromium_org/third_party/opus/src/silk/ |
VAD.c | 306 opus_int coef, min_coef; local 330 coef = VAD_NOISE_LEVEL_SMOOTH_COEF_Q16 >> 3; 332 coef = VAD_NOISE_LEVEL_SMOOTH_COEF_Q16; 334 coef = silk_SMULWB( silk_SMULWW( inv_nrg, nl ), VAD_NOISE_LEVEL_SMOOTH_COEF_Q16 << 1 ); 338 coef = silk_max_int( coef, min_coef ); 341 psSilk_VAD->inv_NL[ k ] = silk_SMLAWB( psSilk_VAD->inv_NL[ k ], inv_nrg - psSilk_VAD->inv_NL[ k ], coef );
|
/external/chromium_org/ui/gfx/android/ |
scroller.cc | 72 float x, tx, coef; local 75 coef = 3.0f * x * (1.0f - x); 76 tx = coef * ((1.0f - x) * kP1 + x * kP2) + x * x * x; 84 spline_position_[i] = coef * ((1.0f - x) * kStartTension + x) + x * x * x; 90 coef = 3.0f * y * (1.0f - y); 91 dy = coef * ((1.0f - y) * kStartTension + y) + y * y * y; 99 spline_time_[i] = coef * ((1.0f - y) * kP1 + y * kP2) + y * y * y;
|
/external/libopus/silk/ |
VAD.c | 306 opus_int coef, min_coef; local 330 coef = VAD_NOISE_LEVEL_SMOOTH_COEF_Q16 >> 3; 332 coef = VAD_NOISE_LEVEL_SMOOTH_COEF_Q16; 334 coef = silk_SMULWB( silk_SMULWW( inv_nrg, nl ), VAD_NOISE_LEVEL_SMOOTH_COEF_Q16 << 1 ); 338 coef = silk_max_int( coef, min_coef ); 341 psSilk_VAD->inv_NL[ k ] = silk_SMLAWB( psSilk_VAD->inv_NL[ k ], inv_nrg - psSilk_VAD->inv_NL[ k ], coef );
|
/external/chromium_org/third_party/libvpx/source/libvpx/test/ |
partial_idct_test.cc | 172 int16_t coef = static_cast<int16_t>(sqrt(1.0 * max_energy_leftover) * local 174 max_energy_leftover -= coef * coef; 177 coef = 0; 179 test_coef_block1[vp9_default_scan_orders[tx_size_].scan[j]] = coef;
|
/external/chromium_org/third_party/opus/src/silk/float/ |
prefilter_FLP.c | 53 const silk_float coef[], /* I Coefficients [order] */ 73 acc = coef[ 0 ] * tmp2; 79 acc += coef[ i - 1 ] * tmp1; 83 acc += coef[ i ] * tmp2; 86 acc += coef[ order - 1 ] * tmp1;
|
/external/libopus/silk/float/ |
prefilter_FLP.c | 53 const silk_float coef[], /* I Coefficients [order] */ 73 acc = coef[ 0 ] * tmp2; 79 acc += coef[ i - 1 ] * tmp1; 83 acc += coef[ i ] * tmp2; 86 acc += coef[ order - 1 ] * tmp1;
|
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsics_x86.c | 81 const short *coef, uint32_t count) { 89 x = _mm_loadl_epi64((const __m128i *)(coef+0)); 92 x = _mm_loadl_epi64((const __m128i *)(coef+4)); 95 x = _mm_loadl_epi64((const __m128i *)(coef+8)); 143 const short *coef, uint32_t count) { 157 c0 = _mm_loadl_epi64((const __m128i *)(coef+0)); 158 c1 = _mm_loadl_epi64((const __m128i *)(coef+4)); 161 c2 = _mm_loadl_epi64((const __m128i *)(coef+8)); 162 c3 = _mm_loadl_epi64((const __m128i *)(coef+12)); 198 const short *coef, uint32_t count) [all...] |