Home
last modified time | relevance | path

Searched refs:coefs (Results 1 – 7 of 7) sorted by relevance

/external/libjpeg-turbo/simd/arm/
Djcphuff-neon.c147 int16x8_t coefs = vdupq_n_s16(0); in jsimd_encode_mcu_AC_first_prepare_neon() local
151 coefs = vld1q_lane_s16(block + jpeg_natural_order_start[7], coefs, 7); in jsimd_encode_mcu_AC_first_prepare_neon()
153 coefs = vld1q_lane_s16(block + jpeg_natural_order_start[6], coefs, 6); in jsimd_encode_mcu_AC_first_prepare_neon()
155 coefs = vld1q_lane_s16(block + jpeg_natural_order_start[5], coefs, 5); in jsimd_encode_mcu_AC_first_prepare_neon()
157 coefs = vld1q_lane_s16(block + jpeg_natural_order_start[4], coefs, 4); in jsimd_encode_mcu_AC_first_prepare_neon()
159 coefs = vld1q_lane_s16(block + jpeg_natural_order_start[3], coefs, 3); in jsimd_encode_mcu_AC_first_prepare_neon()
161 coefs = vld1q_lane_s16(block + jpeg_natural_order_start[2], coefs, 2); in jsimd_encode_mcu_AC_first_prepare_neon()
163 coefs = vld1q_lane_s16(block + jpeg_natural_order_start[1], coefs, 1); in jsimd_encode_mcu_AC_first_prepare_neon()
165 coefs = vld1q_lane_s16(block + jpeg_natural_order_start[0], coefs, 0); in jsimd_encode_mcu_AC_first_prepare_neon()
171 int16x8_t sign_coefs = vshrq_n_s16(coefs, 15); in jsimd_encode_mcu_AC_first_prepare_neon()
[all …]
/external/libopus/silk/float/
Dnoise_shape_analysis_FLP.c40 const silk_float *coefs, in warped_gain() argument
48 gain = coefs[ order - 1 ]; in warped_gain()
50 gain = lambda * gain + coefs[ i ]; in warped_gain()
58 silk_float *coefs, in warped_true2monic_coefs() argument
68 coefs[ i - 1 ] -= lambda * coefs[ i ]; in warped_true2monic_coefs()
70 gain = ( 1.0f - lambda * lambda ) / ( 1.0f + lambda * coefs[ 0 ] ); in warped_true2monic_coefs()
72 coefs[ i ] *= gain; in warped_true2monic_coefs()
80 tmp = silk_abs_float( coefs[ i ] ); in warped_true2monic_coefs()
93 coefs[ i - 1 ] += lambda * coefs[ i ]; in warped_true2monic_coefs()
97 coefs[ i ] *= gain; in warped_true2monic_coefs()
[all …]
/external/llvm-project/llvm/test/CodeGen/Hexagon/
Dtiny_bkfir_loop_align.ll11 define void @bkfir(i32* nocapture readonly %in, i32* nocapture readonly %coefs, i32 %tap, i32 %leng…
18 %1 = bitcast i32* %coefs to i64*
Dtiny_bkfir_artdeps.ll8 define void @bkfir(i32* nocapture readonly %in, i32* nocapture readonly %coefs, i32 %tap, i32 %leng…
15 %1 = bitcast i32* %coefs to i64*
/external/webrtc/modules/audio_processing/aecm/
Daecm_core_mips.cc72 int32_t hann, hann1, coefs; in WindowAndFFT() local
138 [hann1] "=&r"(hann1), [shift1] "=&r"(shift1), [coefs] "=&r"(coefs), in WindowAndFFT()
/external/dng_sdk/source/
Ddng_lens_correction.cpp470 const dng_vector &coefs = fRadParams [plane]; in MaxSrcRadiusGap() local
472 const real64 k3 = coefs [1]; in MaxSrcRadiusGap()
473 const real64 k5 = coefs [2]; in MaxSrcRadiusGap()
474 const real64 k7 = coefs [3]; in MaxSrcRadiusGap()
/external/libaom/libaom/av1/encoder/
Dtx_search.c422 DECLARE_ALIGNED(32, tran_low_t, coefs[32 * 32]); in predict_skip_flag()
440 av1_fwd_txfm(src_diff + col, coefs, bw, &param); in predict_skip_flag()
442 const uint32_t dc_coef = (((uint32_t)abs(coefs[0])) << 7); in predict_skip_flag()
445 const uint32_t ac_coef = (((uint32_t)abs(coefs[i])) << 7); in predict_skip_flag()