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

1 2

  /external/webp/src/enc/
cost.h 30 const int16_t* coeffs; member in struct:__anon21227
41 typedef void (*VP8SetResidualCoeffsFunc)(const int16_t* const coeffs,
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Scaling.h 72 explicit inline Scaling(const VectorType& coeffs) : m_coeffs(coeffs) {}
74 const VectorType& coeffs() const { return m_coeffs; } function in class:Eigen::Scaling
75 VectorType& coeffs() { return m_coeffs; } function in class:Eigen::Scaling
79 { return Scaling(coeffs().cwise() * other.coeffs()); }
90 { return coeffs().asDiagonal() * other; }
95 { return other * s.coeffs().asDiagonal(); }
103 { return coeffs().asDiagonal() * other; }
107 { return Scaling(coeffs().cwise().inverse());
    [all...]
Hyperplane.h 155 inline const Coefficients& coeffs() const { return m_coeffs; } function in class:Eigen::Hyperplane
160 inline Coefficients& coeffs() { return m_coeffs; } function in class:Eigen::Hyperplane
171 Scalar det = coeffs().coeff(0) * other.coeffs().coeff(1) - coeffs().coeff(1) * other.coeffs().coeff(0);
176 if(ei_abs(coeffs().coeff(1))>ei_abs(coeffs().coeff(0)))
177 return VectorType(coeffs().coeff(1), -coeffs().coeff(2)/coeffs().coeff(1)-coeffs().coeff(0))
    [all...]
Quaternion.h 93 inline const Coefficients& coeffs() const { return m_coeffs; } function in class:Eigen::Quaternion
96 inline Coefficients& coeffs() { return m_coeffs; } function in class:Eigen::Quaternion
193 { m_coeffs = other.coeffs().template cast<Scalar>(); }
380 return Quaternion(conjugate().coeffs() / n2);
442 return Quaternion<Scalar>(scale0 * coeffs() + scale1 * other.coeffs());
475 q.coeffs().coeffRef(i) = Scalar(0.5) * t;
478 q.coeffs().coeffRef(j) = (mat.coeff(j,i)+mat.coeff(i,j))*t;
479 q.coeffs().coeffRef(k) = (mat.coeff(k,i)+mat.coeff(i,k))*t;
491 q.coeffs() = vec
    [all...]
  /cts/tests/tests/rscpp/src/android/cts/rscpp/
RSConvolveTest.java 34 native boolean convolveTest(String path, int X, int Y, byte[] input, byte[] output, float[] coeffs, boolean is3x3);
37 float[] coeffs = new float[9]; local
38 coeffs[0] = .5f;
39 coeffs[1] = .35f;
40 coeffs[2] = .1f;
41 coeffs[3] = 1.f;
42 coeffs[4] = 1.f;
43 coeffs[5] = 1.f;
44 coeffs[6] = .1f;
45 coeffs[7] = .35f
66 convolveTest(this.getContext().getCacheDir().toString(), X, Y, byteAlloc, nativeByteAlloc, coeffs, true); local
76 float[] coeffs = new float[25]; local
123 convolveTest(this.getContext().getCacheDir().toString(), X, Y, byteAlloc, nativeByteAlloc, coeffs, false); local
    [all...]
RSColorMatrixTest.java 34 native boolean colorMatrixTest(String path, int X, int Y, byte[] input, byte[] output, float[] coeffs, int optionFlag);
43 float[] coeffs = new float[9]; local
44 coeffs[0] = 1.f;
45 coeffs[1] = 0.3f;
46 coeffs[2] = 0.7f;
47 coeffs[3] = 0.2f;
48 coeffs[4] = 1.f;
49 coeffs[5] = -0.1f;
50 coeffs[6] = -0.5f;
51 coeffs[7] = 0.2f
67 colorMatrixTest(this.getContext().getCacheDir().toString(), X, Y, byteAlloc, nativeByteAlloc, coeffs, 0); local
83 float[] coeffs = new float[9]; local
97 colorMatrixTest(this.getContext().getCacheDir().toString(), X, Y, byteAlloc, nativeByteAlloc, coeffs, 1); local
114 float[] coeffs = new float[16]; local
132 colorMatrixTest(this.getContext().getCacheDir().toString(), X, Y, byteAlloc, nativeByteAlloc, coeffs, 2); local
149 float[] coeffs = new float[9]; local
163 colorMatrixTest(this.getContext().getCacheDir().toString(), X, Y, byteAlloc, nativeByteAlloc, coeffs, 3); local
180 float[] coeffs = new float[9]; local
194 colorMatrixTest(this.getContext().getCacheDir().toString(), X, Y, byteAlloc, nativeByteAlloc, coeffs, 4); local
    [all...]
  /external/eigen/Eigen/src/Geometry/
Hyperplane.h 57 : m_coeffs(other.coeffs())
176 inline const Coefficients& coeffs() const { return m_coeffs; } function in class:Eigen::Hyperplane
181 inline Coefficients& coeffs() { return m_coeffs; } function in class:Eigen::Hyperplane
193 Scalar det = coeffs().coeff(0) * other.coeffs().coeff(1) - coeffs().coeff(1) * other.coeffs().coeff(0);
198 if(abs(coeffs().coeff(1))>abs(coeffs().coeff(0)))
199 return VectorType(coeffs().coeff(1), -coeffs().coeff(2)/coeffs().coeff(1)-coeffs().coeff(0))
    [all...]
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...]
  /cts/tests/tests/rscpp/librscpptest/
rs_jni.cpp 129 jfloat * coeffs = env->GetFloatArrayElements(coeffArray, NULL); local
148 convolve->setCoefficients(coeffs);
153 convolve->setCoefficients(coeffs);
161 env->ReleaseFloatArrayElements(coeffArray, coeffs, JNI_ABORT);
262 jfloat * coeffs = env->GetFloatArrayElements(coeffArray, NULL); local
278 cm->setColorMatrix3(coeffs);
282 cm->setColorMatrix4(coeffs);
288 cm->setColorMatrix4(coeffs);
298 env->ReleaseFloatArrayElements(coeffArray, coeffs, JNI_ABORT);
  /external/eigen/Eigen/src/Core/
BandMatrix.h 60 inline const CoefficientsType& coeffs() const { return derived().coeffs(); } function in class:Eigen::internal::BandMatrixBase
63 inline CoefficientsType& coeffs() { return derived().coeffs(); } function in class:Eigen::internal::BandMatrixBase
72 Index len = coeffs().rows();
76 len = (std::min)(rows(),std::max<Index>(0,coeffs().rows() - (supers()-i)));
79 len = std::max<Index>(0,coeffs().rows() - (i + 1 - rows() + subs()));
80 return Block<CoefficientsType,Dynamic,1>(coeffs(), start, i, len, 1);
85 { return Block<CoefficientsType,1,SizeAtCompileTime>(coeffs(),supers(),0,1,(std::min)(rows(),cols())); }
89 { return Block<const CoefficientsType,1,SizeAtCompileTime>(coeffs(),supers(),0,1,(std::min)(rows(),cols()));
225 inline const CoefficientsType& coeffs() const { return m_coeffs; } function in class:Eigen::internal::BandMatrix
226 inline CoefficientsType& coeffs() { return m_coeffs; } function in class:Eigen::internal::BandMatrix
289 inline const CoefficientsType& coeffs() const { return m_coeffs; } function in class:Eigen::internal::BandMatrixWrapper
    [all...]
  /external/skia/src/opts/
SkBitmapProcState_arm_neon.cpp 137 int16x4_t coeffs, coeff0, coeff1, coeff2, coeff3; local
138 coeffs = vld1_s16(filterValues);
139 coeff0 = vreinterpret_s16_u8(vtbl1_u8(vreinterpret_u8_s16(coeffs), coeff_mask0));
140 coeff1 = vreinterpret_s16_u8(vtbl1_u8(vreinterpret_u8_s16(coeffs), coeff_mask1));
141 coeff2 = vreinterpret_s16_u8(vtbl1_u8(vreinterpret_u8_s16(coeffs), coeff_mask2));
142 coeff3 = vreinterpret_s16_u8(vtbl1_u8(vreinterpret_u8_s16(coeffs), coeff_mask3));
176 uint16x4_t coeffs; local
178 coeffs = vld1_u16(reinterpret_cast<const uint16_t*>(filterValues));
179 coeffs &= vld1_u16(&mask[r][0]);
180 coeff0 = vreinterpret_s16_u8(vtbl1_u8(vreinterpret_u8_u16(coeffs), coeff_mask0))
427 int16x4_t coeffs, coeff0, coeff1, coeff2, coeff3; local
464 int16x4_t coeffs, coeff0, coeff1, coeff2, coeff3; local
    [all...]
  /frameworks/av/media/img_utils/src/
DngUtils.cpp 318 const double coeffs[] = { c_0 * kCoeffs[0], local
329 coeffs);
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.sat4j.pb_2.3.5.v201308161310.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.sat4j.pb_2.3.5.v20130525.jar 
  /external/eigen/demos/opengl/
quaternion_demo.cpp 154 const Vector3& coeffs() const { return m_angles; } function in class:EulerAngles
155 Vector3& coeffs() { return m_angles; } function in class:EulerAngles
192 res.coeffs() = lerp(t, a.coeffs(), b.coeffs());
302 currentFrame.orientation.coeffs().normalize();
  /hardware/intel/img/psb_video/src/
psb_texture.h 103 psb_coeffs_s coeffs; member in struct:psb_texture_s
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/webp/src/dec/
frame.c 746 const int16_t* const coeffs = block->coeffs_; local
780 DoTransform(bits, coeffs + n * 16, dst);
788 DoTransform(bits, coeffs + n * 16, y_dst + kScan[n]);
798 DoUVTransform(bits_uv >> 0, coeffs + 16 * 16, u_dst);
799 DoUVTransform(bits_uv >> 8, coeffs + 20 * 16, v_dst);
  /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 888 double rawCoeff[MAX_TAPS * 32], coeffs[N_PHASES][MAX_TAPS]; local
921 coeffs[i][j] = rawCoeff[pos] / sum;
928 setCoeffRegs(&coeffs[i][j], mantSize + 2, pCoeff, pos);
930 setCoeffRegs(&coeffs[i][j], mantSize, pCoeff, pos);
942 sum += coeffs[i][j];
947 coeffs[i][tap2Fix] += diff;
950 setCoeffRegs(&coeffs[i][tap2Fix], mantSize + 2, pCoeff, pos);
952 setCoeffRegs(&coeffs[i][tap2Fix], mantSize, pCoeff, pos);
956 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/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.sat4j.pb_2.2.0.v20100429.jar 

Completed in 3722 milliseconds

1 2