HomeSort by relevance Sort by last modified time
    Searched full:alpha (Results 101 - 125 of 5075) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_pair_schedule.c 67 /** If the scheduler has paired an RGB and an Alpha instruction together,
68 * PairedInst references the alpha insturction's dependency information.
255 else if (sinst->Instruction->U.P.Alpha.Opcode == RC_OPCODE_NOP)
307 !sinst->Instruction->U.P.Alpha.OutputWriteMask) {
312 Alpha.OutputWriteMask) {
342 sinst->Instruction->U.P.Alpha.Src[src_idx].Used;
498 * but no scalar instruction (alpha).
511 assert(dst_full->Alpha.Opcode == RC_OPCODE_NOP);
522 dst_sub = &dst_full->Alpha;
597 /* This function assumes that rgb.Alpha and alpha.RGB are unused *
    [all...]
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...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_pair_schedule.c 67 /** If the scheduler has paired an RGB and an Alpha instruction together,
68 * PairedInst references the alpha insturction's dependency information.
255 else if (sinst->Instruction->U.P.Alpha.Opcode == RC_OPCODE_NOP)
307 !sinst->Instruction->U.P.Alpha.OutputWriteMask) {
312 Alpha.OutputWriteMask) {
342 sinst->Instruction->U.P.Alpha.Src[src_idx].Used;
498 * but no scalar instruction (alpha).
511 assert(dst_full->Alpha.Opcode == RC_OPCODE_NOP);
522 dst_sub = &dst_full->Alpha;
597 /* This function assumes that rgb.Alpha and alpha.RGB are unused *
    [all...]
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...]
  /external/opencv/cvaux/include/
cvmat.hpp 650 /* (A^t)*alpha */
654 explicit _CvMAT_T_( const CvMAT* a, double alpha );
661 double alpha;
676 /* (A^ta)*(B^tb)*alpha */
681 double alpha, int t_abc );
684 double alpha;
691 /* (A^ta)*(B^tb)*alpha + (C^tc)*beta */
696 explicit _CvMAT_MUL_ADD_( const CvMAT* a, const CvMAT* b, double alpha,
700 double alpha, beta;
723 /* A*alpha + B*beta + gamma *
    [all...]
  /system/core/libpixelflinger/
col32cb16blend.S 24 // This function alpha blends a fixed color into a destination scanline, using
31 // a is the alpha channel of the source color.
42 mov r5, r1, lsr #24 // shift down alpha
45 rsb r5, r5, #256 // invert alpha
61 smlabb r6, r6, r5, r10 // dest red * alpha + src red
62 smlabb r7, r7, r5, r12 // dest green * alpha + src green
63 smlabb r8, r8, r5, r4 // dest blue * alpha + src blue
  /external/eigen/Eigen/src/Core/products/
SelfadjointRank2Update.h 17 /* Optimized selfadjoint matrix += alpha * uv' + conj(alpha)*vu'
27 static void run(Scalar* mat, Index stride, const UType& u, const VType& v, Scalar alpha)
33 (conj(alpha) * conj(u.coeff(i))) * v.tail(size-i)
34 + (alpha * conj(v.coeff(i))) * u.tail(size-i);
42 static void run(Scalar* mat, Index stride, const UType& u, const VType& v, Scalar alpha)
47 (conj(alpha) * conj(u.coeff(i))) * v.head(i+1)
48 + (alpha * conj(v.coeff(i))) * u.head(i+1);
61 ::rankUpdate(const MatrixBase<DerivedU>& u, const MatrixBase<DerivedV>& v, Scalar alpha)
77 Scalar actualAlpha = alpha * UBlasTraits::extractScalarFactor(u.derived()
    [all...]
  /frameworks/base/core/java/android/view/animation/
Transformation.java 30 * Indicates a transformation that has no effect (alpha = 1 and identity matrix.)
34 * Indicates a transformation that applies an alpha only (uses an identity matrix.)
38 * Indicates a transformation that applies a matrix only (alpha = 1.)
42 * Indicates a transformation that applies an alpha and a matrix.
51 * Creates a new transformation with alpha = 1 and the identity matrix.
134 * @param alpha 1.0 means fully opaqe and 0.0 means fully transparent
136 public void setAlpha(float alpha) {
137 mAlpha = alpha;
168 sb.append("{alpha="); sb.append(mAlpha);
178 pw.print("{alpha="); pw.print(mAlpha)
    [all...]
  /frameworks/base/libs/hwui/
Vertex.h 94 * Simple structure to describe a vertex with a position and an alpha value.
97 float alpha; member in struct:android::uirenderer::AlphaVertex
99 static inline void set(AlphaVertex* vertex, float x, float y, float alpha) {
101 vertex[0].alpha = alpha;
107 vertex[0].alpha = src.alpha;
110 static inline void setColor(AlphaVertex* vertex, float alpha) {
111 vertex[0].alpha = alpha;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
ColorMac.mm 58 CGFloat alpha;
59 [c getRed:&redComponent green:&greenComponent blue:&blueComponent alpha:&alpha];
61 return makeRGBA(255 * redComponent, 255 * greenComponent, 255 * blueComponent, 255 * alpha);
75 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, clearColor, ([NSColor colorWithDeviceRed:0 green:0 blue:0 alpha:0]));
79 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, blackColor, ([NSColor colorWithDeviceRed:0 green:0 blue:0 alpha:1]));
83 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, whiteColor, ([NSColor colorWithDeviceRed:1 green:1 blue:1 alpha:1]));
99 alpha:static_cast<CGFloat>(color.alpha()) / 255];
  /external/chromium_org/third_party/skia/include/core/
SkBlitRow.h 17 //! If set, the alpha parameter will be != 255
19 //! If set, the src colors may have alpha != 255
31 @param alpha A global alpha to be applied to all of the src colors
37 int count, U8CPU alpha, int x, int y);
50 @param src array of src 32bit colors (w/ or w/o alpha)
52 @param alpha global alpha to be applied to all src colors
56 int count, U8CPU alpha);
  /external/skia/include/core/
SkBlitRow.h 17 //! If set, the alpha parameter will be != 255
19 //! If set, the src colors may have alpha != 255
31 @param alpha A global alpha to be applied to all of the src colors
37 int count, U8CPU alpha, int x, int y);
50 @param src array of src 32bit colors (w/ or w/o alpha)
52 @param alpha global alpha to be applied to all src colors
56 int count, U8CPU alpha);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarTransitions.java 79 final float alpha = alphaForMode(mode); local
80 setKeyButtonViewQuiescentAlpha(mView.getHomeButton(), alpha, animate); local
81 setKeyButtonViewQuiescentAlpha(mView.getRecentsButton(), alpha, animate); local
82 setKeyButtonViewQuiescentAlpha(mView.getMenuButton(), alpha, animate); local
119 final float alpha = visible ? 1 : 0; local
120 fadeContent(mView.getCameraButton(), alpha); local
121 fadeContent(mView.getSearchLight(), alpha); local
124 private void fadeContent(View v, float alpha) {
126 v.animate().alpha(alpha).setDuration(CONTENT_FADE_DURATION)
    [all...]
  /external/eigen/blas/testing/
dblat3.f 20 * 3 NUMBER OF VALUES OF ALPHA
21 * 0.0 1.0 0.7 VALUES OF ALPHA
135 * Values of ALPHA
138 WRITE( NOUT, FMT = 9997 )'ALPHA', NALMAX
335 9993 FORMAT( ' FOR ALPHA ', 7F6.1 )
386 DOUBLE PRECISION ALPHA, ALS, BETA, BLS, ERR, ERRMAX
485 ALPHA = ALF( IA )
505 ALS = ALPHA
524 $ TRANSA, TRANSB, M, N, K, ALPHA, LDA, LDB,
528 CALL DGEMM( TRANSA, TRANSB, M, N, K, ALPHA,
    [all...]
sblat3.f 20 * 3 NUMBER OF VALUES OF ALPHA
21 * 0.0 1.0 0.7 VALUES OF ALPHA
135 * Values of ALPHA
138 WRITE( NOUT, FMT = 9997 )'ALPHA', NALMAX
335 9993 FORMAT( ' FOR ALPHA ', 7F6.1 )
386 REAL ALPHA, ALS, BETA, BLS, ERR, ERRMAX
485 ALPHA = ALF( IA )
505 ALS = ALPHA
524 $ TRANSA, TRANSB, M, N, K, ALPHA, LDA, LDB,
528 CALL SGEMM( TRANSA, TRANSB, M, N, K, ALPHA,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DeviceOrientationData.cpp 37 PassRefPtr<DeviceOrientationData> DeviceOrientationData::create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma, bool canProvideAbsolute, bool absolute)
39 return adoptRef(new DeviceOrientationData(canProvideAlpha, alpha, canProvideBeta, beta, canProvideGamma, gamma, canProvideAbsolute, absolute));
44 return DeviceOrientationData::create(data.hasAlpha, data.alpha, data.hasBeta, data.beta, data.hasGamma, data.gamma, data.hasAbsolute, data.absolute);
59 DeviceOrientationData::DeviceOrientationData(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma, bool canProvideAbsolute, bool absolute)
64 , m_alpha(alpha)
71 double DeviceOrientationData::alpha() const function in class:WebCore::DeviceOrientationData
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.traits/
lookup_classname.pass.cpp 58 test("alpha", std::ctype_base::alpha);
59 test("Alpha", std::ctype_base::alpha);
60 test("alpha", std::ctype_base::alpha, true);
61 test("Alpha", std::ctype_base::alpha, true);
90 test("lower", std::ctype_base::lower | std::ctype_base::alpha, true);
91 test("Lower", std::ctype_base::lower | std::ctype_base::alpha, true)
    [all...]
  /external/eigen/blas/
level3_impl.h 38 Scalar alpha = *reinterpret_cast<Scalar*>(palpha); local
62 func[code](*m, *n, *k, a, *lda, b, *ldb, c, *ldc, alpha, blocking, 0);
116 Scalar alpha = *reinterpret_cast<Scalar*>(palpha); local
143 if(alpha!=Scalar(1))
144 matrix(b,*m,*n,*ldb) *= alpha;
150 // b = alpha*op(a)*b for side = 'L'or'l'
151 // b = alpha*b*op(a) for side = 'R'or'r'
200 Scalar alpha = *reinterpret_cast<Scalar*>(palpha); local
226 func[code](*m, *n, *m, a, *lda, tmp.data(), tmp.outerStride(), b, *ldb, alpha, blocking);
231 func[code](*m, *n, *n, tmp.data(), tmp.outerStride(), a, *lda, b, *ldb, alpha, blocking)
244 Scalar alpha = *reinterpret_cast<Scalar*>(palpha); local
330 Scalar alpha = *reinterpret_cast<Scalar*>(palpha); local
384 Scalar alpha = *reinterpret_cast<Scalar*>(palpha); local
449 Scalar alpha = *reinterpret_cast<Scalar*>(palpha); local
521 RealScalar alpha = *palpha; local
569 Scalar alpha = *reinterpret_cast<Scalar*>(palpha); local
    [all...]
dspr2.f 1 SUBROUTINE DSPR2(UPLO,N,ALPHA,X,INCX,Y,INCY,AP)
3 DOUBLE PRECISION ALPHA
16 * A := alpha*x*y' + alpha*y*x' + A,
18 * where alpha is a scalar, x and y are n element vectors and A is an
42 * ALPHA - DOUBLE PRECISION.
43 * On entry, ALPHA specifies the scalar alpha.
133 IF ((N.EQ.0) .OR. (ALPHA.EQ.ZERO)) RETURN
164 TEMP1 = ALPHA*Y(J
    [all...]
sspr2.f 1 SUBROUTINE SSPR2(UPLO,N,ALPHA,X,INCX,Y,INCY,AP)
3 REAL ALPHA
16 * A := alpha*x*y' + alpha*y*x' + A,
18 * where alpha is a scalar, x and y are n element vectors and A is an
42 * ALPHA - REAL .
43 * On entry, ALPHA specifies the scalar alpha.
133 IF ((N.EQ.0) .OR. (ALPHA.EQ.ZERO)) RETURN
164 TEMP1 = ALPHA*Y(J
    [all...]
level1_impl.h 16 Scalar alpha = *reinterpret_cast<Scalar*>(palpha); local
20 if(*incx==1 && *incy==1) vector(y,*n) += alpha * vector(x,*n);
21 else if(*incx>0 && *incy>0) vector(y,*n,*incy) += alpha * vector(x,*n,*incx);
22 else if(*incx>0 && *incy<0) vector(y,*n,-*incy).reverse() += alpha * vector(x,*n,*incx);
23 else if(*incx<0 && *incy>0) vector(y,*n,*incy) += alpha * vector(x,*n,-*incx).reverse();
24 else if(*incx<0 && *incy<0) vector(y,*n,-*incy).reverse() += alpha * vector(x,*n,-*incx).reverse();
109 Scalar alpha; local
121 alpha = a/internal::abs(a);
123 *s = alpha*internal::conj(b)/norm;
124 a = alpha*norm
141 Scalar alpha = *reinterpret_cast<Scalar*>(palpha); local
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkBlitRow_D32.cpp 19 int count, U8CPU alpha) {
20 SkASSERT(255 == alpha);
26 int count, U8CPU alpha) {
27 SkASSERT(alpha <= 255);
29 unsigned src_scale = SkAlpha255To256(alpha);
58 int count, U8CPU alpha) {
59 SkASSERT(255 == alpha);
87 int count, U8CPU alpha) {
88 SkASSERT(alpha <= 255);
92 *dst = SkBlendARGB32(*(src++), *dst, alpha);
    [all...]
  /external/skia/src/core/
SkBlitRow_D32.cpp 19 int count, U8CPU alpha) {
20 SkASSERT(255 == alpha);
26 int count, U8CPU alpha) {
27 SkASSERT(alpha <= 255);
29 unsigned src_scale = SkAlpha255To256(alpha);
58 int count, U8CPU alpha) {
59 SkASSERT(255 == alpha);
87 int count, U8CPU alpha) {
88 SkASSERT(alpha <= 255);
92 *dst = SkBlendARGB32(*(src++), *dst, alpha);
    [all...]
  /external/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...]
  /ndk/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 2724 milliseconds

1 2 3 45 6 7 8 91011>>