Home
last modified time | relevance | path

Searched refs:ncoeffs (Results 1 – 2 of 2) sorted by relevance

/third_party/optimized-routines/math/tools/
Dremez.jl112 function ratfn_eval(ncoeffs::Array{BigFloat}, dcoeffs::Array{BigFloat},
114 return poly_eval(ncoeffs, x) / poly_eval(dcoeffs, x)
155 function ratfn_to_string(ncoeffs::Array{BigFloat}, dcoeffs::Array{BigFloat})
158 return poly_to_string(ncoeffs)
160 return string("(", poly_to_string(ncoeffs), ")/(",
406 ncoeffs = all_coeffs[1:n+1]
408 return (ncoeffs, dcoeffs)
660 ncoeffs = outvector[1:n+1]
662 return ncoeffs, dcoeffs
718 ncoeffs = outvector[1:n+1]
[all …]
/third_party/ffmpeg/libavcodec/
Ddcadsp.c64 int ncoeffs = 8 >> dec_select; in lfe_fir_float_c() local
74 for (k = 0; k < ncoeffs; k++) { in lfe_fir_float_c()
75 a += filter_coeff[ j * ncoeffs + k] * lfe_samples[-k]; in lfe_fir_float_c()
76 b += filter_coeff[255 - j * ncoeffs - k] * lfe_samples[-k]; in lfe_fir_float_c()