HomeSort by relevance Sort by last modified time
    Searched full:ashift (Results 1 - 25 of 40) sorted by null

1 2

  /external/clang/test/Sema/
shift.c 56 #define ashift 8 macro
57 enum { b = (a << ashift) };
  /external/webkit/Source/WebKit/android/plugins/
ANPBitmapInterface.cpp 35 packing->AShift = SK_A32_SHIFT;
47 packing->AShift = 0;
  /external/qemu/android/skin/
scaler.c 163 uint32_t ashift = dst_surface->format->Ashift; local
176 ((a << ashift) & amask);
  /libcore/luni/src/main/java/java/util/concurrent/
ForkJoinWorkerThread.java 412 return UNSAFE.compareAndSwapObject(q, (i << ASHIFT) + ABASE, t, null);
422 UNSAFE.putObjectVolatile(q, (i << ASHIFT) + ABASE, t);
435 long u = (((s = queueTop) & (m = q.length - 1)) << ASHIFT) + ABASE;
463 long u = ((b & oldMask) << ASHIFT) + ABASE;
467 (q, ((b & mask) << ASHIFT) + ABASE, x);
485 UNSAFE.compareAndSwapObject(q, (i << ASHIFT) + ABASE, t, null)) {
505 UNSAFE.compareAndSwapObject(q, (i << ASHIFT) + ABASE,
525 long u = (i << ASHIFT) + ABASE; // raw offset
549 (q, (((q.length - 1) & --s) << ASHIFT) + ABASE, t, null)) {
723 (q, (i << ASHIFT) + ABASE, t, null))
    [all...]
ForkJoinPool.java 730 long u = (i << ASHIFT) + ABASE
    [all...]
  /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"
  /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&#62;&#62;fmt-&#62;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 222 int amask, int ashift,
236 int a = (x & amask) >>> ashift;
  /external/qemu/
console.h 132 uint8_t rshift, gshift, bshift, ashift; member in struct:PixelFormat
console.c     [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/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/distrib/sdl-1.2.15/src/video/os2fslib/
SDL_os2fslib.c     [all...]
  /external/qemu/hw/
goldfish_fb.c 178 pf->abits, pf->amask, pf->ashift, pf->amax);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
rtl.def 465 DEF_RTL_EXPR(ASHIFT, "ashift", "ee", RTX_BIN_ARITH) /* shift left */
    [all...]

Completed in 841 milliseconds

1 2