Searched defs:coeff (Results 1 - 25 of 93) sorted by relevance

1234

/external/libvpx/libvpx/vp9/encoder/mips/msa/
H A Dvp9_error_msa.c20 v8i16 coeff, dq_coeff, coeff_r_h, coeff_l_h; \
25 coeff = LD_SH(coeff_ptr); \
27 UNPCK_SH_SW(coeff, coeff_r_w, coeff_l_w); \
28 ILVRL_H2_SH(coeff, dq_coeff, coeff_r_h, coeff_l_h); \
34 coeff = LD_SH(coeff_ptr + 8); \
36 UNPCK_SH_SW(coeff, coeff_r_w, coeff_l_w); \
37 ILVRL_H2_SH(coeff, dq_coeff, coeff_r_h, coeff_l_h); \
46 coeff = LD_SH(coeff_ptr); \
48 UNPCK_SH_SW(coeff, coeff_r_w, coeff_l_w); \
49 ILVRL_H2_SH(coeff, dq_coef
92 const int16_t *coeff = (const int16_t *)coeff_ptr; local
[all...]
/external/skia/src/core/
H A DSkValidationUtils.h14 /** Returns true if coeff's value is in the SkXfermode::Coeff enum.
16 static inline bool SkIsValidCoeff(SkXfermode::Coeff coeff) { argument
17 return coeff >= 0 && coeff < SkXfermode::kCoeffCount;
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/direct/
H A DMultiDirectional.java112 * @param coeff linear coefficient
119 final double coeff,
133 xTransformed[j] = xSmallest[j] + coeff * (xSmallest[j] - xOriginal[j]);
118 evaluateNewSimplex(final RealPointValuePair[] original, final double coeff, final Comparator<RealPointValuePair> comparator) argument
/external/boringssl/src/crypto/rsa/
H A Dinternal.h146 /* coeff is such that r×coeff ≡ 1 mod prime. */
147 BIGNUM *coeff; member in struct:RSA_additional_prime_st
/external/libvpx/libvpx/vp9/encoder/arm/neon/
H A Dvp9_error_neon.c16 int64_t vp9_block_error_fp_neon(const int16_t *coeff, const int16_t *dqcoeff, argument
24 const int16x8_t c = vld1q_s16(coeff);
35 coeff += 8;
/external/opencv3/modules/ml/test/
H A Dtest_mltests.cpp106 const int coeff = 4; local
108 testCaseIdx, curErr, mean, abs( curErr - mean), coeff, coeff*sigma );
109 if ( abs( curErr - mean) > coeff*sigma )
111 ts->printf( cvtest::TS::LOG, "abs(%f - %f) > %f - OUT OF RANGE!\n", curErr, mean, coeff*sigma, coeff );
/external/eigen/Eigen/src/Core/
H A DReturnByValue.h36 /* 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
H A DCwiseUnaryOp.h101 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));
H A DFlagged.h58 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);
H A DForceAlignedAccess.h49 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);
H A DNestByValue.h50 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);
H A DArrayWrapper.h66 inline CoeffReturnType coeff(Index rowId, Index colId) const function in class:Eigen::ArrayWrapper
68 return m_expression.coeff(rowId, colId);
81 inline CoeffReturnType coeff(Index index) const function in class:Eigen::ArrayWrapper
83 return m_expression.coeff(index);
191 inline CoeffReturnType coeff(Index rowId, Index colId) const function in class:Eigen::MatrixWrapper
193 return m_expression.coeff(rowId, colId);
206 inline CoeffReturnType coeff(Index index) const function in class:Eigen::MatrixWrapper
208 return m_expression.coeff(index);
H A DCwiseUnaryView.h104 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));
H A DDiagonal.h112 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());
H A DDiagonalProduct.h61 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)));
/external/libvpx/libvpx/test/
H A Didct8x8_test.cc75 tran_low_t coeff[64]; local
89 coeff[j] = round(output_r[j]);
90 vpx_idct8x8_64_add_c(coeff, dst, 8);
/external/libvpx/libvpx/vp9/encoder/x86/
H A Dvp9_error_intrin_avx2.c16 int64_t vp9_block_error_avx2(const int16_t *coeff, argument
33 // load 32 bytes from coeff and dqcoeff
34 coeff_reg = _mm256_loadu_si256((const __m256i *)(coeff + i));
36 // dqcoeff - coeff
38 // madd (dqcoeff - coeff)
40 // madd coeff
42 // expand each double word of madd (dqcoeff - coeff) to quad word
45 // expand each double word of madd (coeff) to quad word
48 // add each quad word of madd (dqcoeff - coeff) and madd (coeff)
[all...]
H A Dvp9_highbd_block_error_intrin_sse2.c16 int64_t vp9_highbd_block_error_sse2(tran_low_t *coeff, tran_low_t *dqcoeff, argument
28 __m128i mm_coeff = _mm_load_si128((__m128i*) (coeff + i));
29 __m128i mm_coeff2 = _mm_load_si128((__m128i*) (coeff + i + 4));
59 const int64_t diff = coeff[i + j] - dqcoeff[i + j];
61 sqcoeff += (int64_t)coeff[i + j] * (int64_t)coeff[i + j];
/external/eigen/Eigen/src/Eigen2Support/
H A DMinor.h79 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/
H A DsparseLM.cpp41 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 *
93 Scalar coeff; local
[all...]
/external/libvorbis/lib/
H A Dlpc.c55 /* Autocorrelation LPC coeff generation algorithm invented by
133 void vorbis_lpc_predict(float *coeff,float *prime,int m, argument
136 /* in: coeff[0...m-1] LPC coefficients
156 y-=work[o++]*coeff[--p];
/external/opencv3/modules/cudawarping/test/
H A Dtest_resize.cpp124 double coeff; local
134 coeff = GET_PARAM(3);
146 cv::cuda::GpuMat dst = createMat(cv::Size(cv::saturate_cast<int>(src.cols * coeff), cv::saturate_cast<int>(src.rows * coeff)), type, useRoi);
147 cv::cuda::resize(loadMat(src, useRoi), dst, cv::Size(), coeff, coeff, interpolation); local
150 resizeGold(src, dst_gold, coeff, coeff, interpolation);
169 double coeff; local
179 coeff
193 cv::cuda::resize(loadMat(src, useRoi), dst, cv::Size(), coeff, coeff, interpolation); local
[all...]
/external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
H A Dwarping.hpp116 const float coeff = 1.0f / (warpMat[6] * x + warpMat[7] * y + warpMat[8]); local
118 const float xcoo = coeff * (warpMat[0] * x + warpMat[1] * y + warpMat[2]);
119 const float ycoo = coeff * (warpMat[3] * x + warpMat[4] * y + warpMat[5]);
/external/skia/src/gpu/
H A DGrXferProcessor.cpp142 static const char* coeff_string(GrBlendCoeff coeff) { argument
143 switch (coeff) {
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
H A DBicubicSplineInterpolatingFunction.java414 * @param coeff Spline coefficients.
417 private double apply(double[] pX, double[] pY, double[][] coeff) { argument
421 result += coeff[i][j] * pX[i] * pY[j];

Completed in 609 milliseconds

1234