Home
last modified time | relevance | path

Searched refs:scalarproduct_float (Results 1 – 14 of 14) sorted by relevance

/third_party/ffmpeg/libavutil/arm/
Dfloat_dsp_init_neon.c58 fdsp->scalarproduct_float = ff_scalarproduct_float_neon; in ff_float_dsp_init_neon()
/third_party/ffmpeg/libavutil/aarch64/
Dfloat_dsp_init.c60 fdsp->scalarproduct_float = ff_scalarproduct_float_neon; in ff_float_dsp_init_aarch64()
/third_party/ffmpeg/libavutil/
Dfloat_dsp.h175 float (*scalarproduct_float)(const float *v1, const float *v2, int len); member
Dfloat_dsp.c151 fdsp->scalarproduct_float = avpriv_scalarproduct_float_c; in avpriv_float_dsp_alloc()
/third_party/ffmpeg/libavfilter/
Daf_anlms.c120 output = s->fdsp->scalarproduct_float(delay, tmp, s->kernel_size); in fir_sample()
143 sum = s->fdsp->scalarproduct_float(delay, delay, s->kernel_size); in process_sample()
Daf_headphone.c78 float (*scalarproduct_float)(const float *v1, const float *v2, int len); member
192 dst[0] += s->scalarproduct_float(cur_ir, temp_src, FFALIGN(ir_len, 32)); in headphone_convolute()
667 s->scalarproduct_float = fdsp->scalarproduct_float; in init()
Daf_arnndn.c1029 sum = s->fdsp->scalarproduct_float(in, s->dct_table[i], FFALIGN(NB_BANDS, 4)); in dct()
1308 sum += s->fdsp->scalarproduct_float(gru->input_weights + i * istride, input, AM); in compute_gru()
1309 sum += s->fdsp->scalarproduct_float(gru->recurrent_weights + i * stride, state, AN); in compute_gru()
1317 sum += s->fdsp->scalarproduct_float(gru->input_weights + AM + i * istride, input, AM); in compute_gru()
1318 sum += s->fdsp->scalarproduct_float(gru->recurrent_weights + AN + i * stride, state, AN); in compute_gru()
1326 sum += s->fdsp->scalarproduct_float(gru->input_weights + 2 * AM + i * istride, input, AM); in compute_gru()
Daf_sofalizer.c421 dst[0] += s->fdsp->scalarproduct_float(temp_ir, temp_src, FFALIGN(ir_samples, 32)); in sofalizer_convolute()
Dvf_nnedi.c221 sum = s->fdsp->scalarproduct_float(kernel, input, n); in dot_dsp()
/third_party/ffmpeg/libavutil/x86/
Dfloat_dsp_init.c96 fdsp->scalarproduct_float = ff_scalarproduct_float_sse; in ff_float_dsp_init_x86()
Dfloat_dsp.asm443 cglobal scalarproduct_float, 3,3,2, v1, v2, offset
/third_party/ffmpeg/tests/checkasm/
Dfloat_dsp.c335 if (check_func(fdsp->scalarproduct_float, "scalarproduct_float")) in checkasm_check_float_dsp()
/third_party/ffmpeg/libavcodec/
Daaccoder.c650 band_energy = s->fdsp->scalarproduct_float(PNS, PNS, sce->ics.swb_sizes[g]); in search_for_pns()
653 pns_senergy = s->fdsp->scalarproduct_float(PNS, PNS, sce->ics.swb_sizes[g]); in search_for_pns()
Daacdec_template.c1801 band_energy = ac->fdsp->scalarproduct_float(cfo, cfo, off_len); in decode_spectrum_and_dequant()