HomeSort by relevance Sort by last modified time
    Searched defs:coeff (Results 26 - 50 of 145) sorted by null

12 3 4 5 6

  /external/eigen/Eigen/src/Core/
Visitor.h 29 visitor(mat.coeff(row, col), row, col);
39 return visitor.init(mat.coeff(0, 0), 0, 0);
49 visitor.init(mat.coeff(0,0), 0, 0);
51 visitor(mat.coeff(i, 0), i, 0);
54 visitor(mat.coeff(i, j), i, j);
78 EIGEN_DEVICE_FUNC CoeffReturnType coeff(Index row, Index col) const function in class:Eigen::internal::visitor_evaluator
79 { return m_evaluator.coeff(row, col); }
Block.h 235 EIGEN_STRONG_INLINE const CoeffReturnType coeff(Index rowId, Index colId) const function in class:Eigen::internal::BlockImpl_dense
237 return m_xpr.coeff(rowId + m_startRow.value(), colId + m_startCol.value());
256 inline const CoeffReturnType coeff(Index index) const function in class:Eigen::internal::BlockImpl_dense
258 return m_xpr.coeff(m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
DenseCoeffsBase.h 42 // - This is the return type of the coeff() method.
44 // to coeffs, which means exactly that we can have coeff() return a const reference (as opposed to returning a value).
93 * \sa operator()(Index,Index) const, coeffRef(Index,Index), coeff(Index) const
96 EIGEN_STRONG_INLINE CoeffReturnType coeff(Index row, Index col) const function in class:Eigen::DenseCoeffsBase
100 return internal::evaluator<Derived>(derived()).coeff(row,col);
106 return coeff(rowIndexByOuterInner(outer, inner),
119 return coeff(row, col);
134 * \sa operator[](Index) const, coeffRef(Index), coeff(Index,Index) const
139 coeff(Index index) const function in class:Eigen::DenseCoeffsBase
144 return internal::evaluator<Derived>(derived()).coeff(index)
    [all...]
Product.h 97 && "if you wanted a coeff-wise or a dot product use the respective explicit functions");
132 return internal::evaluator<ProductXpr>(derived()).coeff(0,0);
165 EIGEN_DEVICE_FUNC Scalar coeff(Index row, Index col) const function in class:Eigen::ProductImpl
170 return internal::evaluator<Derived>(derived()).coeff(row,col);
173 EIGEN_DEVICE_FUNC Scalar coeff(Index i) const function in class:Eigen::ProductImpl
178 return internal::evaluator<Derived>(derived()).coeff(i);
SelfAdjointView.h 85 /** \sa MatrixBase::coeff()
89 inline Scalar coeff(Index row, Index col) const function in class:Eigen::SelfAdjointView
92 return m_matrix.coeff(row, col);
302 Scalar tmp = m_src.coeff(row,col);
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorFixedSize.h 70 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar& coeff(Index firstIndex, IndexTypes... otherIndices) const function in class:Eigen::TensorFixedSize
74 return coeff(array<Index, NumIndices>{{firstIndex, otherIndices...}});
79 EIGEN_STRONG_INLINE const Scalar& coeff(const array<Index, NumIndices>& indices) const function in class:Eigen::TensorFixedSize
86 EIGEN_STRONG_INLINE const Scalar& coeff(Index index) const function in class:Eigen::TensorFixedSize
93 EIGEN_STRONG_INLINE const Scalar& coeff() const function in class:Eigen::TensorFixedSize
191 return coeff(indices);
198 return coeff(index);
205 return coeff();
213 return coeff(index);
Tensor.h 115 EIGEN_DEVICE_FUNC inline const Scalar& coeff(Index firstIndex, Index secondIndex, IndexTypes... otherIndices) const function in class:Eigen::Tensor
119 return coeff(array<Index, NumIndices>{{firstIndex, secondIndex, otherIndices...}});
124 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar& coeff(const array<Index, NumIndices>& indices) const function in class:Eigen::Tensor
135 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar& coeff(CustomIndices& indices) const function in class:Eigen::Tensor
137 return coeff(internal::customIndices2Array<Index,NumIndices>(indices));
141 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar& coeff() const function in class:Eigen::Tensor
147 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE const Scalar& coeff(Index index) const function in class:Eigen::Tensor
205 return coeff(array<Index, 2>(i0, i1));
210 return coeff(array<Index, 3>(i0, i1, i2));
215 return coeff(array<Index, 4>(i0, i1, i2, i3))
    [all...]
TensorArgMax.h 110 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const function in struct:Eigen::TensorEvaluator
112 return CoeffReturnType(index, m_impl.coeff(index));
250 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const { function in struct:Eigen::TensorEvaluator
251 const TupleType v = m_impl.coeff(index);
TensorAssign.h 136 m_leftImpl.coeffRef(i) = m_rightImpl.coeff(i);
143 EIGEN_DEVICE_FUNC CoeffReturnType coeff(Index index) const function in struct:Eigen::TensorEvaluator
145 return m_leftImpl.coeff(index);
TensorBroadcasting.h 157 EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE CoeffReturnType coeff(Index index) const function in struct:Eigen::TensorEvaluator
160 return m_impl.coeff(0);
198 return m_impl.coeff(inputIndex);
228 return m_impl.coeff(inputIndex);
235 return internal::pset1<PacketReturnType>(m_impl.coeff(0));
290 values[0] = m_impl.coeff(inputIndex);
342 values[0] = m_impl.coeff(inputIndex);
TensorContractionMapper.h 37 EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE typename Tensor::Scalar coeff(typename Tensor::Index index) const { return m_tensor.coeff(index); } function in struct:Eigen::internal::CoeffLoader
61 EIGEN_DEVICE_FUNC EIGEN_ALWAYS_INLINE typename Tensor::Scalar coeff(typename Tensor::Index index) const { return loadConstant(m_data+index); } function in struct:Eigen::internal::CoeffLoader
110 return m_tensor.coeff(computeIndex(row, col));
270 data[0] = this->m_tensor.coeff(first);
273 data[k] = this->m_tensor.coeff(internal_pair.first);
274 data[k + 1] = this->m_tensor.coeff(internal_pair.second);
276 data[packet_size - 1] = this->m_tensor.coeff(last);
322 data[0] = this->m_tensor.coeff(this->computeIndex(i, j));
TensorConversion.h 132 values[i] = converter(m_impl.coeff(index+i));
218 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const function in struct:Eigen::TensorEvaluator
221 return converter(m_impl.coeff(index));
256 values[i] = converter(impl.coeff(index+i));
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrix.h 146 inline Scalar coeff(Index row, Index col) const { function in class:Eigen::SkylineMatrix
209 eigen_assert(outer >= minOuterIndex && "you try to acces a coeff that do not exist in the storage");
215 eigen_assert(inner >= minInnerIndex && "you try to acces a coeff that do not exist in the storage");
222 eigen_assert(outer <= maxOuterIndex && "you try to acces a coeff that do not exist in the storage");
228 eigen_assert(inner <= maxInnerIndex && "you try to acces a coeff that do not exist in the storage");
303 eigen_assert(inner >= minInnerIndex && "you try to acces a coeff that do not exist in the storage");
307 eigen_assert(inner <= maxInnerIndex && "you try to acces a coeff that do not exist in the storage");
339 eigen_assert(outer >= minOuterIndex && "you try to acces a coeff that do not exist in the storage");
343 eigen_assert(outer <= maxOuterIndex && "you try to acces a coeff that do not exist in the storage");
717 s << m.coeff(rowIdx, colIdx) << "\t"
    [all...]
  /external/libvpx/libvpx/vp8/encoder/mips/msa/
dct_msa.c 26 #define SET_DOTP_VALUES(coeff, val0, val1, val2, const1, const2) \
30 SPLATI_H3_SH(coeff, val0, val1, val2, tmp0_m, const1, const2); \
73 v8i16 coeff = { 2217, 5352, -5352, 14500, 7500, 12000, 25000, 26000 }; local
84 SET_DOTP_VALUES(coeff, 0, 1, 2, const0, const1);
86 in1 = __msa_splati_h(coeff, 3);
88 coeff = __msa_ilvl_h(zero, coeff);
89 out1 = __msa_splati_w((v4i32)coeff, 0);
104 SPLATI_W2_SW(coeff, 2, out3, out1);
106 out1 = __msa_splati_w((v4i32)coeff, 1)
119 v8i16 coeff = { 2217, 5352, -5352, 14500, 7500, 12000, 25000, 26000 }; local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
avg_intrin_avx2.c 95 int16_t *coeff) {
109 _mm256_storeu_si256((__m256i *)coeff,
111 coeff += 16;
112 _mm256_storeu_si256((__m256i *)coeff,
114 coeff += 16;
115 _mm256_storeu_si256((__m256i *)coeff,
117 coeff += 16;
118 _mm256_storeu_si256((__m256i *)coeff,
120 coeff += 16;
121 _mm256_storeu_si256((__m256i *)coeff,
165 store_tran_low(_mm256_add_epi16(b0, b2), coeff); local
166 store_tran_low(_mm256_add_epi16(b1, b3), coeff + 64); local
167 store_tran_low(_mm256_sub_epi16(b0, b2), coeff + 128); local
168 store_tran_low(_mm256_sub_epi16(b1, b3), coeff + 192); local
    [all...]
  /external/skia/src/pathops/
SkPathOpsConic.cpp 16 double coeff[3]) {
20 coeff[0] = w * P20 - P20;
21 coeff[1] = P20 - 2 * wP10;
22 coeff[2] = wP10;
26 double coeff[3]; local
27 conic_deriv_coeff(coord, w, coeff);
28 return t * (t * coeff[0] + coeff[1]) + coeff[2];
32 double coeff[3] local
    [all...]
  /external/skqp/src/pathops/
SkPathOpsConic.cpp 16 double coeff[3]) {
20 coeff[0] = w * P20 - P20;
21 coeff[1] = P20 - 2 * wP10;
22 coeff[2] = wP10;
26 double coeff[3]; local
27 conic_deriv_coeff(coord, w, coeff);
28 return t * (t * coeff[0] + coeff[1]) + coeff[2];
32 double coeff[3] local
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
mirror_pad_op.h 161 coeff(Index index) const { function in struct:Eigen::TensorEvaluator
164 return impl_.coeff(input_index);
168 coeff(array<Index, Dims> coords) const {
224 // If the road is not contiguous, then fall back to coeff().
227 values[0] = impl_.coeff(input_index);
229 values[i] = coeff(index + i);
266 return eval.coeff(index);
275 return eval.coeff(coord);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
q_gain2.c 43 /* MA prediction coeff ={0.5, 0.4, 0.3, 0.2} in Q13 */
81 Word16 coeff[5], coeff_lo[5], exp_coeff[5]; local
130 * coeff[0] = y1 y1 *
131 * coeff[1] = -2 xn y1 *
132 * coeff[2] = y2 y2 *
133 * coeff[3] = -2 xn y2 *
134 * coeff[4] = 2 y1 y2 *
140 coeff[0] = g_coeff[0];
142 coeff[1] = negate(g_coeff[2]); /* coeff[1] = -2 xn y1 *
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
fastquant.cpp 122 Input: coeff=> DCT coefficient
154 Int tmp, coeff, q_value; local
164 Int ac_clip; /* quantized coeff bound */
192 coeff = rcoeff[i];
193 if (coeff == 0x7fff) /* all zero column */
201 if (coeff >= -QPx2plus && coeff < QPx2plus) /* quantize to zero */
206 coeff = rcoeff[i];
207 if (coeff > -QPx2plus && coeff < QPx2plus) /* quantize to zero *
274 Int tmp, coeff, q_value; local
444 Int coeff, scale_q; local
498 Int tmp, coeff; local
549 Int tmp, coeff, q_value = 0; local
678 Int tmp, coeff, q_value = 0; local
855 Int q_value, coeff, stepsize; local
923 Int tmp, coeff, q_value; local
    [all...]
fastquant_inline.h 30 __inline int32 aan_scale(int32 q_value, int32 coeff, int32 round, int32 QPdiv2)
32 q_value = coeff * q_value + round;
33 coeff = q_value >> 16;
34 if (coeff < 0) coeff += QPdiv2;
35 else coeff -= QPdiv2;
37 return coeff;
41 __inline int32 coeff_quant(int32 coeff, int32 q_scale, int32 shift)
45 q_value = coeff * q_scale; //q_value = -((-(coeff + QPdiv2)*q_scale)>>LSL)
54 int32 coeff = q_value + ac_clip; local
64 int32 coeff; local
126 int32 coeff; local
178 smlabb q_value, coeff, q_value, round local
179 movs coeff, q_value, asr #16 local
180 addle coeff, coeff, QPdiv2 local
181 subgt coeff, coeff, QPdiv2 local
194 mov coeff, q_value, asr shift \/*smull tmp, coeff, q_scale, coeff*\/ local
195 add q_value, coeff, coeff, lsr #31 local
204 int32 coeff; local
209 smulbb coeff, q_value, QPx2 local
210 sublt coeff, coeff, Addition local
211 addge coeff, coeff, Addition local
212 add q_value, coeff, tmp local
215 eorhi coeff, tmp, coeff, asr #31 local
225 smlabb q_value, coeff, q_value, round local
246 int32 coeff; local
249 movs coeff, q_value, lsl #1 local
251 addgt coeff, coeff, #1 local
252 sublt coeff, coeff, #1 local
253 smulbb q_value, coeff, stepsize local
256 add coeff, q_value, tmp local
257 subs coeff, coeff, #0xf00 local
258 subcss coeff, coeff, #0xfe local
273 mla q_value, coeff, q_value, round local
274 movs coeff, q_value, asr #16 local
275 addle coeff, coeff, QPdiv2 local
276 subgt coeff, coeff, QPdiv2 local
289 mov coeff, q_value, asr shift \/*smull tmp, coeff, q_scale, coeff*\/ local
290 add q_value, coeff, coeff, lsr #31 local
300 int32 coeff; local
305 mul coeff, q_value, QPx2 local
306 sublt coeff, coeff, Addition local
307 addge coeff, coeff, Addition local
308 add q_value, coeff, tmp local
311 eorhi coeff, tmp, coeff, asr #31 local
321 mla q_value, coeff, q_value, round local
343 int32 coeff; local
346 movs coeff, q_value, lsl #1 local
348 addgt coeff, coeff, #1 local
349 sublt coeff, coeff, #1 local
350 mul q_value, coeff, stepsize local
353 add coeff, q_value, tmp local
354 subs coeff, coeff, #0xf00 local
355 subcss coeff, coeff, #0xfe local
367 int32 coeff; local
371 add coeff, q_value, ac_clip local
372 subs coeff, coeff, ac_clip, lsl #1 local
384 cmp coeff, #0 local
385 addle coeff, coeff, QP, asr #1 local
386 subgt coeff, coeff, QP, asr #1 local
395 int32 coeff; local
399 add coeff, q_value, tmp local
400 subs coeff, coeff, #0xf00 local
401 subcss coeff, coeff, #0xfe local
410 int32 coeff; local
417 add coeff, q_value, tmp local
418 subs coeff, coeff, #0xf00 local
419 subcss coeff, coeff, #0xfe local
471 register int32 coeff; local
555 register int32 coeff; local
    [all...]
  /external/aac/libSBRenc/src/
resampler.cpp 355 const FIXP_SGL *coeff = downFilter->coeffa; local
382 state0 = input + fMult(state1, coeff[B1]) + fMult(state2, coeff[B2]);
383 y = state0 - fMult(state1b, coeff[A1]) - fMult(state2b, coeff[A2]);
398 coeff += BIQUAD_COEFSTEP;
  /external/adhd/cras/src/tests/
fmt_conv_unittest.cc 1226 float coeff[4] = {0.5, 0.5, 0.26, 0.73}; local
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseCompressedBase.h 299 const Scalar& coeff(Index row, Index col) const function in struct:Eigen::internal::evaluator
SparseMap.h 104 /** \copydoc SparseMatrix::coeff */
105 inline Scalar coeff(Index row, Index col) const function in class:Eigen::SparseMapBase

Completed in 1224 milliseconds

12 3 4 5 6