HomeSort by relevance Sort by last modified time
    Searched defs:coeff (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/arm/neon/
shortfdct_neon.asm 23 coeff label
36 adr r12, coeff
117 adr r12, coeff
  /external/libvpx/libvpx/vp8/encoder/arm/neon/
shortfdct_neon.asm 23 coeff label
36 adr r12, coeff
117 adr r12, coeff
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/arm/neon/
shortfdct_neon.asm 23 coeff label
36 adr r12, coeff
117 adr r12, coeff
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
isf_extrapolation.cpp 122 int16 coeff, mean, tmp, tmp2, tmp3; local
231 coeff = div_16by16(tmp, tmp2); /* Coefficient for stretching the ISF vector */
236 tmp = mult_int16(sub_int16(HfIsf[i], HfIsf[i - 1]), coeff);
  /external/eigen/Eigen/src/Core/
Flagged.h 58 inline CoeffReturnType coeff(Index row, Index col) const function in class:Eigen::Flagged
60 return m_matrix.coeff(row, col);
63 inline CoeffReturnType coeff(Index index) const function in class:Eigen::Flagged
65 return m_matrix.coeff(index);
ForceAlignedAccess.h 49 inline const CoeffReturnType coeff(Index row, Index col) const function in class:Eigen::ForceAlignedAccess
51 return m_expression.coeff(row, col);
59 inline const CoeffReturnType coeff(Index index) const function in class:Eigen::ForceAlignedAccess
61 return m_expression.coeff(index);
NestByValue.h 50 inline const CoeffReturnType coeff(Index row, Index col) const function in class:Eigen::NestByValue
52 return m_expression.coeff(row, col);
60 inline const CoeffReturnType coeff(Index index) const function in class:Eigen::NestByValue
62 return m_expression.coeff(index);
ReturnByValue.h 36 /* The ReturnByValue object doesn't even have a coeff() method.
71 const Unusable& coeff(Index) const { return *reinterpret_cast<const Unusable*>(this); } function in class:Eigen::ReturnByValue
72 const Unusable& coeff(Index,Index) const { return *reinterpret_cast<const Unusable*>(this); } function in class:Eigen::ReturnByValue
ArrayWrapper.h 61 inline CoeffReturnType coeff(Index rowId, Index colId) const function in class:Eigen::ArrayWrapper
63 return m_expression.coeff(rowId, colId);
76 inline CoeffReturnType coeff(Index index) const function in class:Eigen::ArrayWrapper
78 return m_expression.coeff(index);
181 inline CoeffReturnType coeff(Index rowId, Index colId) const function in class:Eigen::MatrixWrapper
183 return m_expression.coeff(rowId, colId);
196 inline CoeffReturnType coeff(Index index) const function in class:Eigen::MatrixWrapper
198 return m_expression.coeff(index);
CwiseUnaryOp.h 101 EIGEN_STRONG_INLINE const Scalar coeff(Index rowId, Index colId) const function in class:Eigen::CwiseUnaryOpImpl
103 return derived().functor()(derived().nestedExpression().coeff(rowId, colId));
112 EIGEN_STRONG_INLINE const Scalar coeff(Index index) const function in class:Eigen::CwiseUnaryOpImpl
114 return derived().functor()(derived().nestedExpression().coeff(index));
CwiseUnaryView.h 104 inline const Scalar* data() const { return &coeff(0); }
116 EIGEN_STRONG_INLINE CoeffReturnType coeff(Index row, Index col) const function in class:Eigen::CwiseUnaryViewImpl
118 return derived().functor()(derived().nestedExpression().coeff(row, col));
121 EIGEN_STRONG_INLINE CoeffReturnType coeff(Index index) const function in class:Eigen::CwiseUnaryViewImpl
123 return derived().functor()(derived().nestedExpression().coeff(index));
Select.h 75 const Scalar coeff(Index i, Index j) const function in class:Eigen::Select
77 if (m_condition.coeff(i,j))
78 return m_then.coeff(i,j);
80 return m_else.coeff(i,j);
83 const Scalar coeff(Index i) const function in class:Eigen::Select
85 if (m_condition.coeff(i))
86 return m_then.coeff(i);
88 return m_else.coeff(i);
Diagonal.h 112 inline CoeffReturnType coeff(Index row, Index) const function in class:Eigen::Diagonal
114 return m_matrix.coeff(row+rowOffset(), row+colOffset());
128 inline CoeffReturnType coeff(Index idx) const function in class:Eigen::Diagonal
130 return m_matrix.coeff(idx+rowOffset(), idx+colOffset());
DiagonalProduct.h 61 EIGEN_STRONG_INLINE const Scalar coeff(Index row, Index col) const function in class:Eigen::DiagonalProduct
63 return m_diagonal.diagonal().coeff(ProductOrder == OnTheLeft ? row : col) * m_matrix.coeff(row, col);
66 EIGEN_STRONG_INLINE const Scalar coeff(Index idx) const function in class:Eigen::DiagonalProduct
71 return coeff(int(StorageOrder)==ColMajor?idx:0,int(StorageOrder)==ColMajor?0:idx);
100 internal::pset1<PacketScalar>(m_diagonal.diagonal().coeff(id)));
MapBase.h 64 using Base::coeff;
90 inline const Scalar& coeff(Index rowId, Index colId) const function in class:Eigen::MapBase
95 inline const Scalar& coeff(Index index) const function in class:Eigen::MapBase
184 using Base::coeff;
Replicate.h 92 inline Scalar coeff(Index rowId, Index colId) const function in class:Eigen::Replicate
102 return m_matrix.coeff(actual_row, actual_col);
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
idct8x8_test.cc 112 int16_t input[64], coeff[64]; local
126 coeff[j] = round(output_r[j]);
127 vp9_idct8x8_64_add_c(coeff, dst, 8);
  /external/eigen/Eigen/src/Eigen2Support/
Minor.h 79 inline const Scalar coeff(Index row, Index col) const function in class:Eigen::Minor
81 return m_matrix.coeff(row + (row >= m_row), col + (col >= m_col));
  /external/eigen/test/
sparseLM.cpp 41 Scalar coeff; local
46 coeff = (x(j)-i)/v(i);
47 coeff *= coeff;
48 if (coeff < 1. && coeff > 0.)
49 y(j) += u(i)*std::pow((1-coeff), 2);
69 Scalar coeff; local
74 coeff = (m_x(j)-i)/v(i);
75 coeff *= coeff
93 Scalar coeff; local
    [all...]
  /external/libvpx/libvpx/test/
idct8x8_test.cc 112 int16_t input[64], coeff[64]; local
126 coeff[j] = round(output_r[j]);
127 vp9_idct8x8_64_add_c(coeff, dst, 8);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
qgain475.cpp 799 sf0_exp_coeff = energy coeff. (exponent part) (Word16)
800 sf0_frac_coeff = energy coeff. ((fraction part) (Word16)
806 sf1_exp_coeff = energy coeff. (exponent part) (Word16)
807 sf1_frac_coeff = energy coeff. (fraction part) (Word16)
1193 Word16 coeff[10]; local
    [all...]
qua_gain.cpp 125 Word16 frac_coeff -- Word16 Array -- energy coeff. (5), fraction part, Q15
126 Word16 exp_coeff -- Word16 Array -- energy coeff. (5), exponent part, Q0
197 Word16 frac_coeff[], /* i : energy coeff. (5), fraction part, Q15 */
198 Word16 exp_coeff[], /* i : energy coeff. (5), exponent part, Q0 */
224 Word16 coeff[5]; local
317 L_Extract(L_tmp, &coeff[i], &coeff_lo[i], pOverflow);
351 L_tmp = Mpy_32_16(coeff[0], coeff_lo[0], g2_pitch, pOverflow);
352 L_tmp2 = Mpy_32_16(coeff[1], coeff_lo[1], g_pitch, pOverflow);
355 L_tmp2 = Mpy_32_16(coeff[2], coeff_lo[2], g2_code, pOverflow);
358 L_tmp2 = Mpy_32_16(coeff[3], coeff_lo[3], g_code, pOverflow)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
idct8x8_test.cc 112 int16_t input[64], coeff[64]; local
126 coeff[j] = round(output_r[j]);
127 vp9_idct8x8_64_add_c(coeff, dst, 8);
  /external/chromium_org/skia/ext/
convolver_SSE2.cc 49 __m128i coeff, coeff16; local
51 coeff = _mm_loadl_epi64(reinterpret_cast<const __m128i*>(filter_values));
53 coeff16 = _mm_shufflelo_epi16(coeff, _MM_SHUFFLE(1, 1, 0, 0));
76 coeff16 = _mm_shufflelo_epi16(coeff, _MM_SHUFFLE(3, 3, 2, 2));
102 __m128i coeff, coeff16; local
103 coeff = _mm_loadl_epi64(reinterpret_cast<const __m128i*>(filter_values));
105 coeff = _mm_and_si128(coeff, mask[r]);
106 coeff16 = _mm_shufflelo_epi16(coeff, _MM_SHUFFLE(1, 1, 0, 0));
121 coeff16 = _mm_shufflelo_epi16(coeff, _MM_SHUFFLE(3, 3, 2, 2))
175 __m128i coeff, coeff16lo, coeff16hi; local
218 __m128i coeff; local
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrBicubicEffect.cpp 63 const char* coeff = builder->getUniformCStr(fCoefficientsUni); local
100 builder->fsCodeAppendf("\tvec4 s%d = %s(%s, f.x, rowColors[0], rowColors[1], rowColors[2], rowColors[3]);\n", y, cubicBlendName.c_str(), coeff);
103 bicubicColor.printf("%s(%s, f.y, s0, s1, s2, s3)", cubicBlendName.c_str(), coeff);

Completed in 5652 milliseconds

1 2 3 4 5