/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/ |
gdipluscolor.h | 42 ARGB Value; 53 static ARGB MakeARGB(BYTE a, BYTE r, BYTE g, BYTE b) 55 return (ARGB) ((((DWORD) a) << 24) | (((DWORD) r) << 16) 59 static const ARGB AlphaMask = 0xFF000000; 61 static const ARGB AliceBlue = 0xFFF0F8FF; 62 static const ARGB AntiqueWhite = 0xFFFAEBD7; 63 static const ARGB Aqua = 0xFF00FFFF; 64 static const ARGB Aquamarine = 0xFF7FFFD4; 65 static const ARGB Azure = 0xFFF0FFFF; 66 static const ARGB Beige = 0xFFF5F5DC [all...] |
/external/chromium_org/third_party/skia/src/images/ |
SkImageEncoder_argb.cpp | 22 typedef void (*ScanlineImporter)(const uint8_t* in, uint8_t* argb, int width, 25 static void ARGB_8888_To_ARGB(const uint8_t* in, uint8_t* argb, int width, const SkPMColor*) { 29 argb[0] = SkGetPackedA32(c); 30 argb[1] = SkGetPackedR32(c); 31 argb[2] = SkGetPackedG32(c); 32 argb[3] = SkGetPackedB32(c); 33 argb += 4; 37 static void RGB_565_To_ARGB(const uint8_t* in, uint8_t* argb, int width, const SkPMColor*) { 41 argb[0] = 0xFF; 42 argb[1] = SkPacked16ToR32(c) 106 uint8_t* argb = ada.get(); local [all...] |
/external/skia/src/images/ |
SkImageEncoder_argb.cpp | 22 typedef void (*ScanlineImporter)(const uint8_t* in, uint8_t* argb, int width, 25 static void ARGB_8888_To_ARGB(const uint8_t* in, uint8_t* argb, int width, const SkPMColor*) { 29 argb[0] = SkGetPackedA32(c); 30 argb[1] = SkGetPackedR32(c); 31 argb[2] = SkGetPackedG32(c); 32 argb[3] = SkGetPackedB32(c); 33 argb += 4; 37 static void RGB_565_To_ARGB(const uint8_t* in, uint8_t* argb, int width, const SkPMColor*) { 41 argb[0] = 0xFF; 42 argb[1] = SkPacked16ToR32(c) 106 uint8_t* argb = ada.get(); local [all...] |
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/ |
copyimage.cpp | 17 unsigned int argb = *(unsigned int*)source; local 18 *(unsigned int*)dest = (argb & 0xFF00FF00) | // Keep alpha and green 19 (argb & 0x00FF0000) >> 16 | // Move red to blue 20 (argb & 0x000000FF) << 16; // Move blue to red
|
/external/chromium_org/third_party/libyuv/include/libyuv/ |
convert_from_argb.h | 21 // Copy ARGB to ARGB. 28 // Convert ARGB To BGRA. (alias) 35 // Convert ARGB To ABGR. (alias) 42 // Convert ARGB To RGBA. 48 // Convert ARGB To RGB24. 54 // Convert ARGB To RAW. 60 // Convert ARGB To RGB565. 66 // Convert ARGB To ARGB1555. 72 // Convert ARGB To ARGB4444 [all...] |
convert_argb.h | 34 // Copy ARGB to ARGB. 40 // Convert I420 to ARGB. 48 // Convert I422 to ARGB. 56 // Convert I444 to ARGB. 64 // Convert I411 to ARGB. 72 // Convert I400 (grey) to ARGB. 81 // Convert I400 to ARGB. Reverse of ARGBToI400. 87 // Convert NV12 to ARGB. 94 // Convert NV21 to ARGB [all...] |
planar_functions.h | 121 // ARGB mirror. 174 // Draw a rectangle into ARGB. 179 // Convert ARGB to gray scale ARGB. 185 // Make a rectangle of ARGB gray scale. 190 // Make a rectangle of ARGB Sepia tone. 195 // Apply a matrix rotation to each ARGB pixel. 196 // matrix_argb is 4 signed ARGB values. -128 to 127 representing -2 to 2. 208 // Apply a matrix rotation to each ARGB pixel. 209 // matrix_argb is 3 signed ARGB values. -128 to 127 representing -1 to 1 [all...] |
/external/pdfium/core/src/fxge/Microsoft SDK/include/ |
GdiPlusColor.h | 51 Argb = (ARGB)Color::Black;
61 Argb = MakeARGB(255, r, g, b);
74 Argb = MakeARGB(a, r, g, b);
78 // the specified ARGB values.
82 Color(IN ARGB argb)
84 Argb = argb;
91 return (BYTE) (Argb >> AlphaShift); [all...] |
/external/clang/test/Parser/ |
function-decls.c | 8 X = sizeof(void (*(int arga, void (*argb)(double Y)))(void* Z));
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowColor.java | 12 return argb(0xff, red, green, blue); 16 public static int argb(int alpha, int red, int green, int blue) { method in class:ShadowColor
|
/external/deqp/framework/delibs/deimage/ |
deARGB.h | 29 /* ARGB color in descending A, R, G, B order (alpha is in most significant byte). */ 44 DE_INLINE int deARGB_getRed (deARGB argb) { return (int)((argb >> 16) & 0xFF); } 45 DE_INLINE int deARGB_getGreen (deARGB argb) { return (int)((argb >> 8) & 0xFF); } 46 DE_INLINE int deARGB_getBlue (deARGB argb) { return (int)((argb >> 0) & 0xFF); } 47 DE_INLINE int deARGB_getAlpha (deARGB argb) { return (int)((argb >> 24) & 0xFF); } 49 DE_INLINE deARGB deARGB_multiply (deARGB argb, int f [all...] |
/external/libyuv/files/include/libyuv/ |
convert_argb.h | 34 // Copy ARGB to ARGB. 40 // Convert I420 to ARGB. 48 // Convert I422 to ARGB. 56 // Convert I444 to ARGB. 64 // Convert I411 to ARGB. 72 // Convert I400 (grey) to ARGB. 78 // Convert I400 to ARGB. Reverse of ARGBToI400. 84 // Convert NV12 to ARGB. 91 // Convert NV21 to ARGB [all...] |
planar_functions.h | 72 // ARGB mirror. 96 // Convert ARGB To RGBA. 102 // Convert ARGB To RGB24. 108 // Convert ARGB To RAW. 114 // Convert ARGB To RGB565. 120 // Convert ARGB To ARGB1555. 126 // Convert ARGB To ARGB4444. 132 // Convert ARGB to I400. 138 // ARGB little endian (bgra in memory) to I422. 179 // Draw a rectangle into ARGB [all...] |
/external/chromium_org/media/base/simd/ |
convert_rgb_to_yuv_ssse3.inc | 6 ; void SYMBOL(const uint8* argb, uint8* y, uint8* u, uint8* v, int width); 9 ; consists of three parts: converting one ARGB pixel to YUV pixels, converting 10 ; two ARGB pixels to YUV pixels, and converting four ARGB pixels to YUV pixels. 16 ; // Convert one ARGB pixel to one Y pixel, one U pixel, and one V pixel. 21 ; // Convert two ARGB pixels to two Y pixels, one U pixel, and one V pixel. 26 ; // Convert four ARGB pixels to four Y pixels, two U pixels, and two V 35 PROLOGUE 5, 6, 8, ARGB, Y, U, V, WIDTH, TEMP 47 ; When the width is odd, We read the rightmost ARGB pixel and convert its 53 ; Read one ARGB (or RGB) pixel [all...] |
/external/chromium_org/third_party/libyuv/unit_test/ |
convert_test.cc | [all...] |
/external/chromium_org/third_party/libwebp/utils/ |
color_cache.h | 39 uint32_t argb) { 40 const uint32_t key = (kHashMul * argb) >> cc->hash_shift_; 41 cc->colors_[key] = argb; 45 uint32_t argb) { 46 return (kHashMul * argb) >> cc->hash_shift_; 50 uint32_t argb) { 51 const uint32_t key = (kHashMul * argb) >> cc->hash_shift_; 52 return cc->colors_[key] == argb;
|
/external/webp/src/utils/ |
color_cache.h | 39 uint32_t argb) { 40 const uint32_t key = (kHashMul * argb) >> cc->hash_shift_; 41 cc->colors_[key] = argb; 45 uint32_t argb) { 46 return (kHashMul * argb) >> cc->hash_shift_; 50 uint32_t argb) { 51 const uint32_t key = (kHashMul * argb) >> cc->hash_shift_; 52 return cc->colors_[key] == argb;
|
/packages/apps/Settings/src/com/android/settings/accessibility/ |
ColorPreference.java | 87 final int argb = getValue(); local 88 if (Color.alpha(argb) < 255) { 95 mPreviewColor = new ColorDrawable(argb); 98 mPreviewColor.setColor(argb); 114 final int argb = getValueAt(index); local 115 final int alpha = Color.alpha(argb); 126 ((ColorDrawable) foreground).setColor(argb); 128 swatch.setImageDrawable(new ColorDrawable(argb));
|
/external/pdfium/fpdfsdk/include/ |
fsdk_define.h | 72 #define FX_GetAValue(argb) ((argb & 0xFF000000) >> 24)
77 #define FX_GetRValue(argb) ((argb & 0x00FF0000) >> 16)
82 #define FX_GetGValue(argb) ((argb & 0x0000FF00) >> 8)
87 #define FX_GetBValue(argb) (argb & 0x000000FF)
92 #define FX_ARGBTOCOLORREF(argb) ((((FX_DWORD)argb & 0x00FF0000) >> 16)|((FX_DWORD)argb & 0x0000FF00)|(((FX_DWORD)argb & 0x000000FF) << 16)) [all...] |
/external/pdfium/core/include/fxge/ |
fx_dib.h | 86 void ArgbDecode(FX_ARGB argb, int& a, int& r, int&g, int& b);
87 void ArgbDecode(FX_ARGB argb, int& a, FX_COLORREF& rgb);
93 #define FXARGB_A(argb) ((FX_BYTE)((argb) >> 24))
94 #define FXARGB_R(argb) ((FX_BYTE)((argb) >> 16))
95 #define FXARGB_G(argb) ((FX_BYTE)((argb) >> 8))
96 #define FXARGB_B(argb) ((FX_BYTE)(argb))
[all...] |
/external/chromium_org/third_party/libwebp/enc/ |
backward_references.c | 212 static WEBP_INLINE uint64_t GetPixPairHash64(const uint32_t* const argb) { 213 uint64_t key = ((uint64_t)argb[1] << 32) | argb[0]; 220 const uint32_t* const argb, int pos) { 221 const uint64_t hash_code = GetPixPairHash64(argb); 246 const uint32_t* const argb, int max_len, 250 const uint32_t* const argb_start = argb + base_position; 268 const uint32_t* const ptr1 = (argb + pos + best_length - 1); 282 curr_length = FindMatchLength(argb + pos, argb_start, max_len); 328 const uint32_t* const argb, [all...] |
/external/webp/src/enc/ |
backward_references.c | 212 static WEBP_INLINE uint64_t GetPixPairHash64(const uint32_t* const argb) { 213 uint64_t key = ((uint64_t)argb[1] << 32) | argb[0]; 220 const uint32_t* const argb, int pos) { 221 const uint64_t hash_code = GetPixPairHash64(argb); 246 const uint32_t* const argb, int max_len, 250 const uint32_t* const argb_start = argb + base_position; 268 const uint32_t* const ptr1 = (argb + pos + best_length - 1); 282 curr_length = FindMatchLength(argb + pos, argb_start, max_len); 328 const uint32_t* const argb, [all...] |
/external/chromium_org/third_party/libwebp/dsp/ |
lossless.c | 586 static WEBP_INLINE void UpdateHisto(int histo_argb[4][256], uint32_t argb) { 587 ++histo_argb[0][argb >> 24]; 588 ++histo_argb[1][(argb >> 16) & 0xff]; 589 ++histo_argb[2][(argb >> 8) & 0xff]; 590 ++histo_argb[3][argb & 0xff]; 645 uint32_t* const argb) { 671 argb[pix] = VP8LSubPixels(current_row[col], predict); 677 uint32_t* const argb, uint32_t* const argb_scratch, 696 memcpy(current_tile_rows, &argb[tile_y_offset * width], 711 argb_scratch, argb); 789 const uint32_t argb = argb_data[i]; local 802 const uint32_t argb = data[i]; local 841 const uint32_t argb = data[i]; local 859 const uint32_t argb = data[i]; local 1292 const uint32_t argb = *src++; local 1303 const uint32_t argb = *src++; local 1315 const uint32_t argb = *src++; local 1332 const uint32_t argb = *src++; local 1349 const uint32_t argb = *src++; local 1361 const uint32_t argb = *src++; local [all...] |
/external/webp/src/dsp/ |
lossless.c | 586 static WEBP_INLINE void UpdateHisto(int histo_argb[4][256], uint32_t argb) { 587 ++histo_argb[0][argb >> 24]; 588 ++histo_argb[1][(argb >> 16) & 0xff]; 589 ++histo_argb[2][(argb >> 8) & 0xff]; 590 ++histo_argb[3][argb & 0xff]; 645 uint32_t* const argb) { 671 argb[pix] = VP8LSubPixels(current_row[col], predict); 677 uint32_t* const argb, uint32_t* const argb_scratch, 696 memcpy(current_tile_rows, &argb[tile_y_offset * width], 711 argb_scratch, argb); 789 const uint32_t argb = argb_data[i]; local 802 const uint32_t argb = data[i]; local 841 const uint32_t argb = data[i]; local 859 const uint32_t argb = data[i]; local 1292 const uint32_t argb = *src++; local 1303 const uint32_t argb = *src++; local 1315 const uint32_t argb = *src++; local 1332 const uint32_t argb = *src++; local 1349 const uint32_t argb = *src++; local 1361 const uint32_t argb = *src++; local [all...] |
/external/libyuv/files/unit_test/ |
planar_test.cc | 87 TESTPLANARTOB(I420, 2, 2, ARGB, 4) 96 TESTPLANARTOB(I422, 2, 1, ARGB, 4) 100 TESTPLANARTOB(I411, 4, 1, ARGB, 4) 101 TESTPLANARTOB(I444, 1, 1, ARGB, 4) 163 TESTBIPLANARTOB(NV12, 2, 2, ARGB, 4) 164 TESTBIPLANARTOB(NV21, 2, 2, ARGB, 4) 245 TESTATOPLANAR(ARGB, 4, I420, 2, 2) 254 // TESTATOPLANAR(ARGB, 4, I411, 4, 1) 255 TESTATOPLANAR(ARGB, 4, I422, 2, 1) 256 // TESTATOPLANAR(ARGB, 4, I444, 1, 1 [all...] |