/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:__anon23943 [all...] |
SkOpts_sse41.cpp | 158 static __m128i alphas(__m128i px) { function in namespace:sk_sse41 166 // We want to calculate s + (d * inv(alphas(s)) + 127)/255. 167 // We'd generally do that div255 as s + ((d * inv(alphas(s)) + 128)*257)>>16. 169 // But we can go one step further to ((s*255 + 128 + d*inv(alphas(s)))*257)>>16. 170 // This lets us hoist (s*255+128) and inv(alphas(s)) out of the loop. 173 A = inv(alphas(s)); 206 AC = inv(alphas(sc));
|
Sk4px_SSE2.h | 61 inline Sk4px Sk4px::alphas() const { function in class:__anon23929::Sk4px 73 inline Sk4px Sk4px::alphas() const { function in class:__anon23929::Sk4px
|
Sk4px_NEON.h | 66 inline Sk4px Sk4px::alphas() const { function in class:__anon23928::Sk4px
|
Sk4px_none.h | 71 inline Sk4px Sk4px::alphas() const { function in class:__anon23930::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/opencv3/modules/calib3d/src/ |
epnp.h | 44 void fill_M(CvMat * M, const int row, const double * alphas, const double u, const double v); 76 std::vector<double> pws, us, alphas, pcs; member in class:cv::epnp
|
upnp.h | 88 void fill_M(cv::Mat * M, const int row, const double * alphas, const double u, const double v); 126 std::vector<double> pws, us, alphas, pcs; member in class:upnp
|
epnp.cpp | 32 alphas.resize(4 * number_of_correspondences); 98 double * a = &alphas[0] + 4 * i; 142 double * a = &alphas[0] + 4 * i; 158 fill_M(M, 2 * i, &alphas[0] + 4 * i, us[2 * i], us[2 * i + 1]);
|
/external/webp/src/enc/ |
analysis.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. 333 int alphas[MAX_ALPHA + 1], 355 alphas[best_alpha]++; 374 // distribution in alphas[]. Segments is assigned a-posteriori, based o 398 int alphas[MAX_ALPHA + 1]; member in struct:__anon27443 [all...] |
/external/opencv3/3rdparty/libwebp/enc/ |
analysis.c | 146 const int alphas[MAX_ALPHA + 1]) { 157 for (n = 0; n <= MAX_ALPHA && alphas[n] == 0; ++n) {} 159 for (n = MAX_ALPHA; n > min_a && alphas[n] == 0; --n) {} 179 if (alphas[a]) { 185 dist_accum[n] += a * alphas[a]; 186 accum[n] += alphas[a]; 220 SetSegmentAlphas(enc, centers, weighted_average); // pick some alphas. 331 int alphas[MAX_ALPHA + 1], 353 alphas[best_alpha]++; 372 // distribution in alphas[]. Segments is assigned a-posteriori, based o 400 int alphas[MAX_ALPHA + 1] = { 0 }; local [all...] |
/packages/apps/Gallery2/jni/filters/ |
edge.c | 49 *(buf + j) = 255; // set initial alphas 123 *(dst + last_row + j) = 255; // set alphas
|
/external/skia/gm/ |
modecolorfilters.cpp | 101 SkColor alphas[] = {0xFFFFFFFF, 0x80808080}; local 131 int paintColorCnt = hasShader ? SK_ARRAY_COUNT(alphas) : SK_ARRAY_COUNT(colors); 132 SkColor* paintColors = hasShader ? alphas : colors;
|
/external/eigen/Eigen/src/Eigenvalues/ |
GeneralizedEigenSolver.h | 184 * It is a shortcut for \code this->alphas().cwiseQuotient(this->betas()); \endcode 186 * but rather directly deal with the alphas and betas vectors. 196 * \sa alphas(), betas(), eigenvectors() 206 * This vector permits to reconstruct the j-th eigenvalues as alphas(i)/betas(j). 209 ComplexVectorType alphas() const function in class:Eigen::GeneralizedEigenSolver 217 * This vector permits to reconstruct the j-th eigenvalues as alphas(i)/betas(j). 219 * \sa alphas(), eigenvalues() */
|
/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
|
/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...] |
/external/skia/src/core/ |
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.
|
/cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/ |
LayerTests.java | 55 // reduce alpha by another 50% (ensuring two alphas combine correctly)
|
/external/skia/src/codec/ |
SkPngCodec.cpp | 106 png_bytep alphas; local 108 if (png_get_tRNS(fPng_ptr, fInfo_ptr, &alphas, &numColorsWithAlpha, nullptr)) { 119 // We don't have a function in SkOpts that combines a set of alphas with a set 122 colorPtr[i] = proc(alphas[i], palette->red, palette->green, palette->blue);
|
/external/skia/src/utils/ |
SkTextureCompressor.h | 30 // bitmap to insert alphas.
|
/external/skia/tests/ |
BlendTest.cpp | 85 // We'll test all alphas and legal color values, assuming all colors work the same.
|