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.c108 output = s->fdsp->scalarproduct_float(delay, tmp, s->kernel_size); in fir_sample()
131 sum = s->fdsp->scalarproduct_float(delay, delay, s->kernel_size); in process_sample()
Daf_headphone.c80 float (*scalarproduct_float)(const float *v1, const float *v2, int len); member
198 dst[0] += s->scalarproduct_float(cur_ir, temp_src, FFALIGN(ir_len, 32)); in headphone_convolute()
688 s->scalarproduct_float = fdsp->scalarproduct_float; in init()
Daf_arnndn.c1017 sum = s->fdsp->scalarproduct_float(in, s->dct_table[i], FFALIGN(NB_BANDS, 4)); in dct()
1296 sum += s->fdsp->scalarproduct_float(gru->input_weights + i * istride, input, AM); in compute_gru()
1297 sum += s->fdsp->scalarproduct_float(gru->recurrent_weights + i * stride, state, AN); in compute_gru()
1305 sum += s->fdsp->scalarproduct_float(gru->input_weights + AM + i * istride, input, AM); in compute_gru()
1306 sum += s->fdsp->scalarproduct_float(gru->recurrent_weights + AN + i * stride, state, AN); in compute_gru()
1314 sum += s->fdsp->scalarproduct_float(gru->input_weights + 2 * AM + i * istride, input, AM); in compute_gru()
Daf_sofalizer.c413 dst[0] += s->fdsp->scalarproduct_float(temp_ir, temp_src, FFALIGN(ir_samples, 32)); in sofalizer_convolute()
Dvf_nnedi.c213 sum = s->fdsp->scalarproduct_float(kernel, input, n); in dot_dsp()
/third_party/ffmpeg/libavutil/x86/
Dfloat_dsp_init.c91 fdsp->scalarproduct_float = ff_scalarproduct_float_sse; in ff_float_dsp_init_x86()
Dfloat_dsp.asm420 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.c649 band_energy = s->fdsp->scalarproduct_float(PNS, PNS, sce->ics.swb_sizes[g]); in search_for_pns()
652 pns_senergy = s->fdsp->scalarproduct_float(PNS, PNS, sce->ics.swb_sizes[g]); in search_for_pns()
Daacdec_template.c1816 band_energy = ac->fdsp->scalarproduct_float(cfo, cfo, off_len); in decode_spectrum_and_dequant()