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

1 2

  /external/fec/
dotprod.h 14 signed short *coeffs[8]; member in struct:dotprod
dotprod_port.c 12 signed short *coeffs; member in struct:dotprod
16 void *initdp_port(signed short coeffs[],int len){
27 dp->coeffs = (signed short *)calloc(len,sizeof(signed short));
29 dp->coeffs[j] = coeffs[j];
38 if(dp->coeffs != NULL)
39 free(dp->coeffs);
53 corr += (long)a[i] * dp->coeffs[i];
dotprod_mmx.c 17 signed short *coeffs[4]; member in struct:dotprod
22 void *initdp_mmx(signed short coeffs[],int len){
35 dp->coeffs[i] = (signed short *)calloc(1+(len+i-1)/4,
38 dp->coeffs[i][j+i] = coeffs[j];
50 if(dp->coeffs[i] != NULL)
51 free(dp->coeffs[i]);
73 * index into dp->coeffs[] and the number of 0 words padded onto
79 return dotprod_mmx_assist(ar,dp->coeffs[al],(dp->len+al-1)/4+1);
dotprod_sse2.c 18 signed short *coeffs[8]; member in struct:dotprod
24 void *initdp_sse2(signed short coeffs[],int len){
39 posix_memalign((void **)&dp->coeffs[i],16,blksize);
40 memset(dp->coeffs[i],0,blksize);
42 dp->coeffs[i][j+i] = coeffs[j];
54 if(dp->coeffs[i] != NULL)
55 free(dp->coeffs[i]);
71 return dotprod_sse2_assist(ar,dp->coeffs[al],(dp->len+al-1)/8+1);
dtest.c 26 short coeffs[512]; local
70 memset(coeffs,0,sizeof(coeffs));
77 coeffs[i] = gv;
83 dp_simd = initdp(coeffs,ntaps);
84 dp_port = initdp_port(coeffs,ntaps);
dotprod_av.c 15 signed short *coeffs[8]; member in struct:dotprod
19 void *initdp_av(signed short coeffs[],int len){
33 dp->coeffs[i] = calloc(1+(len+i-1)/8,sizeof(vector signed short));
35 dp->coeffs[i][j+i] = coeffs[j];
47 if(dp->coeffs[i] != NULL)
48 free(dp->coeffs[i]);
68 d = (vector signed short *)dp->coeffs[al];
  /external/webp/src/enc/
cost_enc.h 31 const int16_t* coeffs; member in struct:VP8Residual
token_enc.c 115 const int16_t* const coeffs = res->coeffs; local
127 const int c = coeffs[n++];
  /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/libvpx/libvpx/vpx_dsp/x86/
highbd_quantize_intrin_sse2.c 47 __m128i coeffs, cmp1, cmp2; local
49 coeffs = _mm_load_si128((const __m128i *)(coeff_ptr + i * 4));
50 cmp1 = _mm_cmplt_epi32(coeffs, zbins[i != 0]);
51 cmp2 = _mm_cmpgt_epi32(coeffs, nzbins[i != 0]);
62 __m128i coeffs, coeffs_sign, tmp1, tmp2; local
67 coeffs = _mm_load_si128((const __m128i *)(coeff_ptr + i * 4));
68 coeffs_sign = _mm_srai_epi32(coeffs, 31);
69 coeffs = _mm_sub_epi32(_mm_xor_si128(coeffs, coeffs_sign), coeffs_sign);
70 tmp1 = _mm_cmpgt_epi32(coeffs, zbins[i != 0])
122 __m128i coeffs, cmp1, cmp2; local
    [all...]
  /external/eigen/Eigen/src/Geometry/
Hyperplane.h 57 : m_coeffs(other.coeffs())
176 EIGEN_DEVICE_FUNC inline const Coefficients& coeffs() const { return m_coeffs; } function in class:Eigen::Hyperplane
181 EIGEN_DEVICE_FUNC inline Coefficients& coeffs() { return m_coeffs; } function in class:Eigen::Hyperplane
192 Scalar det = coeffs().coeff(0) * other.coeffs().coeff(1) - coeffs().coeff(1) * other.coeffs().coeff(0);
197 if(numext::abs(coeffs().coeff(1))>numext::abs(coeffs().coeff(0)))
198 return VectorType(coeffs().coeff(1), -coeffs().coeff(2)/coeffs().coeff(1)-coeffs().coeff(0))
    [all...]
Quaternion.h 61 EIGEN_DEVICE_FUNC inline Scalar x() const { return this->derived().coeffs().coeff(0); }
63 EIGEN_DEVICE_FUNC inline Scalar y() const { return this->derived().coeffs().coeff(1); }
65 EIGEN_DEVICE_FUNC inline Scalar z() const { return this->derived().coeffs().coeff(2); }
67 EIGEN_DEVICE_FUNC inline Scalar w() const { return this->derived().coeffs().coeff(3); }
70 EIGEN_DEVICE_FUNC inline Scalar& x() { return this->derived().coeffs().coeffRef(0); }
72 EIGEN_DEVICE_FUNC inline Scalar& y() { return this->derived().coeffs().coeffRef(1); }
74 EIGEN_DEVICE_FUNC inline Scalar& z() { return this->derived().coeffs().coeffRef(2); }
76 EIGEN_DEVICE_FUNC inline Scalar& w() { return this->derived().coeffs().coeffRef(3); }
79 EIGEN_DEVICE_FUNC inline const VectorBlock<const Coefficients,3> vec() const { return coeffs().template head<3>(); }
82 EIGEN_DEVICE_FUNC inline VectorBlock<Coefficients,3> vec() { return coeffs().template head<3>();
85 EIGEN_DEVICE_FUNC inline const typename internal::traits<Derived>::Coefficients& coeffs() const { return derived().coeffs(); } function in class:Eigen::QuaternionBase
88 EIGEN_DEVICE_FUNC inline typename internal::traits<Derived>::Coefficients& coeffs() { return derived().coeffs(); } function in class:Eigen::QuaternionBase
279 EIGEN_DEVICE_FUNC inline Coefficients& coeffs() { return m_coeffs;} function in class:Eigen::Quaternion
280 EIGEN_DEVICE_FUNC inline const Coefficients& coeffs() const { return m_coeffs;} function in class:Eigen::Quaternion
362 EIGEN_DEVICE_FUNC inline const Coefficients& coeffs() const { return m_coeffs;} function in class:Eigen::Map
399 EIGEN_DEVICE_FUNC inline Coefficients& coeffs() { return m_coeffs; } function in class:Eigen::Map
400 EIGEN_DEVICE_FUNC 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/eigen/Eigen/src/SparseCore/
SparseCompressedBase.h 114 const Map<const Array<Scalar,Dynamic,1> > coeffs() const { eigen_assert(isCompressed()); return Array<Scalar,Dynamic,1>::Map(valuePtr(),nonZeros()); } function in class:Eigen::SparseCompressedBase
126 Map<Array<Scalar,Dynamic,1> > coeffs() { eigen_assert(isCompressed()); return Array<Scalar,Dynamic,1>::Map(valuePtr(),nonZeros()); } function in class:Eigen::SparseCompressedBase
  /frameworks/av/media/img_utils/src/
DngUtils.cpp 320 const double coeffs[] = { c_0 * kCoeffs[0], local
331 coeffs);
  /frameworks/av/media/libstagefright/webm/
WebmElement.cpp 391 int32_t primaries, transfer, coeffs; local
394 aspects, &primaries, &transfer, &coeffs, &fullRange);
402 colorInfo.push_back(new WebmUnsigned(kMkvMatrixCoefficients, 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();
  /frameworks/av/media/libstagefright/codecs/avcdec/
SoftAVCDec.cpp 363 int32_t coeffs = s_ctl_get_vui_params_op.u1_matrix_coeffs; local
368 primaries, transfer, coeffs, fullRange, colorAspects);
  /frameworks/av/media/libstagefright/foundation/
ColorUtils.cpp 97 ColorAspects::Primaries primaries, ColorAspects::MatrixCoeffs coeffs) {
99 if (sStandards.map(std::make_pair(primaries, coeffs), &res)) {
101 } else if (!isValid(primaries) || !isValid(coeffs)) {
107 if (isDefined(primaries) && isDefined(coeffs)) {
108 return kColorStandardExtendedStart + primaries + coeffs * numPrimaries;
110 return kColorStandardVendorStart + primaries + coeffs * 0x100;
117 ColorAspects::Primaries *primaries, ColorAspects::MatrixCoeffs *coeffs) {
121 *coeffs = res.second;
136 *coeffs = (ColorAspects::MatrixCoeffs)(product / numPrimaries);
140 *coeffs = ColorAspects::MatrixOther
365 ColorAspects::MatrixCoeffs coeffs; local
    [all...]
  /hardware/intel/img/psb_video/src/
psb_texture.h 103 psb_coeffs_s coeffs; member in struct:psb_texture_s
  /external/webp/src/dec/
frame_dec.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);

Completed in 545 milliseconds

1 2