HomeSort by relevance Sort by last modified time
    Searched full:alpha (Results 251 - 275 of 7977) sorted by null

<<11121314151617181920>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
GammaDistribution.java 34 * Modify the shape parameter, alpha.
35 * @param alpha the new shape parameter.
39 void setAlpha(double alpha);
42 * Access the shape parameter, alpha
43 * @return alpha.
BetaDistributionImpl.java 51 private double alpha; field in class:BetaDistributionImpl
57 * updated whenever alpha or beta are changed.
66 * @param alpha first shape parameter (must be positive)
72 public BetaDistributionImpl(double alpha, double beta, double inverseCumAccuracy) {
73 this.alpha = alpha;
81 * @param alpha first shape parameter (must be positive)
84 public BetaDistributionImpl(double alpha, double beta) {
85 this(alpha, beta, DEFAULT_INVERSE_ABSOLUTE_ACCURACY);
92 public void setAlpha(double alpha) {
    [all...]
  /external/llvm/test/MC/ARM/
thumb_set-diagnostics.s 44 .type alpha,%function
45 alpha: label
52 .thumb_set beta, alpha
55 @ CHECK: .thumb_set beta, alpha
65 variable_result = alpha + 1
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
ScrimController.java 215 public void setDozeInFrontAlpha(float alpha) {
216 mDozeInFrontAlpha = alpha;
220 public void setDozeBehindAlpha(float alpha) {
221 mDozeBehindAlpha = alpha;
308 private void setScrimBehindColor(float alpha) {
309 setScrimColor(mScrimBehind, alpha);
312 private void setScrimInFrontColor(float alpha) {
313 setScrimColor(mScrimInFront, alpha);
314 if (alpha == 0f) {
323 private void setScrimColor(View scrim, float alpha) {
353 float alpha = 1 - (1 - alpha1) * (1 - alpha2); local
535 float alpha; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
langtagRegex.txt 14 $alpha = [a-z] ; # ALPHA
16 $alphanum = [a-z 0-9] ; # ALPHA / DIGIT
24 $language = $alpha{2,8} | $alpha{2,3} $s $alpha{3};
26 # ABNF (2*3ALPHA) / 4ALPHA / 5*8ALPHA --- note: because of how | works in regex, don't use $alpha{2,3} | $alpha{4,8}
    [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
langtagRegex.txt 14 $alpha = [a-z] ; # ALPHA
16 $alphanum = [a-z 0-9] ; # ALPHA / DIGIT
24 $language = $alpha{2,8} | $alpha{2,3} $s $alpha{3};
26 # ABNF (2*3ALPHA) / 4ALPHA / 5*8ALPHA --- note: because of how | works in regex, don't use $alpha{2,3} | $alpha{4,8}
    [all...]
  /external/iproute2/tc/
q_pie.c 35 fprintf(stderr, " [ tupdate TIME us][ alpha ALPHA ]");
50 unsigned int alpha = 0; local
75 } else if (strcmp(*argv, "alpha") == 0) {
77 if (get_unsigned(&alpha, *argv, 0) ||
78 (alpha > ALPHA_MAX) || (alpha < ALPHA_MIN)) {
79 fprintf(stderr, "Illegal \"alpha\"\n");
117 if (alpha)
118 addattr_l(n, 1024, TCA_PIE_ALPHA, &alpha, sizeof(alpha))
137 unsigned int alpha; local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/doc/
c-alpha.texi 8 @node Alpha-Dependent
9 @chapter Alpha Dependent Features
14 @chapter Alpha Dependent Features
17 @cindex Alpha support
19 * Alpha Notes:: Notes
20 * Alpha Options:: Options
21 * Alpha Syntax:: Syntax
22 * Alpha Floating Point:: Floating Point
23 * Alpha Directives:: Alpha Machine Directive
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
DimLayer.java 157 private void setAlpha(float alpha) {
158 if (mAlpha == alpha) {
161 mAlpha = alpha;
162 adjustAlpha(alpha);
165 private void adjustAlpha(float alpha) {
166 if (DEBUG_DIM_LAYER) Slog.v(TAG, "setAlpha alpha=" + alpha);
169 mDimSurface.setAlpha(alpha);
171 if (alpha == 0 && mShowing) {
177 } else if (alpha > 0 && !mShowing)
343 float alpha = mStartAlpha + alphaDelta * (curTime - mStartTime) \/ mDuration; local
    [all...]
  /external/cblas/src/
cblas_cgemv.c 14 const void *alpha, const void *A, const int lda,
36 float ALPHA[2],BETA[2];
61 F77_cgemv(F77_TA, &F77_M, &F77_N, alpha, A, &F77_lda, X, &F77_incX,
72 ALPHA[0]= *( (const float *) alpha );
73 ALPHA[1]= -( *( (const float *) alpha+1) );
138 F77_cgemv(F77_TA, &F77_N, &F77_M, ALPHA, A, &F77_lda, stx,
141 F77_cgemv(F77_TA, &F77_N, &F77_M, alpha, A, &F77_lda, x,
  /frameworks/base/libs/hwui/
Vertex.h 81 * sRGB color with alpha. The color is stored pre-multiplied in linear space.
99 * Simple structure to describe a vertex with a position and an alpha value.
103 float alpha; member in struct:android::uirenderer::AlphaVertex
105 static inline void set(AlphaVertex* vertex, float x, float y, float alpha) {
106 *vertex = { x, y, alpha };
111 AlphaVertex::set(vertex, src.x + x, src.y + y, src.alpha);
114 static inline void setColor(AlphaVertex* vertex, float alpha) {
115 vertex[0].alpha = alpha;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_pair_translate.c 133 unsigned int * alpha)
141 *alpha = 1;
170 pair->Alpha.Opcode = inst->Opcode;
172 pair->Alpha.Saturate = 1;
182 * pair->{RGB,ALPHA}.Src[RC_PAIR_PRESUB_SRC] */
193 unsigned int alpha = 0; local
194 src_uses(inst->SrcReg[j], &rgb, &alpha);
202 if(alpha) {
203 pair->Alpha.Src[i].File =
205 pair->Alpha.Src[i].Index
    [all...]
  /prebuilts/go/darwin-x86/src/image/color/
color.go 8 // Color can convert itself to alpha-premultiplied 16-bits per channel RGBA.
11 // RGBA returns the alpha-premultiplied red, green, blue and alpha values
16 // An alpha-premultiplied color component c has been scaled by alpha (a),
21 // RGBA represents a traditional 32-bit alpha-premultiplied color, having 8
22 // bits for each of red, green, blue and alpha.
24 // An alpha-premultiplied color component C has been scaled by alpha (A), so
42 // RGBA64 represents a 64-bit alpha-premultiplied color, having 16 bits fo
    [all...]
  /prebuilts/go/linux-x86/src/image/color/
color.go 8 // Color can convert itself to alpha-premultiplied 16-bits per channel RGBA.
11 // RGBA returns the alpha-premultiplied red, green, blue and alpha values
16 // An alpha-premultiplied color component c has been scaled by alpha (a),
21 // RGBA represents a traditional 32-bit alpha-premultiplied color, having 8
22 // bits for each of red, green, blue and alpha.
24 // An alpha-premultiplied color component C has been scaled by alpha (A), so
42 // RGBA64 represents a 64-bit alpha-premultiplied color, having 16 bits fo
    [all...]
  /external/eigen/blas/testing/
dblat3.f 36 *> 3 NUMBER OF VALUES OF ALPHA
37 *> 0.0 1.0 0.7 VALUES OF ALPHA
181 * Values of ALPHA
184 WRITE( NOUT, FMT = 9997 )'ALPHA', NALMAX
374 9993 FORMAT( ' FOR ALPHA ', 7F6.1 )
425 DOUBLE PRECISION ALPHA, ALS, BETA, BLS, ERR, ERRMAX
524 ALPHA = ALF( IA )
544 ALS = ALPHA
563 $ TRANSA, TRANSB, M, N, K, ALPHA, LDA, LDB,
567 CALL DGEMM( TRANSA, TRANSB, M, N, K, ALPHA,
    [all...]
sblat3.f 36 *> 3 NUMBER OF VALUES OF ALPHA
37 *> 0.0 1.0 0.7 VALUES OF ALPHA
181 * Values of ALPHA
184 WRITE( NOUT, FMT = 9997 )'ALPHA', NALMAX
374 9993 FORMAT( ' FOR ALPHA ', 7F6.1 )
425 REAL ALPHA, ALS, BETA, BLS, ERR, ERRMAX
524 ALPHA = ALF( IA )
544 ALS = ALPHA
563 $ TRANSA, TRANSB, M, N, K, ALPHA, LDA, LDB,
567 CALL SGEMM( TRANSA, TRANSB, M, N, K, ALPHA,
    [all...]
  /external/libcxx/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
mask.pass.cpp 32 // kinds. This means that the mask for alpha is (_U | _L), which
36 // positives for characters that are both 'upper' and 'alpha', but
42 assert( wf.is(WF::alpha, L'A'));
43 assert( cf.is(CF::alpha, 'A'));
49 assert( wf.is(WF::alpha, L'a'));
50 assert( cf.is(CF::alpha, 'a'));
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/graphics/
ColorFilterCache.java 23 * Cache of {@link ColorFilter}s for a given color at different alpha levels.
34 * alpha channel is ignored in color. Subsequent calls to this method
38 * @return A cache of ColorFilters at different alpha levels for the color.
62 * Returns a ColorFilter for a given alpha level between 0 and 1.0.
64 * @param level The alpha level the filter should apply.
65 * @return A ColorFilter at the alpha level for the color represented by the
  /frameworks/support/v7/mediarouter/src/android/support/v7/app/
MediaRouteVolumeSlider.java 28 * Volume slider with showing, hiding, and applying alpha supports to the thumb.
55 int alpha = isEnabled() ? 0xFF : (int) (0xFF * mDisabledAlpha); local
58 // state. Apply the color filter and alpha on every state change.
60 mThumb.setAlpha(alpha);
63 getProgressDrawable().setAlpha(alpha);
94 if (Color.alpha(color) != 0xFF) {
  /prebuilts/gradle-plugin/com/android/tools/analytics-library/tracker/25.5.0-alpha-preview-01/
tracker-25.5.0-alpha-preview-01.pom 7 <version>25.5.0-alpha-preview-01</version>
32 <version>25.5.0-alpha-preview-01</version>
38 <version>25.5.0-alpha-preview-01</version>
44 <version>25.5.0-alpha-preview-01</version>
50 <version>25.5.0-alpha-preview-01</version>
68 <version>25.5.0-alpha-preview-01</version>
  /prebuilts/gradle-plugin/com/android/tools/monkeyrunner/25.5.0-alpha-preview-01/
monkeyrunner-25.5.0-alpha-preview-01.pom 7 <version>25.5.0-alpha-preview-01</version>
36 <version>25.5.0-alpha-preview-01</version>
42 <version>25.5.0-alpha-preview-01</version>
48 <version>25.5.0-alpha-preview-01</version>
54 <version>25.5.0-alpha-preview-01</version>
60 <version>25.5.0-alpha-preview-01</version>
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/localization/locale.categories/category.ctype/locale.ctype.byname/
mask.pass.cpp 32 // kinds. This means that the mask for alpha is (_U | _L), which
36 // positives for characters that are both 'upper' and 'alpha', but
42 assert( wf.is(WF::alpha, L'A'));
43 assert( cf.is(CF::alpha, 'A'));
49 assert( wf.is(WF::alpha, L'a'));
50 assert( cf.is(CF::alpha, 'a'));
  /external/eigen/blas/
level1_impl.h 16 Scalar alpha = *reinterpret_cast<const Scalar*>(palpha); local
20 if(*incx==1 && *incy==1) make_vector(y,*n) += alpha * make_vector(x,*n);
21 else if(*incx>0 && *incy>0) make_vector(y,*n,*incy) += alpha * make_vector(x,*n,*incx);
22 else if(*incx>0 && *incy<0) make_vector(y,*n,-*incy).reverse() += alpha * make_vector(x,*n,*incx);
23 else if(*incx<0 && *incy>0) make_vector(y,*n,*incy) += alpha * make_vector(x,*n,-*incx).reverse();
24 else if(*incx<0 && *incy<0) make_vector(y,*n,-*incy).reverse() += alpha * make_vector(x,*n,-*incx).reverse();
112 Scalar alpha; local
124 alpha = a/abs(a);
126 *s = alpha*numext::conj(b)/norm;
127 a = alpha*norm
144 Scalar alpha = *reinterpret_cast<Scalar*>(palpha); local
    [all...]
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.5.0-alpha-preview-01/
builder-2.5.0-alpha-preview-01.pom 7 <version>2.5.0-alpha-preview-01</version>
32 <version>2.5.0-alpha-preview-01</version>
38 <version>2.5.0-alpha-preview-01</version>
44 <version>25.5.0-alpha-preview-01</version>
50 <version>25.5.0-alpha-preview-01</version>
56 <version>25.5.0-alpha-preview-01</version>
62 <version>25.5.0-alpha-preview-01</version>
68 <version>25.5.0-alpha-preview-01</version>
86 <version>25.5.0-alpha-preview-01</version>
92 <version>25.5.0-alpha-preview-01</version
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/src/
ctype.cpp 111 ctype_base::mask(alpha | print | upper | xdigit) /* A */,
112 ctype_base::mask(alpha | print | upper | xdigit) /* B */,
113 ctype_base::mask(alpha | print | upper | xdigit) /* C */,
114 ctype_base::mask(alpha | print | upper | xdigit) /* D */,
115 ctype_base::mask(alpha | print | upper | xdigit) /* E */,
116 ctype_base::mask(alpha | print | upper | xdigit) /* F */,
117 ctype_base::mask(alpha | print | upper) /* G */,
118 ctype_base::mask(alpha | print | upper) /* H */,
119 ctype_base::mask(alpha | print | upper) /* I */,
120 ctype_base::mask(alpha | print | upper) /* J */
    [all...]

Completed in 544 milliseconds

<<11121314151617181920>>