Searched defs:fixed_vector (Results 1 – 6 of 6) sorted by relevance
/third_party/boost/boost/math/special_functions/detail/ |
D | bernoulli_details.hpp | 190 struct fixed_vector : private std::allocator<T> struct 192 typedef unsigned size_type; 193 typedef T* iterator; 194 typedef const T* const_iterator; 195 fixed_vector() : m_used(0) in fixed_vector() function 201 ~fixed_vector() in ~fixed_vector() 216 T& operator[](unsigned n) { BOOST_ASSERT(n < m_used); return m_data[n]; } in operator []() 217 const T& operator[](unsigned n)const { BOOST_ASSERT(n < m_used); return m_data[n]; } in operator []() 218 unsigned size()const { return m_used; } in size() 219 unsigned size() { return m_used; } in size() [all …]
|
/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() 581 static void pitch_sharpening(AMRWBContext *ctx, float *fixed_vector) in pitch_sharpening() 628 float *fixed_vector, float *buf) in anti_sparseness() 742 static void pitch_enhancer(float *fixed_vector, float voice_fac) in pitch_enhancer() 771 float fixed_gain, const float *fixed_vector, in synthesis()
|
D | sipr.c | 180 float *fixed_vector) in pitch_sharpening() 391 float fixed_vector[SUBFR_SIZE]; in decode_frame() local
|
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() 791 float fixed_gain, const float *fixed_vector, in synthesis()
|
D | sipr16k.c | 184 float fixed_vector[L_SUBFR_16k]; in ff_sipr_decode_frame_16k() local
|
/third_party/boost/boost/numeric/ublas/ |
D | vector.hpp | 840 class fixed_vector: class 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
|