HomeSort by relevance Sort by last modified time
    Searched refs:ALPHA (Results 1 - 25 of 70) sorted by null

1 2 3

  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/parser/
AddressListParserConstants.java 23 int ALPHA = 11;
51 "<ALPHA>",
  /external/nist-sip/java/gov/nist/core/
LexerCore.java 49 public static final int ALPHA = END + 3;
188 tok.tokenType = ALPHA;
248 } else if (tok == ALPHA) {
250 throw new ParseException(buffer + "\nExpecting ALPHA", ptr);
  /external/strace/strace/linux/sparc/
gen.pl 2 open ALPHA, "../alpha/syscallent.h" || die "no puedo abrir el de la alpha";
12 while (<ALPHA>){
syscall.h.2 88 #ifndef ALPHA
107 #endif /* !ALPHA */
115 #ifndef ALPHA
130 #endif /* ALPHA */
132 #ifdef ALPHA
  /external/strace/linux/
syscall.h 118 #ifdef ALPHA
133 # elif defined ALPHA
158 #if !defined(ALPHA) && !defined(MIPS) && !defined(HPPA)
205 #endif /* !(ALPHA || MIPS || HPPA) */
213 #if !defined(ALPHA) && !defined(MIPS) && !defined(SPARC) && !defined(HPPA)
252 #endif /* !(ALPHA || MIPS || SPARC || HPPA) */
275 #if defined(ALPHA) || defined(IA64)
279 #ifdef ALPHA
  /external/strace/strace/linux/
syscall.h 118 #ifdef ALPHA
133 # elif defined ALPHA
158 #if !defined(ALPHA) && !defined(MIPS) && !defined(HPPA)
205 #endif /* !(ALPHA || MIPS || HPPA) */
213 #if !defined(ALPHA) && !defined(MIPS) && !defined(SPARC) && !defined(HPPA)
252 #endif /* !(ALPHA || MIPS || SPARC || HPPA) */
275 #if defined(ALPHA) || defined(IA64)
279 #ifdef ALPHA
  /frameworks/base/graphics/java/android/renderscript/
ProgramFragmentFixedFunction.java 106 ALPHA (1),
151 case ALPHA:
167 case ALPHA:
  /frameworks/base/include/ui/
PixelFormat.h 50 // System chooses a format that supports translucency (many alpha bits)
54 // (at least 1 alpha bit)
57 // System chooses an opaque format (no alpha bits required)
89 ALPHA = 1,
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
qpisf_2s.cpp 96 #define ALPHA 29491 /* 0. 9 in Q15 */
97 #define ONE_ALPHA (32768-ALPHA) /* (1.0 - ALPHA) in Q15 */
203 isf_q[i] = add_int16(mult_int16(ALPHA, isfold[i]), mult_int16(ONE_ALPHA, ref_isf[i]));
298 isf_q[i] = add_int16(mult_int16(ALPHA, isfold[i]), mult_int16(ONE_ALPHA, ref_isf[i]));
  /external/strace/
time.c 62 #ifdef ALPHA
130 #ifdef ALPHA
165 #ifdef ALPHA
225 #ifdef ALPHA
268 #ifdef ALPHA
304 #ifdef ALPHA
ioctl.c 120 #if defined(ALPHA) || defined(POWERPC)
122 #else /* !ALPHA */
124 #endif /* !ALPHA */
defs.h 91 # if defined(ALPHA)
152 #ifdef ALPHA
158 #endif /* ALPHA */
325 # if defined(ALPHA) || defined(SPARC) || defined(SPARC64) || defined(POWERPC) || defined(IA64) || defined(HPPA) || defined(SH) || defined(SH64) || defined(S390) || defined(S390X) || defined(ARM)
334 # ifdef ALPHA
346 # endif /* ALPHA et al */
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java 131 private static final int ALPHA = 0x0200;
591 * This method will cause the View's <code>alpha</code> property to be animated to the
598 public ViewPropertyAnimator alpha(float value) { method in class:ViewPropertyAnimator
599 animateProperty(ALPHA, value);
604 * This method will cause the View's <code>alpha</code> property to be animated by the
612 animatePropertyBy(ALPHA, value);
754 case ALPHA:
787 case ALPHA:
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TokenTypes.java 170 public static final int ALPHA = LexerCore.ALPHA;
  /frameworks/base/media/libstagefright/codecs/amrnb/dec/src/
d_plsf_3.cpp 132 #define ALPHA 29491 /* ALPHA -> 0.9 */
133 #define ONE_ALPHA 3277 /* ONE_ALPHA-> (1.0-ALPHA) */
185 /* lsfi_q[i] = ALPHA*past_lsf_q[i] + ONE_ALPHA*mean_lsf[i]; */
189 ALPHA,
d_plsf_5.cpp 89 /* ALPHA -> 0.95 */
90 /* ONE_ALPHA-> (1.0-ALPHA) */
91 #define ALPHA 31128
184 // lsfi_q[i] = ALPHA*st->past_lsf_q[i] + ONE_ALPHA*mean_lsf[i];
186 lsf1_q[i] = add (mult (st->past_lsf_q[i], ALPHA),
329 * lsfi_q[i] = ALPHA*st->past_lsf_q[i] +
336 ALPHA,
  /external/mesa3d/include/pixelflinger2/
pixelflinger2_format.h 94 ALPHA = GGL_INDEX_ALPHA,
115 uint8_t ah; // alpha high bit position + 1
116 uint8_t al; // alpha low bit position
  /system/core/include/pixelflinger/
format.h 88 ALPHA = GGL_INDEX_ALPHA,
109 uint8_t ah; // alpha high bit position + 1
110 uint8_t al; // alpha low bit position
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_RLEaccel.c 25 * RLE encoding for software colorkey and alpha-channel acceleration
30 * decoder. Added per-surface alpha blitter. Added per-pixel alpha
49 * binary transparency and for per-surface alpha blending, and for surfaces
50 * with per-pixel alpha. The details differ, however:
62 * Encoding of surfaces with per-pixel alpha:
69 * partially transparent (translucent) pixels (where 1 <= alpha <= 254),
73 * the alpha value occupying the highest 8 bits. The <skip> and <run>
78 * and the hole filled with the 5 most significant bits of the alpha value.
120 * Various colorkey blit methods, for opaque and per-surface alpha
846 unsigned alpha; local
1292 unsigned alpha = dfmt->Amask ? 255 : 0; local
    [all...]
  /frameworks/base/core/java/android/widget/
Scroller.java 66 private static float ALPHA = 800; // pixels / seconds
395 final double l = Math.log(START_TENSION * velocity / ALPHA);
405 (int) (ALPHA * Math.exp(DECELERATION_RATE / (DECELERATION_RATE - 1.0) * l));
  /frameworks/base/services/camera/libcameraservice/
FakeCamera.cpp 120 * (ALPHA*R2) >> SHIFT1 == R*kYr => ALPHA = kYr*8*(1 << SHIFT1)
122 * ALPHA = kYr*(1 << (SHIFT1+3))
127 static const int ALPHA = (int)( kYr*(1 << (SHIFT1+3)) + 0.5 );
238 temp = (BETA*(pixels & 0x001F) + ALPHA*(pixels>>11) );
246 temp = (BETA*(pixels & 0x001F) + ALPHA*(pixels>>11) );
  /system/core/libpixelflinger/codeflinger/
GGLAssembler.cpp 122 if (!mCbFormat.c[GGLFormat::ALPHA].h) {
159 int fs = i==GGLFormat::ALPHA ? mBlendSrcA : mBlendSrc;
160 int fd = i==GGLFormat::ALPHA ? mBlendDstA : mBlendDst;
161 if (fs==GGL_SRC_ALPHA_SATURATE && i==GGLFormat::ALPHA)
170 info.needed = (i==GGLFormat::ALPHA) &&
175 info.fog = mFog && info.inDest && (i != GGLFormat::ALPHA);
215 // XXX: could we do an early alpha-test here in some cases?
216 // It would probaly be used only with smooth-alpha and no texture
217 // (or no alpha component in the texture).
224 // it might be killed by the alpha-test late
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ProgramFragmentFixedFunctionTest.java 99 assertEquals(Builder.Format.ALPHA, Builder.Format.valueOf("ALPHA"));
  /frameworks/base/libs/ui/
PixelFormat.cpp 90 COMPONENT(ALPHA)
  /frameworks/base/media/libstagefright/codecs/amrwbenc/src/
qpisf_2s.c 34 #define ALPHA 29491 /* 0. 9 in Q15 */
35 #define ONE_ALPHA (32768-ALPHA) /* (1.0 - ALPHA) in Q15 */
296 isf_q[i] = add1(vo_mult(ALPHA, isfold[i]), vo_mult(ONE_ALPHA, ref_isf[i]));
390 isf_q[i] = add1(vo_mult(ALPHA, isfold[i]), vo_mult(ONE_ALPHA, ref_isf[i]));

Completed in 502 milliseconds

1 2 3