/third_party/ffmpeg/libavcodec/ |
D | amrwbdec.c | 66 …float fixed_vector[AMRWB_SFR_SIZE]; ///< algebraic codebook (fixed) vector for current s… member 492 static void decode_fixed_vector(float *fixed_vector, const uint16_t *pulse_hi, in decode_fixed_vector() argument 545 memset(fixed_vector, 0, sizeof(float) * AMRWB_SFR_SIZE); in decode_fixed_vector() 551 fixed_vector[pos] += sig_pos[i][j] < 0 ? -1.0 : 1.0; in decode_fixed_vector() 581 static void pitch_sharpening(AMRWBContext *ctx, float *fixed_vector) in pitch_sharpening() argument 587 fixed_vector[i] -= fixed_vector[i - 1] * ctx->tilt_coef; in pitch_sharpening() 591 fixed_vector[i] += fixed_vector[i - ctx->pitch_lag_int] * 0.85; in pitch_sharpening() 628 float *fixed_vector, float *buf) in anti_sparseness() argument 633 return fixed_vector; in anti_sparseness() 678 if (fixed_vector[i]) in anti_sparseness() [all …]
|
D | sipr.c | 180 float *fixed_vector) in pitch_sharpening() argument 185 fixed_vector[i] += beta * fixed_vector[i - pitch_lag_int]; in pitch_sharpening() 391 float fixed_vector[SUBFR_SIZE]; in decode_frame() local 411 convolute_with_sparse(fixed_vector, &fixed_cb, impulse_response, in decode_frame() 414 avg_energy = (0.01 + avpriv_scalarproduct_float_c(fixed_vector, in decode_frame() 415 fixed_vector, in decode_frame() 426 ff_weighted_vector_sumf(excitation, excitation, fixed_vector, in decode_frame() 437 fixed_vector[j] = excitation[j] - gain_code * fixed_vector[j]; in decode_frame() 440 postfilter_5k0(ctx, pAz, fixed_vector); in decode_frame() 447 ff_celp_lp_synthesis_filterf(synth + i*SUBFR_SIZE, pAz, fixed_vector, in decode_frame()
|
D | sipr16k.c | 184 float fixed_vector[L_SUBFR_16k]; in ff_sipr_decode_frame_16k() local 234 memset(fixed_vector, 0, sizeof(fixed_vector)); in ff_sipr_decode_frame_16k() 239 ff_set_fixed_vector(fixed_vector, &f, 1.0, L_SUBFR_16k); in ff_sipr_decode_frame_16k() 243 acelp_decode_gain_codef(sqrt(L_SUBFR_16k), fixed_vector, in ff_sipr_decode_frame_16k() 252 fixed_vector, pitch_fac, in ff_sipr_decode_frame_16k()
|
D | amrnbdec.c | 120 …float fixed_vector[AMR_SUBFRAME_SIZE]; ///< algebraic codebook (fixed) vector (must be kept zero… member 720 const float *fixed_vector, in anti_sparseness() argument 764 fixed_vector = out; in anti_sparseness() 771 return fixed_vector; in anti_sparseness() 791 float fixed_gain, const float *fixed_vector, in synthesis() argument 803 p->acelpv_ctx.weighted_vector_sumf(excitation, p->pitch_vector, fixed_vector, in synthesis() 1010 ff_set_fixed_vector(p->fixed_vector, &fixed_sparse, 1.0, in amrnb_decode_frame() 1015 p->celpm_ctx.dot_productf(p->fixed_vector, in amrnb_decode_frame() 1016 p->fixed_vector, in amrnb_decode_frame() 1043 synth_fixed_vector = anti_sparseness(p, &fixed_sparse, p->fixed_vector, in amrnb_decode_frame() [all …]
|
/third_party/boost/boost/numeric/ublas/ |
D | vector.hpp | 840 class fixed_vector: class 841 public vector_container<fixed_vector<T, N, A> > { 843 typedef fixed_vector<T, N, A> self_type; 866 fixed_vector (): in fixed_vector() function in boost::numeric::ublas::fixed_vector 874 fixed_vector (const array_type &data): in fixed_vector() function in boost::numeric::ublas::fixed_vector 881 fixed_vector (const value_type &init): in fixed_vector() function in boost::numeric::ublas::fixed_vector 890 fixed_vector (const fixed_vector &v): in fixed_vector() function in boost::numeric::ublas::fixed_vector 900 fixed_vector (const vector_expression<AE> &ae): in fixed_vector() function in boost::numeric::ublas::fixed_vector 911 fixed_vector(value_type v0, Types... vrest) : in fixed_vector() function in boost::numeric::ublas::fixed_vector 1058 fixed_vector &operator = (fixed_vector v) { in operator =() [all …]
|
D | fwd.hpp | 97 class fixed_vector;
|
/third_party/boost/libs/numeric/ublas/test/ |
D | test_fixed_containers.cpp | 41 typedef fixed_vector<T, 1> vec1; in test_vector() 50 typedef fixed_vector<T, 3> vec3; in test_vector() 125 typedef fixed_vector<T, N> vec33; in test_vector()
|
/third_party/boost/boost/math/special_functions/detail/ |
D | bernoulli_details.hpp | 190 struct fixed_vector : private std::allocator<T> struct 195 fixed_vector() : m_used(0) in fixed_vector() function 201 ~fixed_vector() in ~fixed_vector() argument 253 typedef fixed_vector<T> container_type; 644 fixed_vector<T> bn, tn;
|