HomeSort by relevance Sort by last modified time
    Searched full:alphas (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/eigen/doc/snippets/
GeneralizedEigenSolver.cpp 5 cout << "The (complex) numerators of the generalzied eigenvalues are: " << ges.alphas().transpose() << endl;
7 cout << "The (complex) generalzied eigenvalues are (alphas./beta): " << ges.eigenvalues().transpose() << endl;
  /external/skia/src/opts/
SkXfermode_opts.h 26 XFERMODE(SrcIn) { return s.approxMulDiv255(d.alphas() ); }
27 XFERMODE(SrcOut) { return s.approxMulDiv255(d.alphas().inv()); }
28 XFERMODE(SrcOver) { return s + d.approxMulDiv255(s.alphas().inv()); }
34 XFERMODE(SrcATop) { return (s * d.alphas() + d * s.alphas().inv()).div255(); }
37 XFERMODE(Xor) { return (s * d.alphas().inv() + d * s.alphas().inv()).div255(); }
48 XFERMODE(Multiply) { return (s * d.alphas().inv() + d * s.alphas().inv() + s*d).div255(); }
51 auto m = Sk4px::Wide::Min(s * d.alphas(), d * s.alphas()).div255()
81 auto alphas = srcover; local
96 auto alphas = srcover, local
109 auto alphas = srcover, local
124 static inline Sk4f alphas(const Sk4f& f) { function in namespace:__anon29752
    [all...]
Sk4px_SSE2.h 61 inline Sk4px Sk4px::alphas() const { function in class:__anon29725::Sk4px
73 inline Sk4px Sk4px::alphas() const { function in class:__anon29725::Sk4px
SkBlitRow_opts.h 173 const uint8x8_t alphas = vcreate_u8(0x0707070703030303); local
174 auto invSA0_w = vsubw_u8(vdupq_n_u16(256), vtbl1_u8(src0, alphas)),
175 invSA2_w = vsubw_u8(vdupq_n_u16(256), vtbl1_u8(src2, alphas));
Sk4px_NEON.h 66 inline Sk4px Sk4px::alphas() const { function in class:__anon29724::Sk4px
Sk4px_none.h 71 inline Sk4px Sk4px::alphas() const { function in class:__anon29726::Sk4px
SkBlitMask_opts.h 142 right = d.approxMulDiv255(left.alphas().inv());
  /external/webrtc/webrtc/base/
urlencode.h 24 // Encode all characters except alphas, numbers, and -_.!~*'()
28 // Encode all characters except alphas, numbers, and -_.!~*'()
  /external/skia/gm/
modecolorfilters.cpp 101 SkColor alphas[] = {0xFFFFFFFF, 0x80808080}; variable
129 int paintColorCnt = hasShader ? SK_ARRAY_COUNT(alphas) : SK_ARRAY_COUNT(colors);
130 SkColor* paintColors = hasShader ? alphas : colors;
  /external/webp/src/dsp/
alpha_processing_neon.c 96 const uint8x8_t alphas = vld1_u8(alpha + i); local
97 rgbX.val[0] = alphas;
99 mask8 = vand_u8(mask8, alphas);
147 const uint8x8_t alphas = rgbX.val[0]; local
148 vst1_u8((uint8_t*)(alpha + i), alphas);
149 mask8 = vand_u8(mask8, alphas);
  /external/webp/src/enc/
analysis_enc.c 143 const int alphas[MAX_ALPHA + 1]) {
161 for (n = 0; n <= MAX_ALPHA && alphas[n] == 0; ++n) {}
163 for (n = MAX_ALPHA; n > min_a && alphas[n] == 0; --n) {}
184 if (alphas[a]) {
190 dist_accum[n] += a * alphas[a];
191 accum[n] += alphas[a];
225 SetSegmentAlphas(enc, centers, weighted_average); // pick some alphas.
361 int alphas[MAX_ALPHA + 1],
387 alphas[best_alpha]++;
406 // distribution in alphas[]. Segments is assigned a-posteriori, based o
430 int alphas[MAX_ALPHA + 1]; member in struct:__anon36780
    [all...]
  /external/skia/src/core/
SkScan_AAAPath.cpp 229 SkFAIL("Don't use this; directly add alphas to the mask.");
344 // Blitting 0xFF and 0 is much faster so we snap alphas close to them
588 // Here we always send in l < SK_Fixed1, and the first alpha we want to compute is alphas[0]
589 static inline void computeAlphaAboveLine(SkAlpha* alphas, SkFixed l, SkFixed r,
597 alphas[0] = getPartialAlpha(((R << 17) - l - r) >> 9, fullAlpha);
602 alphas[0] = SkFixedMul(first, firstH) >> 9; // triangle alpha
605 alphas[i] = alpha16 >> 8;
608 alphas[R - 1] = fullAlpha - partialTriangleToAlpha(last, dY);
612 // Here we always send in l < SK_Fixed1, and the first alpha we want to compute is alphas[0]
614 SkAlpha* alphas, SkFixed l, SkFixed r, SkFixed dY, SkAlpha fullAlpha)
    [all...]
SkImageInfoPriv.h 61 * should we use kPremul or kUnpremul color values with the opaque alphas? Or should
Sk4px.h 30 Sk4px alphas() const; // ARGB argb XYZW xyzw -> AAAA aaaa XXXX xxxx
43 // Ditto for Alphas... Load2Alphas fills the low two lanes of Sk4px.
  /external/skia/include/core/
SkColorSpaceXform.h 55 * kOpaque optimization hint, |dst| alphas set to 1
  /external/eigen/Eigen/src/Eigenvalues/
GeneralizedEigenSolver.h 93 /** \brief Type for vector of complex scalar values eigenvalues as returned by alphas().
188 * It is a shortcut for \code this->alphas().cwiseQuotient(this->betas()); \endcode
190 * but rather directly deal with the alphas and betas vectors.
200 * \sa alphas(), betas(), eigenvectors()
210 * This vector permits to reconstruct the j-th eigenvalues as alphas(i)/betas(j).
213 ComplexVectorType alphas() const function in class:Eigen::GeneralizedEigenSolver
221 * This vector permits to reconstruct the j-th eigenvalues as alphas(i)/betas(j).
223 * \sa alphas(), eigenvalues() */
  /packages/apps/Gallery2/jni/filters/
edge.c 49 *(buf + j) = 255; // set initial alphas
123 *(dst + last_row + j) = 255; // set alphas
  /cts/tests/tests/rsblas/src/android/renderscript/cts/
IntrinsicBLAS.java 29 private final float alphaS = 1.0f;
252 mBLAS.SGEMV(trans, alphaS, matA, vecX, incX, betaS, vecY, incY);
265 mBLAS.SGEMV(trans, alphaS, matA, vecX, incX, betaS, vecY, incY);
328 mBLAS.SGEMV(trans, alphaS, matrixAS, vectorXS, incX, betaS, vectorYS, incY);
338 mBLAS.SGEMV(trans, alphaS, matrixAS, vectorYS, incY, betaS, vectorXS, incX);
345 mBLAS.SGEMV(trans, alphaS, matrixAS, vectorYS, incY, betaS, vectorXS, incX);
360 mBLAS.SGEMV(trans, alphaS, matrixAS, vectorXS, incX, betaS, vectorYS, incY);
550 mBLAS.SGBMV(trans, KL, KU, alphaS, matA, vecX, incX, betaS, vecY, incY);
563 mBLAS.SGBMV(trans, KL, KU, alphaS, matA, vecX, incX, betaS, vecY, incY);
628 mBLAS.SGBMV(trans, mBLASData.KL, mBLASData.KU, alphaS, matrixAS, vectorXS, incX, betaS, vectorYS, incY)
    [all...]
  /packages/apps/Gallery2/jni_jpegstream/src/
jpeg_reader.cpp 217 // Set alphas to 255
226 // Reverse endianness and set alphas to 255
jpeg_writer.cpp 172 // Strips alphas
181 // Strips alphas and flips endianness
  /external/skia/src/images/
SkPNGImageEncoder.cpp 119 pack trans[] and return the number of alphas[] entries written. If the image is
123 png_byte* SK_RESTRICT alphas, const SkImageInfo& info,
142 alphas[numWithAlpha] = alpha;
  /external/eigen/test/
eigensolver_generalized_real.cpp 62 Matrix<ComplexScalar,Dynamic,Dynamic> tmp = (eig.betas()(k)*a).template cast<ComplexScalar>() - eig.alphas()(k)*b;
  /frameworks/base/core/tests/coretests/src/android/app/admin/
PasswordMetricsTest.java 135 // ordered, but not composed of alphas or digits
  /packages/apps/Launcher3/src/com/android/launcher3/util/
MultiStateAlphaController.java 68 * to {@param finalAlpha}. Alphas at other index are not affected.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_deblocking.c 77 static const u8 alphas[52] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,5,6,7,8,9,10, variable
    [all...]

Completed in 668 milliseconds

1 2 3 4