/external/clang/test/Sema/ |
shift.c | 56 #define ashift 8 macro 57 enum { b = (a << ashift) };
|
/external/qemu/android/skin/ |
scaler.c | 163 uint32_t ashift = dst_surface->format->Ashift; local 176 ((a << ashift) & amask);
|
/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_PixelFormat.3 | 12 Uint8 Rshift, Gshift, Bshift, Ashift; 126 temp=temp>>fmt->Ashift;/* Shift it down to 8-bit */
|
/external/speex/libspeex/ |
lpc_bfin.h | 101 "A0 = ASHIFT A0 by R4.L;\n\t" 102 "A1 = ASHIFT A1 by R4.L;\n\t"
|
filters_bfin.h | 71 "R1 = ASHIFT R0 by %2.L || R0 = [I0++];\n\t" 74 "R1 = ASHIFT R0 by %2.L;\n\t"
|
/libcore/luni/src/main/java/java/util/concurrent/ |
Exchanger.java | 229 * in the arena. 1 << ASHIFT should be at least cacheline size. 231 private static final int ASHIFT = 7; 236 * than (1<<(31-ASHIFT)). The cap of 255 (0xff) more than suffices 339 Node q = (Node)U.getObjectVolatile(a, j = (i << ASHIFT) + ABASE); 446 arena = new Node[(FULL + 2) << ASHIFT]; 628 ABASE = U.arrayBaseOffset(ak) + (1 << ASHIFT); 633 if ((s & (s-1)) != 0 || s > (1 << ASHIFT))
|
ForkJoinPool.java | [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/ |
SDL_blit.h | 273 a = ((Pixel&fmt->Amask)>>fmt->Ashift)<<fmt->Aloss; \ 280 a = (Pixel&fmt->Amask)>>fmt->Ashift; \ 339 ((a>>fmt->Aloss)<<fmt->Ashift) | (1<<15); \ 347 ((a>>fmt->Aloss)<<fmt->Ashift); \
|
SDL_pixels.c | 81 format->Ashift = 0; 85 ++format->Ashift; 115 format->Ashift = 0; 201 a=(i&Amask)>>format->Ashift; 363 | ((a >> format->Aloss) << format->Ashift & format->Amask); 390 v = (pixel & fmt->Amask) >> fmt->Ashift;
|
SDL_blit_A.c | 391 : : "rm" ((Uint32) sf->Ashift) ); /* Ashift -> mm5 */ 607 Uint32 ashift = sf->Ashift; local 613 multmask = ~(0xFFFFi64 << (ashift * 2)); 632 mm_alpha = _mm_srli_si64(mm_alpha, ashift); /* mm_alpha >> ashift -> mm_alpha(0000000A) */ 763 amask = ((srcfmt->Amask) ? RESHIFT(srcfmt->Ashift) : 0x10) << (dstfmt->Ashift); 1707 Uint32 ashift = sf->Ashift; local [all...] |
SDL_RLEaccel.c | 1007 Uint8 Ashift; [all...] |
SDL_blit_N.c | 84 ((a<<dstfmt->Ashift)&dstfmt->Amask) ) 139 amask = ((srcfmt->Amask) ? RESHIFT(srcfmt->Ashift) : 0x10) << (dstfmt->Ashift); [all...] |
/external/qemu/distrib/sdl-1.2.15/docs/html/ |
sdlpixelformat.html | 98 Uint8 Rshift, Gshift, Bshift, Ashift; 431 temp=temp>>fmt->Ashift;/* Shift it down to 8-bit */
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/ |
TexImageTransform.java | 251 int amask, int ashift, 265 int a = (x & amask) >>> ashift;
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/ |
radeon_texstate.c | 308 GLuint Ashift = texUnit->_CurrentCombine->ScaleShiftA; 473 Ashift = RGBshift; 589 alpha_combine |= (Ashift << RADEON_SCALE_SHIFT); [all...] |
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_texstate.c | 308 GLuint Ashift = texUnit->_CurrentCombine->ScaleShiftA; 473 Ashift = RGBshift; 589 alpha_combine |= (Ashift << RADEON_SCALE_SHIFT); [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/picogui/ |
SDL_pgvideo.c | 256 current->format->Ashift = this->hidden->shm.alpha_shift;
|
/external/qemu/include/ui/ |
console.h | 132 uint8_t rshift, gshift, bshift, ashift; member in struct:PixelFormat
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/ |
r200_texstate.c | 352 GLuint Ashift = texUnit->_CurrentCombine->ScaleShiftA; 701 Ashift = RGBshift; 708 alpha_scale |= (Ashift << R200_TXA_SCALE_SHIFT); [all...] |
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_texstate.c | 352 GLuint Ashift = texUnit->_CurrentCombine->ScaleShiftA; 701 Ashift = RGBshift; 708 alpha_scale |= (Ashift << R200_TXA_SCALE_SHIFT); [all...] |
/external/qemu/distrib/sdl-1.2.15/test/ |
testblitspeed.c | 103 (int) surface->format->Ashift,
|
testoverlay.c | 508 format.Ashift=0;
|
testoverlay2.c | 453 format.Ashift=0;
|
/external/libyuv/files/source/ |
row_common.cc | 451 int ashift, int rshift, int gshift, int bshift) { 459 (255u << ashift); [all...] |
/external/qemu/ui/ |
console.c | [all...] |