/external/webp/src/dec/ |
D | yuv.h | 67 uint8_t* const argb) { in VP8YuvToArgbKeepA() argument 69 VP8YuvToRgb(y, u, v, argb + 1); in VP8YuvToArgbKeepA() 73 uint8_t* const argb) { in VP8YuvToArgb() argument 74 argb[0] = 0xff; in VP8YuvToArgb() 75 VP8YuvToArgbKeepA(y, u, v, argb); in VP8YuvToArgb() 79 uint8_t* const argb) { in VP8YuvToRgba4444KeepA() argument 84 argb[1] = ((VP8kClip4Bits[y + r_off - YUV_RANGE_MIN] << 4) | in VP8YuvToRgba4444KeepA() 86 argb[0] = (argb[0] & 0x0f) | (VP8kClip4Bits[y + b_off - YUV_RANGE_MIN] << 4); in VP8YuvToRgba4444KeepA() 88 argb[0] = ((VP8kClip4Bits[y + r_off - YUV_RANGE_MIN] << 4) | in VP8YuvToRgba4444KeepA() 90 argb[1] = (argb[1] & 0x0f) | (VP8kClip4Bits[y + b_off - YUV_RANGE_MIN] << 4); in VP8YuvToRgba4444KeepA() [all …]
|
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/ |
D | RGB565.java | 41 public static short ARGB8_to_RGB565(int argb){ in ARGB8_to_RGB565() argument 42 int a = (argb & 0xFF000000) >> 24; in ARGB8_to_RGB565() 43 int r = (argb & 0x00FF0000) >> 16; in ARGB8_to_RGB565() 44 int g = (argb & 0x0000FF00) >> 8; in ARGB8_to_RGB565() 45 int b = (argb & 0x000000FF); in ARGB8_to_RGB565()
|
/external/oprofile/libpopt/ |
D | popt.c | 183 con->os->argb = NULL; in poptGetContext() 224 os->argb = PBM_FREE(os->argb); in cleanOSE() 236 con->os->argb = PBM_FREE(con->os->argb); in poptResetContext() 373 con->os->argb = NULL; in handleAlias() 561 if (os->argb && PBM_ISSET(i, os->argb)) in findNextArg() 569 if (os->argb == NULL) os->argb = PBM_ALLOC(os->argc); in findNextArg() 570 if (os->argb != NULL) /* XXX can't happen */ in findNextArg() 571 PBM_SET(i, os->argb); in findNextArg() 739 if (con->os->argb && PBM_ISSET(con->os->next, con->os->argb)) { in poptGetNextOpt() 1069 con->os->argb = _free(con->os->argb); in poptFreeContext() [all …]
|
D | poptint.h | 50 pbm_set * argb; member
|
/external/qemu/distrib/sdl-1.2.12/src/hermes/ |
D | mmxp2_32.asm | 140 movq mm0, [esi] ; argb 141 movq mm1, mm0 ; argb 143 movq mm3, mm1 ; argb 150 movq mm4, [esi+8] ; argb 151 movq mm2, mm4 ; argb 153 movq mm1, mm2 ; argb
|
/external/jmonkeyengine/engine/src/desktop/jme3tools/converters/ |
D | ImageToAwt.java | 225 int argb = image.getRGB(x, y); in convert() local 228 int a = (argb & 0xff000000) >> 24; in convert() 229 int r = (argb & 0x00ff0000) >> 16; in convert() 230 int g = (argb & 0x0000ff00) >> 8; in convert() 231 int b = (argb & 0x000000ff); in convert() 471 int argb = (a << 24) | (r << 16) | (g << 8) | b; in convert() local 472 out.setRGB(x, y, argb); in convert()
|
/external/clang/test/Parser/ |
D | function-decls.c | 8 X = sizeof(void (*(int arga, void (*argb)(double Y)))(void* Z)); in foo()
|
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/ |
D | Context.cpp | 2186 unsigned short argb = *(unsigned short*)(source + 2 * i + j * lock.Pitch); in readPixels() local 2188 a = (argb & 0x8000) ? 1.0f : 0.0f; in readPixels() 2189 b = (argb & 0x001F) * (1.0f / 0x001F); in readPixels() 2190 g = (argb & 0x03E0) * (1.0f / 0x03E0); in readPixels() 2191 r = (argb & 0x7C00) * (1.0f / 0x7C00); in readPixels() 2196 unsigned int argb = *(unsigned int*)(source + 4 * i + j * lock.Pitch); in readPixels() local 2198 a = (argb & 0xFF000000) * (1.0f / 0xFF000000); in readPixels() 2199 b = (argb & 0x000000FF) * (1.0f / 0x000000FF); in readPixels() 2200 g = (argb & 0x0000FF00) * (1.0f / 0x0000FF00); in readPixels() 2201 r = (argb & 0x00FF0000) * (1.0f / 0x00FF0000); in readPixels() [all …]
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
D | ColorRGBA.java | 491 int argb = (((int) (a * 255) & 0xFF) << 24) in asIntARGB() local 495 return argb; in asIntARGB()
|
/external/qemu/android/skin/ |
D | argb.h | 30 mmx_save8888( mmx_t argb, mmx_t zero ) in mmx_save8888() argument 32 return (unsigned) _mm_cvtsi64_si32( _mm_packs_pu16( argb, zero ) ); in mmx_save8888() 43 mmx_mulshift( mmx_t argb, int multiplier, int rshift, mmx_t zero ) in mmx_mulshift() argument 45 mmx_t ar = _mm_unpackhi_pi16(argb, zero ); in mmx_mulshift() 46 mmx_t gb = _mm_unpacklo_pi16(argb, zero ); in mmx_mulshift()
|
/external/skia/src/animator/ |
D | SkAnimateSchema.xsd | 27 …<!-- @pattern #[0-9a-fA-F]{4} #argb contains four hexadecimal digits. #argb is equivalent to 0xaar…
|