Searched defs:alpha (Results 201 - 225 of 421) sorted by relevance

1234567891011>>

/external/skia/tests/
H A DBlendTest.cpp28 uint8_t dst, uint8_t src, uint8_t alpha) {
29 const uint8_t golden = blend_double_round(dst, src, alpha);
30 const uint8_t blend = algorithm(dst, src, alpha);
32 SkDebugf("dst %02x, src %02x, alpha %02x, |%02x - %02x| > %d\n",
33 dst, src, alpha, blend, golden, maxDiff);
38 // Exhaustively compare an algorithm against our golden, for a given alpha.
39 static void test_alpha(skiatest::Reporter* r, uint8_t alpha, int maxDiff, Blend algorithm) { argument
42 for (unsigned src = 0; src <= alpha; src++) {
44 test(r, maxDiff, algorithm, dst, src, alpha);
53 for (unsigned alpha
124 const uint8_t alpha = 0x00; local
164 const uint8_t alpha = 0xFF; local
[all...]
/external/v8/test/mjsunit/
H A Dstring-charat.js84 var alpha = ['@']; variable
87 alpha[i] = c.charAt(0);
89 var alphaStr = alpha.join("");
93 assertEquals(alpha[i], alphaStr.charAt(i));
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
H A DTestUtils.java176 double alpha)
178 return tTest. homoscedasticTTest(sample1, sample2, alpha);
210 double alpha)
212 return tTest.pairedTTest(sample1, sample2, alpha);
259 public static boolean tTest(double mu, double[] sample, double alpha) argument
261 return tTest.tTest(mu, sample, alpha);
276 double alpha)
278 return tTest. tTest(mu, sampleStats, alpha);
292 public static boolean tTest(double[] sample1, double[] sample2, double alpha) argument
294 return tTest.tTest(sample1, sample2, alpha);
175 homoscedasticTTest(double[] sample1, double[] sample2, double alpha) argument
209 pairedTTest(double[] sample1, double[] sample2, double alpha) argument
275 tTest(double mu, StatisticalSummary sampleStats, double alpha) argument
308 tTest(StatisticalSummary sampleStats1, StatisticalSummary sampleStats2, double alpha) argument
342 chiSquareTest(double[] expected, long[] observed, double alpha) argument
359 chiSquareTest(long[][] counts, double alpha) argument
398 chiSquareTestDataSetsComparison(long[] observed1, long[] observed2, double alpha) argument
429 oneWayAnovaTest(Collection<double[]> categoryData, double alpha) argument
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/regression/
H A DSimpleRegression.java533 * Returns the half-width of a (100-100*alpha)% confidence interval for
536 * The (100-100*alpha)% confidence interval is </p>
542 * <code>alpha = .01</code></p>
555 * <li><code>(0 < alpha < 1)</code>; otherwise an
559 * @param alpha the desired significance level
563 public double getSlopeConfidenceInterval(double alpha) argument
565 if (alpha >= 1 || alpha <= 0) {
568 alpha, 0.0, 1.0);
571 distribution.inverseCumulativeProbability(1d - alpha /
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DTnaf.java23 * <code>&alpha;<sub>u</sub></code>'s must be computed differently, see
36 * The <code>&alpha;<sub>u</sub></code>'s for <code>a=0</code> as an array
48 * The <code>&alpha;<sub>u</sub></code>'s for <code>a=0</code> as an array
56 * The <code>&alpha;<sub>u</sub></code>'s for <code>a=1</code> as an array
67 * The <code>&alpha;<sub>u</sub></code>'s for <code>a=1</code> as an array
696 * @param alpha The <code>&alpha;<sub>u</sub></code>'s for the window width.
701 byte width, BigInteger pow2w, BigInteger tw, ZTauElement[] alpha)
760 r0 = r0.subtract(alpha[uLocal].u);
761 r1 = r1.subtract(alpha[uLoca
700 tauAdicWNaf(byte mu, ZTauElement lambda, byte width, BigInteger pow2w, BigInteger tw, ZTauElement[] alpha) argument
[all...]
/external/cblas/testing/
H A Dc_cblas2.c12 const void *alpha,
29 cblas_cgemv( CblasRowMajor, trans, *m, *n, alpha, A, LDA, x, *incx,
35 *m, *n, alpha, a, *lda, x, *incx, beta, y, *incy );
38 *m, *n, alpha, a, *lda, x, *incx, beta, y, *incy );
42 CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *a, int *lda,
76 cblas_cgbmv( CblasRowMajor, trans, *m, *n, *kl, *ku, alpha, A, LDA, x,
81 cblas_cgbmv( CblasColMajor, trans, *m, *n, *kl, *ku, alpha, a, *lda, x,
84 cblas_cgbmv( UNDEFINED, trans, *m, *n, *kl, *ku, alpha, a, *lda, x,
88 void F77_cgeru(int *order, int *m, int *n, CBLAS_TEST_COMPLEX *alpha, argument
103 cblas_cgeru( CblasRowMajor, *m, *n, alpha,
11 F77_cgemv(int *order, char *transp, int *m, int *n, const void *alpha, CBLAS_TEST_COMPLEX *a, int *lda, const void *x, int *incx, const void *beta, void *y, int *incy) argument
41 F77_cgbmv(int *order, char *transp, int *m, int *n, int *kl, int *ku, CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *a, int *lda, CBLAS_TEST_COMPLEX *x, int *incx, CBLAS_TEST_COMPLEX *beta, CBLAS_TEST_COMPLEX *y, int *incy) argument
117 F77_cgerc(int *order, int *m, int *n, CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *x, int *incx, CBLAS_TEST_COMPLEX *y, int *incy, CBLAS_TEST_COMPLEX *a, int *lda) argument
145 F77_chemv(int *order, char *uplow, int *n, CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *a, int *lda, CBLAS_TEST_COMPLEX *x, int *incx, CBLAS_TEST_COMPLEX *beta, CBLAS_TEST_COMPLEX *y, int *incy) argument
175 F77_chbmv(int *order, char *uplow, int *n, int *k, CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *a, int *lda, CBLAS_TEST_COMPLEX *x, int *incx, CBLAS_TEST_COMPLEX *beta, CBLAS_TEST_COMPLEX *y, int *incy) argument
239 F77_chpmv(int *order, char *uplow, int *n, CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *ap, CBLAS_TEST_COMPLEX *x, int *incx, CBLAS_TEST_COMPLEX *beta, CBLAS_TEST_COMPLEX *y, int *incy) argument
591 F77_chpr(int *order, char *uplow, int *n, float *alpha, CBLAS_TEST_COMPLEX *x, int *incx, CBLAS_TEST_COMPLEX *ap) argument
666 F77_chpr2(int *order, char *uplow, int *n, CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *x, int *incx, CBLAS_TEST_COMPLEX *y, int *incy, CBLAS_TEST_COMPLEX *ap) argument
743 F77_cher(int *order, char *uplow, int *n, float *alpha, CBLAS_TEST_COMPLEX *x, int *incx, CBLAS_TEST_COMPLEX *a, int *lda) argument
775 F77_cher2(int *order, char *uplow, int *n, CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *x, int *incx, CBLAS_TEST_COMPLEX *y, int *incy, CBLAS_TEST_COMPLEX *a, int *lda) argument
[all...]
H A Dc_cblas3.c15 int *k, CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *a, int *lda,
72 cblas_cgemm( CblasRowMajor, transa, transb, *m, *n, *k, alpha, A, LDA,
84 cblas_cgemm( CblasColMajor, transa, transb, *m, *n, *k, alpha, a, *lda,
87 cblas_cgemm( UNDEFINED, transa, transb, *m, *n, *k, alpha, a, *lda,
91 CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *a, int *lda,
136 cblas_chemm( CblasRowMajor, side, uplo, *m, *n, alpha, A, LDA, B, LDB,
148 cblas_chemm( CblasColMajor, side, uplo, *m, *n, alpha, a, *lda, b, *ldb,
151 cblas_chemm( UNDEFINED, side, uplo, *m, *n, alpha, a, *lda, b, *ldb,
155 CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *a, int *lda,
192 cblas_csymm( CblasRowMajor, side, uplo, *m, *n, alpha,
14 F77_cgemm(int *order, char *transpa, char *transpb, int *m, int *n, int *k, CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *a, int *lda, CBLAS_TEST_COMPLEX *b, int *ldb, CBLAS_TEST_COMPLEX *beta, CBLAS_TEST_COMPLEX *c, int *ldc ) argument
90 F77_chemm(int *order, char *rtlf, char *uplow, int *m, int *n, CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *a, int *lda, CBLAS_TEST_COMPLEX *b, int *ldb, CBLAS_TEST_COMPLEX *beta, CBLAS_TEST_COMPLEX *c, int *ldc ) argument
154 F77_csymm(int *order, char *rtlf, char *uplow, int *m, int *n, CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *a, int *lda, CBLAS_TEST_COMPLEX *b, int *ldb, CBLAS_TEST_COMPLEX *beta, CBLAS_TEST_COMPLEX *c, int *ldc ) argument
209 F77_cherk(int *order, char *uplow, char *transp, int *n, int *k, float *alpha, CBLAS_TEST_COMPLEX *a, int *lda, float *beta, CBLAS_TEST_COMPLEX *c, int *ldc ) argument
265 F77_csyrk(int *order, char *uplow, char *transp, int *n, int *k, CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *a, int *lda, CBLAS_TEST_COMPLEX *beta, CBLAS_TEST_COMPLEX *c, int *ldc ) argument
320 F77_cher2k(int *order, char *uplow, char *transp, int *n, int *k, CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *a, int *lda, CBLAS_TEST_COMPLEX *b, int *ldb, float *beta, CBLAS_TEST_COMPLEX *c, int *ldc ) argument
384 F77_csyr2k(int *order, char *uplow, char *transp, int *n, int *k, CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *a, int *lda, CBLAS_TEST_COMPLEX *b, int *ldb, CBLAS_TEST_COMPLEX *beta, CBLAS_TEST_COMPLEX *c, int *ldc ) argument
448 F77_ctrmm(int *order, char *rtlf, char *uplow, char *transp, char *diagn, int *m, int *n, CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *a, int *lda, CBLAS_TEST_COMPLEX *b, int *ldb) argument
507 F77_ctrsm(int *order, char *rtlf, char *uplow, char *transp, char *diagn, int *m, int *n, CBLAS_TEST_COMPLEX *alpha, CBLAS_TEST_COMPLEX *a, int *lda, CBLAS_TEST_COMPLEX *b, int *ldb) argument
[all...]
H A Dc_dblas2.c11 void F77_dgemv(int *order, char *transp, int *m, int *n, double *alpha, argument
27 *m, *n, *alpha, A, LDA, x, *incx, *beta, y, *incy );
32 *m, *n, *alpha, a, *lda, x, *incx, *beta, y, *incy );
35 *m, *n, *alpha, a, *lda, x, *incx, *beta, y, *incy );
38 void F77_dger(int *order, int *m, int *n, double *alpha, double *x, int *incx, argument
53 cblas_dger(CblasRowMajor, *m, *n, *alpha, x, *incx, y, *incy, A, LDA );
60 cblas_dger( CblasColMajor, *m, *n, *alpha, x, *incx, y, *incy, a, *lda );
115 void F77_dsymv(int *order, char *uplow, int *n, double *alpha, double *a, argument
130 cblas_dsymv(CblasRowMajor, uplo, *n, *alpha, A, LDA, x, *incx,
135 cblas_dsymv(CblasColMajor, uplo, *n, *alpha,
139 F77_dsyr(int *order, char *uplow, int *n, double *alpha, double *x, int *incx, double *a, int *lda) argument
163 F77_dsyr2(int *order, char *uplow, int *n, double *alpha, double *x, int *incx, double *y, int *incy, double *a, int *lda) argument
187 F77_dgbmv(int *order, char *transp, int *m, int *n, int *kl, int *ku, double *alpha, double *a, int *lda, double *x, int *incx, double *beta, double *y, int *incy ) argument
317 F77_dsbmv(int *order, char *uplow, int *n, int *k, double *alpha, double *a, int *lda, double *x, int *incx, double *beta, double *y, int *incy) argument
362 F77_dspmv(int *order, char *uplow, int *n, double *alpha, double *ap, double *x, int *incx, double *beta, double *y, int *incy) argument
481 F77_dspr(int *order, char *uplow, int *n, double *alpha, double *x, int *incx, double *ap ) argument
533 F77_dspr2(int *order, char *uplow, int *n, double *alpha, double *x, int *incx, double *y, int *incy, double *ap ) argument
[all...]
H A Dc_sblas2.c11 void F77_sgemv(int *order, char *transp, int *m, int *n, float *alpha, argument
27 *m, *n, *alpha, A, LDA, x, *incx, *beta, y, *incy );
32 *m, *n, *alpha, a, *lda, x, *incx, *beta, y, *incy );
35 *m, *n, *alpha, a, *lda, x, *incx, *beta, y, *incy );
38 void F77_sger(int *order, int *m, int *n, float *alpha, float *x, int *incx, argument
53 cblas_sger(CblasRowMajor, *m, *n, *alpha, x, *incx, y, *incy, A, LDA );
60 cblas_sger( CblasColMajor, *m, *n, *alpha, x, *incx, y, *incy, a, *lda );
115 void F77_ssymv(int *order, char *uplow, int *n, float *alpha, float *a, argument
130 cblas_ssymv(CblasRowMajor, uplo, *n, *alpha, A, LDA, x, *incx,
135 cblas_ssymv(CblasColMajor, uplo, *n, *alpha,
139 F77_ssyr(int *order, char *uplow, int *n, float *alpha, float *x, int *incx, float *a, int *lda) argument
163 F77_ssyr2(int *order, char *uplow, int *n, float *alpha, float *x, int *incx, float *y, int *incy, float *a, int *lda) argument
187 F77_sgbmv(int *order, char *transp, int *m, int *n, int *kl, int *ku, float *alpha, float *a, int *lda, float *x, int *incx, float *beta, float *y, int *incy ) argument
317 F77_ssbmv(int *order, char *uplow, int *n, int *k, float *alpha, float *a, int *lda, float *x, int *incx, float *beta, float *y, int *incy) argument
362 F77_sspmv(int *order, char *uplow, int *n, float *alpha, float *ap, float *x, int *incx, float *beta, float *y, int *incy) argument
478 F77_sspr(int *order, char *uplow, int *n, float *alpha, float *x, int *incx, float *ap ) argument
529 F77_sspr2(int *order, char *uplow, int *n, float *alpha, float *x, int *incx, float *y, int *incy, float *ap ) argument
[all...]
H A Dc_zblas2.c12 const void *alpha,
29 cblas_zgemv( CblasRowMajor, trans, *m, *n, alpha, A, LDA, x, *incx,
35 *m, *n, alpha, a, *lda, x, *incx, beta, y, *incy );
38 *m, *n, alpha, a, *lda, x, *incx, beta, y, *incy );
42 CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *a, int *lda,
76 cblas_zgbmv( CblasRowMajor, trans, *m, *n, *kl, *ku, alpha, A, LDA, x,
81 cblas_zgbmv( CblasColMajor, trans, *m, *n, *kl, *ku, alpha, a, *lda, x,
84 cblas_zgbmv( UNDEFINED, trans, *m, *n, *kl, *ku, alpha, a, *lda, x,
88 void F77_zgeru(int *order, int *m, int *n, CBLAS_TEST_ZOMPLEX *alpha, argument
103 cblas_zgeru( CblasRowMajor, *m, *n, alpha,
11 F77_zgemv(int *order, char *transp, int *m, int *n, const void *alpha, CBLAS_TEST_ZOMPLEX *a, int *lda, const void *x, int *incx, const void *beta, void *y, int *incy) argument
41 F77_zgbmv(int *order, char *transp, int *m, int *n, int *kl, int *ku, CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *a, int *lda, CBLAS_TEST_ZOMPLEX *x, int *incx, CBLAS_TEST_ZOMPLEX *beta, CBLAS_TEST_ZOMPLEX *y, int *incy) argument
117 F77_zgerc(int *order, int *m, int *n, CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *x, int *incx, CBLAS_TEST_ZOMPLEX *y, int *incy, CBLAS_TEST_ZOMPLEX *a, int *lda) argument
145 F77_zhemv(int *order, char *uplow, int *n, CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *a, int *lda, CBLAS_TEST_ZOMPLEX *x, int *incx, CBLAS_TEST_ZOMPLEX *beta, CBLAS_TEST_ZOMPLEX *y, int *incy) argument
175 F77_zhbmv(int *order, char *uplow, int *n, int *k, CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *a, int *lda, CBLAS_TEST_ZOMPLEX *x, int *incx, CBLAS_TEST_ZOMPLEX *beta, CBLAS_TEST_ZOMPLEX *y, int *incy) argument
239 F77_zhpmv(int *order, char *uplow, int *n, CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *ap, CBLAS_TEST_ZOMPLEX *x, int *incx, CBLAS_TEST_ZOMPLEX *beta, CBLAS_TEST_ZOMPLEX *y, int *incy) argument
591 F77_zhpr(int *order, char *uplow, int *n, double *alpha, CBLAS_TEST_ZOMPLEX *x, int *incx, CBLAS_TEST_ZOMPLEX *ap) argument
666 F77_zhpr2(int *order, char *uplow, int *n, CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *x, int *incx, CBLAS_TEST_ZOMPLEX *y, int *incy, CBLAS_TEST_ZOMPLEX *ap) argument
743 F77_zher(int *order, char *uplow, int *n, double *alpha, CBLAS_TEST_ZOMPLEX *x, int *incx, CBLAS_TEST_ZOMPLEX *a, int *lda) argument
775 F77_zher2(int *order, char *uplow, int *n, CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *x, int *incx, CBLAS_TEST_ZOMPLEX *y, int *incy, CBLAS_TEST_ZOMPLEX *a, int *lda) argument
[all...]
H A Dc_zblas3.c15 int *k, CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *a, int *lda,
72 cblas_zgemm( CblasRowMajor, transa, transb, *m, *n, *k, alpha, A, LDA,
84 cblas_zgemm( CblasColMajor, transa, transb, *m, *n, *k, alpha, a, *lda,
87 cblas_zgemm( UNDEFINED, transa, transb, *m, *n, *k, alpha, a, *lda,
91 CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *a, int *lda,
136 cblas_zhemm( CblasRowMajor, side, uplo, *m, *n, alpha, A, LDA, B, LDB,
148 cblas_zhemm( CblasColMajor, side, uplo, *m, *n, alpha, a, *lda, b, *ldb,
151 cblas_zhemm( UNDEFINED, side, uplo, *m, *n, alpha, a, *lda, b, *ldb,
155 CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *a, int *lda,
192 cblas_zsymm( CblasRowMajor, side, uplo, *m, *n, alpha,
14 F77_zgemm(int *order, char *transpa, char *transpb, int *m, int *n, int *k, CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *a, int *lda, CBLAS_TEST_ZOMPLEX *b, int *ldb, CBLAS_TEST_ZOMPLEX *beta, CBLAS_TEST_ZOMPLEX *c, int *ldc ) argument
90 F77_zhemm(int *order, char *rtlf, char *uplow, int *m, int *n, CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *a, int *lda, CBLAS_TEST_ZOMPLEX *b, int *ldb, CBLAS_TEST_ZOMPLEX *beta, CBLAS_TEST_ZOMPLEX *c, int *ldc ) argument
154 F77_zsymm(int *order, char *rtlf, char *uplow, int *m, int *n, CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *a, int *lda, CBLAS_TEST_ZOMPLEX *b, int *ldb, CBLAS_TEST_ZOMPLEX *beta, CBLAS_TEST_ZOMPLEX *c, int *ldc ) argument
209 F77_zherk(int *order, char *uplow, char *transp, int *n, int *k, double *alpha, CBLAS_TEST_ZOMPLEX *a, int *lda, double *beta, CBLAS_TEST_ZOMPLEX *c, int *ldc ) argument
265 F77_zsyrk(int *order, char *uplow, char *transp, int *n, int *k, CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *a, int *lda, CBLAS_TEST_ZOMPLEX *beta, CBLAS_TEST_ZOMPLEX *c, int *ldc ) argument
320 F77_zher2k(int *order, char *uplow, char *transp, int *n, int *k, CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *a, int *lda, CBLAS_TEST_ZOMPLEX *b, int *ldb, double *beta, CBLAS_TEST_ZOMPLEX *c, int *ldc ) argument
384 F77_zsyr2k(int *order, char *uplow, char *transp, int *n, int *k, CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *a, int *lda, CBLAS_TEST_ZOMPLEX *b, int *ldb, CBLAS_TEST_ZOMPLEX *beta, CBLAS_TEST_ZOMPLEX *c, int *ldc ) argument
448 F77_ztrmm(int *order, char *rtlf, char *uplow, char *transp, char *diagn, int *m, int *n, CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *a, int *lda, CBLAS_TEST_ZOMPLEX *b, int *ldb) argument
507 F77_ztrsm(int *order, char *rtlf, char *uplow, char *transp, char *diagn, int *m, int *n, CBLAS_TEST_ZOMPLEX *alpha, CBLAS_TEST_ZOMPLEX *a, int *lda, CBLAS_TEST_ZOMPLEX *b, int *ldb) argument
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fReadPixelsTests.cpp194 const float alpha = 1.0f; local
196 m_testCtx.getLog() << tcu::TestLog::Message << "Clear color: (" << red << ", " << green << ", " << blue << ", " << alpha << ")" << tcu::TestLog::EndMessage;
199 GLU_CHECK_CALL(glClearColor(red, green, blue, alpha));
202 tcu::clear(reference.getLevel(0), tcu::Vec4(red, green, blue, alpha));
/external/deqp/modules/gles3/functional/
H A Des3fReadPixelsTests.cpp264 const float alpha = rnd.getFloat(); local
266 const GLfloat color[] = { red, green, blue, alpha };
268 GLU_CHECK_CALL(glClearColor(red, green, blue, alpha));
273 tcu::clear(reference.getLevel(0), tcu::Vec4(red, green, blue, alpha));
282 const GLint alpha = rnd.getUint32(); local
284 const GLint color[] = { red, green, blue, alpha };
289 tcu::clear(reference.getLevel(0), tcu::IVec4(red, green, blue, alpha));
296 const GLuint alpha = rnd.getUint32(); local
298 const GLuint color[] = { red, green, blue, alpha };
303 tcu::clear(reference.getLevel(0), tcu::UVec4(red, green, blue, alpha));
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A Dant.bat33 if "%USERPROFILE%"=="" goto alpha
34 if "%USERPROFILE%"=="%HOME%" goto alpha
35 if "%USERPROFILE%"=="%HOMEDRIVE%%HOMEPATH%" goto alpha
38 :alpha label
/external/eigen/Eigen/src/Core/
H A DProductBase.h118 inline void scaleAndAddTo(Dest& dst, const Scalar& alpha) const { derived().scaleAndAddTo(dst,alpha); }
271 const Scalar& alpha() const { return m_alpha; } function in class:ScaledProduct
/external/eigen/Eigen/src/Core/products/
H A DSelfadjointMatrixMatrix.h214 const Scalar& alpha)
222 ::run(cols, rows, rhs, rhsStride, lhs, lhsStride, res, resStride, alpha);
237 const Scalar& alpha);
248 const Scalar& alpha)
294 gebp_kernel(res+i2, resStride, blockA, blockB, actual_mc, actual_kc, cols, alpha);
302 gebp_kernel(res+k2, resStride, blockA, blockB, actual_mc, actual_kc, cols, alpha);
311 gebp_kernel(res+i2, resStride, blockA, blockB, actual_mc, actual_kc, cols, alpha);
328 const Scalar& alpha);
339 const Scalar& alpha)
373 gebp_kernel(res+i2, resStride, blockA, blockB, actual_mc, actual_kc, cols, alpha);
209 run( Index rows, Index cols, const Scalar* lhs, Index lhsStride, const Scalar* rhs, Index rhsStride, Scalar* res, Index resStride, const Scalar& alpha) argument
243 run( Index rows, Index cols, const Scalar* _lhs, Index lhsStride, const Scalar* _rhs, Index rhsStride, Scalar* res, Index resStride, const Scalar& alpha) argument
334 run( Index rows, Index cols, const Scalar* _lhs, Index lhsStride, const Scalar* _rhs, Index rhsStride, Scalar* res, Index resStride, const Scalar& alpha) argument
[all...]
H A DSelfadjointMatrixVector.h35 Scalar alpha);
44 Scalar alpha)
62 Scalar cjAlpha = ConjugateRhs ? numext::conj(alpha) : alpha;
145 res[j] += alpha * (t2 + predux(ptmp2));
146 res[j+1] += alpha * (t3 + predux(ptmp3));
161 res[j] += alpha * t2;
190 template<typename Dest> void scaleAndAddTo(Dest& dest, const Scalar& alpha) const
201 Scalar actualAlpha = alpha * LhsBlasTraits::extractScalarFactor(m_lhs)
270 template<typename Dest> void scaleAndAddTo(Dest& dest, const Scalar& alpha) cons
39 run( Index size, const Scalar* lhs, Index lhsStride, const Scalar* _rhs, Index rhsIncr, Scalar* res, Scalar alpha) argument
[all...]
H A DTriangularMatrixMatrix.h64 const Scalar& alpha, level3_blocking<Scalar,Scalar>& blocking)
74 ::run(cols, rows, depth, rhs, rhsStride, lhs, lhsStride, res, resStride, alpha, blocking);
78 // implements col-major += alpha * op(triangular) * op(general)
99 const Scalar& alpha, level3_blocking<Scalar,Scalar>& blocking);
112 const Scalar& alpha, level3_blocking<Scalar,Scalar>& blocking)
189 gebp_kernel(res+startBlock, resStride, blockA, blockB, actualPanelWidth, actualPanelWidth, cols, alpha,
199 gebp_kernel(res+startTarget, resStride, blockA, blockB, lengthTarget, actualPanelWidth, cols, alpha,
214 gebp_kernel(res+i2, resStride, blockA, blockB, actual_mc, actual_kc, cols, alpha, -1, -1, 0, 0, blockW);
220 // implements col-major += alpha * op(general) * op(triangular)
240 const Scalar& alpha, level3_blockin
59 run( Index rows, Index cols, Index depth, const Scalar* lhs, Index lhsStride, const Scalar* rhs, Index rhsStride, Scalar* res, Index resStride, const Scalar& alpha, level3_blocking<Scalar,Scalar>& blocking) argument
107 run( Index _rows, Index _cols, Index _depth, const Scalar* _lhs, Index lhsStride, const Scalar* _rhs, Index rhsStride, Scalar* res, Index resStride, const Scalar& alpha, level3_blocking<Scalar,Scalar>& blocking) argument
248 run( Index _rows, Index _cols, Index _depth, const Scalar* _lhs, Index lhsStride, const Scalar* _rhs, Index rhsStride, Scalar* res, Index resStride, const Scalar& alpha, level3_blocking<Scalar,Scalar>& blocking) argument
[all...]
/external/eigen/Eigen/src/IterativeLinearSolvers/
H A DBiCGSTAB.h53 Scalar alpha = 1; local
81 Scalar beta = (rho/rho_old) * (alpha / w);
88 alpha = rho / r0.dot(v);
89 s = r - alpha * v;
99 x += alpha * y + w * z;
H A DConjugateGradient.h72 Scalar alpha = absNew / p.dot(tmp); // the amount we travel on dir local
73 x += alpha * p; // update solution
74 residual -= alpha * tmp; // update residue
/external/eigen/Eigen/src/SparseCore/
H A DSparseDenseProduct.h173 static void run(const SparseLhsType& lhs, const DenseRhsType& rhs, DenseResType& res, const typename Res::Scalar& alpha) argument
183 res.coeffRef(j,c) = alpha * tmp;
197 static void run(const SparseLhsType& lhs, const DenseRhsType& rhs, DenseResType& res, const typename Res::Scalar& alpha) argument
203 typename Res::Scalar rhs_j = alpha * rhs.coeff(j,c);
219 static void run(const SparseLhsType& lhs, const DenseRhsType& rhs, DenseResType& res, const typename Res::Scalar& alpha) argument
225 res_j += (alpha*it.value()) * rhs.row(it.index());
238 static void run(const SparseLhsType& lhs, const DenseRhsType& rhs, DenseResType& res, const typename Res::Scalar& alpha) argument
244 res.row(it.index()) += (alpha*it.value()) * rhs_j;
250 inline void sparse_time_dense_product(const SparseLhsType& lhs, const DenseRhsType& rhs, DenseResType& res, const AlphaType& alpha) argument
252 sparse_time_dense_product_impl<SparseLhsType,DenseRhsType,DenseResType>::run(lhs, rhs, res, alpha);
[all...]
/external/eigen/blas/
H A Dlevel2_impl.h33 Scalar alpha = *reinterpret_cast<Scalar*>(palpha); local
47 if(*m==0 || *n==0 || (alpha==Scalar(0) && beta==Scalar(1)))
68 func[code](actual_m, actual_n, a, *lda, actual_b, 1, actual_c, 1, alpha);
195 * y := alpha*A*x + beta*y, or y := alpha*A'*x + beta*y,
197 * where alpha and beta are scalars, x and y are vectors and A is an
206 Scalar alpha = *reinterpret_cast<Scalar*>(palpha); local
222 if(*m==0 || *n==0 || (alpha==Scalar(0) && beta==Scalar(1)))
249 vector(actual_y+start,len) += (alpha*actual_x[j]) * mat_coeffs.col(j).segment(offset,len);
251 actual_y[j] += alpha * ( mat_coeff
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DGlideBitmapDrawable.java105 public void setAlpha(int alpha) { argument
107 if (currentAlpha != alpha) {
108 state.setAlpha(alpha);
164 void setAlpha(int alpha) { argument
166 paint.setAlpha(alpha);
/external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
H A DNeuQuant.java94 /* defs for decreasing alpha factor */
95 protected static final int alphabiasshift = 10; /* alpha starts at 1.0 */
236 int radius, rad, alpha, step, delta, samplepixels;
248 alpha = initalpha;
255 radpower[i] = alpha * (((rad * rad - i * i) * radbias) / (rad * rad));
281 altersingle(alpha, j, b, g, r);
293 alpha -= alpha / alphadec;
299 radpower[j] = alpha * (((rad * rad - j * j) * radbias) / (rad * rad));
302 // fprintf(stderr,"finished 1D learning: final alpha
448 altersingle(int alpha, int i, int b, int g, int r) argument
[all...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
H A DTexturePixel.java19 public float intensity, red, green, blue, alpha; field in class:TexturePixel
32 this.alpha = pixel.alpha;
45 this.alpha = colorRGBA.a;
52 * the alpha value
61 this.alpha = a;
75 this.alpha = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
101 this.alpha = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
118 this.alpha = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
128 this.alpha
[all...]

Completed in 1359 milliseconds

1234567891011>>