HomeSort by relevance Sort by last modified time
    Searched defs:coeffs (Results 26 - 46 of 46) sorted by null

12

  /external/eigen/Eigen/src/Geometry/
Quaternion.h 60 inline Scalar x() const { return this->derived().coeffs().coeff(0); }
62 inline Scalar y() const { return this->derived().coeffs().coeff(1); }
64 inline Scalar z() const { return this->derived().coeffs().coeff(2); }
66 inline Scalar w() const { return this->derived().coeffs().coeff(3); }
69 inline Scalar& x() { return this->derived().coeffs().coeffRef(0); }
71 inline Scalar& y() { return this->derived().coeffs().coeffRef(1); }
73 inline Scalar& z() { return this->derived().coeffs().coeffRef(2); }
75 inline Scalar& w() { return this->derived().coeffs().coeffRef(3); }
78 inline const VectorBlock<const Coefficients,3> vec() const { return coeffs().template head<3>(); }
81 inline VectorBlock<Coefficients,3> vec() { return coeffs().template head<3>();
84 inline const typename internal::traits<Derived>::Coefficients& coeffs() const { return derived().coeffs(); } function in class:Eigen::QuaternionBase
87 inline typename internal::traits<Derived>::Coefficients& coeffs() { return derived().coeffs(); } function in class:Eigen::QuaternionBase
276 inline Coefficients& coeffs() { return m_coeffs;} function in class:Eigen::Quaternion
277 inline const Coefficients& coeffs() const { return m_coeffs;} function in class:Eigen::Quaternion
355 inline const Coefficients& coeffs() const { return m_coeffs;} function in class:Eigen::Map
392 inline Coefficients& coeffs() { return m_coeffs; } function in class:Eigen::Map
393 inline const Coefficients& coeffs() const { return m_coeffs; } function in class:Eigen::Map
    [all...]
  /external/opencv3/3rdparty/libwebp/dec/
frame.c 588 const int16_t* coeffs = dec->coeffs_; local
623 VP8Transform(coeffs + n * 16, dst, 0);
625 VP8TransformDC(coeffs + n * 16, dst);
635 VP8Transform(coeffs + n * 16, dst, 0);
637 VP8TransformDC(coeffs + n * 16, dst);
  /external/webp/src/dec/
frame.c 119 const int16_t* const coeffs = block->coeffs_; local
147 DoTransform(bits, coeffs + n * 16, dst);
154 DoTransform(bits, coeffs + n * 16, y_dst + kScan[n]);
164 DoUVTransform(bits_uv >> 0, coeffs + 16 * 16, u_dst);
165 DoUVTransform(bits_uv >> 8, coeffs + 20 * 16, v_dst);
  /hardware/intel/img/psb_video/src/
psb_overlay.c 334 double rawCoeff[MAX_TAPS * 32], coeffs[N_PHASES][MAX_TAPS]; local
367 coeffs[i][j] = rawCoeff[pos] / sum;
374 SetCoeffRegs(&coeffs[i][j], mantSize + 2, pCoeff, pos);
376 SetCoeffRegs(&coeffs[i][j], mantSize, pCoeff, pos);
388 sum += coeffs[i][j];
393 coeffs[i][tap2Fix] += diff;
396 SetCoeffRegs(&coeffs[i][tap2Fix], mantSize + 2, pCoeff, pos);
398 SetCoeffRegs(&coeffs[i][tap2Fix], mantSize, pCoeff, pos);
402 sum += coeffs[i][j];
    [all...]
psb_texture.c 553 /* check whether we need to update coeffs */
564 /* prepare coeffs if needed */
568 sBltVP.psYUVCoeffs = (PPVR2D_YUVCOEFFS) & texture_priv->coeffs;
723 psb_transform_coeffs coeffs, transfer_matrix; local
724 memset(&coeffs, 0, sizeof(psb_transform_coeffs));
745 psb_transform_sathuecoeffs(&coeffs,
754 RGB_offset, coeffs.rY, coeffs.rCb, coeffs.rCr,
760 &pPriv->coeffs.rY, &pPriv->coeffs.rU
    [all...]
  /external/opencv3/3rdparty/libwebp/enc/
frame.c 34 const int16_t* coeffs; member in struct:__anon21054
127 while ((v = res->coeffs[n++]) == 0) {
269 static void SetResidualCoeffs(const int16_t* const coeffs,
274 if (coeffs[n]) {
279 res->coeffs = coeffs;
297 int v = res->coeffs[n];
317 const int v = abs(res->coeffs[n]);
405 const int c = res->coeffs[n++];
583 res.first, res.last, res.coeffs, tokens)
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/ips/common/
OverlayPlaneBase.cpp 916 double rawCoeff[MAX_TAPS * 32], coeffs[N_PHASES][MAX_TAPS]; local
949 coeffs[i][j] = rawCoeff[pos] / sum;
956 setCoeffRegs(&coeffs[i][j], mantSize + 2, pCoeff, pos);
958 setCoeffRegs(&coeffs[i][j], mantSize, pCoeff, pos);
970 sum += coeffs[i][j];
975 coeffs[i][tap2Fix] += diff;
978 setCoeffRegs(&coeffs[i][tap2Fix], mantSize + 2, pCoeff, pos);
980 setCoeffRegs(&coeffs[i][tap2Fix], mantSize, pCoeff, pos);
984 sum += coeffs[i][j];
    [all...]
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/common/
OverlayPlaneBase.cpp 896 double rawCoeff[MAX_TAPS * 32], coeffs[N_PHASES][MAX_TAPS]; local
929 coeffs[i][j] = rawCoeff[pos] / sum;
936 setCoeffRegs(&coeffs[i][j], mantSize + 2, pCoeff, pos);
938 setCoeffRegs(&coeffs[i][j], mantSize, pCoeff, pos);
950 sum += coeffs[i][j];
955 coeffs[i][tap2Fix] += diff;
958 setCoeffRegs(&coeffs[i][tap2Fix], mantSize + 2, pCoeff, pos);
960 setCoeffRegs(&coeffs[i][tap2Fix], mantSize, pCoeff, pos);
964 sum += coeffs[i][j];
    [all...]
  /external/opencv/cv/src/
cvfundam.cpp 691 CvMat coeffs = cvMat( 1, 4, CV_64F, c ); local
762 n = cvSolveCubic( &coeffs, &roots );
    [all...]
  /external/opencv/cvaux/src/
cvtrifocal.cpp 336 /* we have computed coeffs for reduced project matrix */
1570 CvMat coeffs; local
    [all...]
  /external/opencv3/modules/imgproc/src/
morph.cpp 793 std::vector<uchar> coeffs; // we do not really the values of non-zero local
795 preprocess2DKernel( _kernel, coords, coeffs );
    [all...]
filter.cpp 434 const double* coeffs = kernel.ptr<double>(); local
444 double a = coeffs[i], b = coeffs[sz - i - 1];
2050 std::vector<uchar> coeffs; member in struct:cv::FilterVec_8u
2133 std::vector<uchar> coeffs; member in struct:cv::FilterVec_8u16s
2205 std::vector<uchar> coeffs; member in struct:cv::FilterVec_32f
3967 std::vector<uchar> coeffs; member in struct:cv::Filter2D
    [all...]
color.cpp 430 coeffs[0] = 0.114f;
431 coeffs[1] = 0.587f;
432 coeffs[2] = 0.299f;
436 return func ? func(src, srcStep, dst, dstStep, ippiSize(cols, rows), coeffs) >= 0 : false;
440 Ipp32f coeffs[3]; member in struct:cv::IPPColor2GrayFunctor
1272 float coeffs[3]; member in struct:cv::RGB2Gray
1393 int srccn, coeffs[3]; member in struct:cv::RGB2Gray
1460 float coeffs[3]; member in struct:cv::RGB2Gray
1574 int srccn, coeffs[3]; member in struct:cv::RGB2Gray
1672 float coeffs[3]; member in struct:cv::RGB2Gray
1698 int coeffs[3]; member in struct:cv::RGB2Gray
1731 float coeffs[5]; member in struct:cv::RGB2YCrCb_f
1795 float coeffs[5]; member in struct:cv::RGB2YCrCb_f
1891 float coeffs[5]; member in struct:cv::RGB2YCrCb_f
1926 int coeffs[5]; member in struct:cv::RGB2YCrCb_i
2020 int srccn, blueIdx, coeffs[5]; member in struct:cv::RGB2YCrCb_i
2142 int srccn, blueIdx, coeffs[5]; member in struct:cv::RGB2YCrCb_i
2291 int srccn, blueIdx, coeffs[5]; member in struct:cv::RGB2YCrCb_i
2420 int srccn, blueIdx, coeffs[5]; member in struct:cv::RGB2YCrCb_i
2461 float coeffs[4]; member in struct:cv::YCrCb2RGB_f
2533 float coeffs[4]; member in struct:cv::YCrCb2RGB_f
2643 float coeffs[4]; member in struct:cv::YCrCb2RGB_f
2686 int coeffs[4]; member in struct:cv::YCrCb2RGB_i
2789 int coeffs[4]; member in struct:cv::YCrCb2RGB_i
2929 int coeffs[4]; member in struct:cv::YCrCb2RGB_i
3107 int coeffs[4]; member in struct:cv::YCrCb2RGB_i
3163 float coeffs[9]; member in struct:cv::RGB2XYZ_f
3233 float coeffs[9]; member in struct:cv::RGB2XYZ_f
3343 float coeffs[9]; member in struct:cv::RGB2XYZ_f
3390 int coeffs[9]; member in struct:cv::RGB2XYZ_i
3496 int srccn, coeffs[9]; member in struct:cv::RGB2XYZ_i
3628 int srccn, coeffs[9]; member in struct:cv::RGB2XYZ_i
3670 float coeffs[9]; member in struct:cv::XYZ2RGB_f
3788 float coeffs[9]; member in struct:cv::XYZ2RGB_f
3841 int coeffs[9]; member in struct:cv::XYZ2RGB_i
3957 int coeffs[9]; member in struct:cv::XYZ2RGB_i
4108 int coeffs[9]; member in struct:cv::XYZ2RGB_i
6928 float coeffs[] = local
6944 int coeffs[] = local
6979 float coeffs[] = local
6995 int coeffs[] = local
7153 int coeffs[9]; local
7192 float coeffs[9]; local
7264 float coeffs[9]; local
    [all...]
  /external/opencv3/modules/java/src/
core.cpp 3487 Mat& coeffs = *((Mat*)coeffs_nativeObj); local
3513 Mat& coeffs = *((Mat*)coeffs_nativeObj); local
3535 Mat& coeffs = *((Mat*)coeffs_nativeObj); local
    [all...]
  /frameworks/av/media/libstagefright/matroska/
MatroskaExtractor.cpp 1090 int32_t coeffs = 2; // ISO unspecified local
1101 coeffs = color->matrix_coefficients;
    [all...]
  /external/opencv/cvaux/include/
cvaux.h 91 float* coeffs );
95 void* userData, float* coeffs, IplImage* avg,
530 double coeffs[2][3][3];/* coefficients for transformation */ member in struct:CvStereoCamera
553 CVAPI(int) icvConvertWarpCoordinates(double coeffs[3][3],
566 CvStereoLineCoeff* coeffs,
599 CVAPI(void) cvComputePerspectiveMap( const double coeffs[3][3], CvArr* rectMapX, CvArr* rectMapY );
611 CvStereoLineCoeff* coeffs,
626 CvStereoLineCoeff* coeffs);
    [all...]
  /external/opencv3/modules/core/misc/java/test/
CoreTest.java 1708 Mat coeffs = new Mat(1, 4, CvType.CV_32F) { local
1773 Mat coeffs = new Mat(4, 1, CvType.CV_32F) { local
1791 Mat coeffs = new Mat(4, 1, CvType.CV_32F) { local
    [all...]
  /frameworks/av/media/libstagefright/
MPEG4Extractor.cpp 2795 int32_t coeffs = U16_AT(&buffer[8]); local
    [all...]
MPEG4Writer.cpp 2972 int32_t primaries, transfer, coeffs; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.sat4j.pb_2.2.0.v20100429.jar 
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 1624 milliseconds

12