/external/webp/src/dsp/ |
lossless_neon.c | 158 static WEBP_INLINE uint8x16_t DoGreenShuffle(const uint8x16_t argb, 160 return vcombine_u8(vtbl1q_u8(argb, vget_low_u8(shuffle)), 161 vtbl1q_u8(argb, vget_high_u8(shuffle))); 167 static WEBP_INLINE uint8x16_t DoGreenShuffle(const uint8x16_t argb, 169 return vcombine_u8(vtbl1_u8(vget_low_u8(argb), shuffle), 170 vtbl1_u8(vget_high_u8(argb), shuffle)); 182 const uint8x16_t argb = vld1q_u8((uint8_t*)argb_data); local 183 const uint8x16_t greens = DoGreenShuffle(argb, shuffle); 184 vst1q_u8((uint8_t*)argb_data, vaddq_u8(argb, greens));
|
yuv.c | 167 // ARGB -> YUV converters 169 static void ConvertARGBToY(const uint32_t* argb, uint8_t* y, int width) { 172 const uint32_t p = argb[i]; 178 void WebPConvertARGBToUV_C(const uint32_t* argb, uint8_t* u, uint8_t* v, 184 const uint32_t v0 = argb[2 * i + 0]; 185 const uint32_t v1 = argb[2 * i + 1]; 203 const uint32_t v0 = argb[2 * i + 0]; 252 void (*WebPConvertARGBToY)(const uint32_t* argb, uint8_t* y, int width); 253 void (*WebPConvertARGBToUV)(const uint32_t* argb, uint8_t* u, uint8_t* v,
|
alpha_processing_sse41.c | 22 static int ExtractAlpha(const uint8_t* argb, int argb_stride, 45 const __m128i* src = (const __m128i*)argb; 47 // load 64 argb bytes 66 const uint32_t alpha_value = argb[4 * i]; 70 argb += argb_stride;
|
yuv.h | 124 uint8_t* const argb) { 131 argb[0] = ba; 132 argb[1] = rg; 134 argb[0] = rg; 135 argb[1] = ba; 143 uint8_t* const argb) { 144 argb[0] = 0xff; 145 VP8YuvToRgb(y, u, v, argb + 1);
|
/external/pdfium/core/src/fxge/apple/ |
fx_quartz_device.cpp | 75 FX_ARGB argb, 91 ArgbDecode(argb, a, r, g, b); 417 FX_DWORD argb, 433 ArgbDecode(argb, a, r, g, b); 509 FX_ARGB argb, 565 CGContextSetRGBFillColor(_context, FXARGB_R(argb) / 255.f, 566 FXARGB_G(argb) / 255.f, FXARGB_B(argb) / 255.f, 567 FXARGB_A(argb) / 255.f); 633 FX_ARGB argb, [all...] |
apple_int.h | 63 FX_ARGB argb, 179 FX_ARGB argb, 181 void setFillInfo(FX_ARGB argb); 192 FX_DWORD argb,
|
fx_apple_platform.cpp | 49 FX_DWORD argb, 97 nChars, argb, NULL); 106 FX_DWORD argb, 157 font_size, argb, alpha_flag, pIccTransform);
|
/external/libyuv/files/source/ |
row_win.cc | 24 // Constants for ARGB. 85 // Shuffle table for converting RGB24 to ARGB. 90 // Shuffle table for converting RAW to ARGB. 95 // Shuffle table for converting BGRA to ARGB. 100 // Shuffle table for converting ABGR to ARGB. 105 // Shuffle table for converting RGBA to ARGB. 110 // Shuffle table for converting ARGB to RGBA. 115 // Shuffle table for converting ARGB to RGB24. 120 // Shuffle table for converting ARGB to RAW. 364 movdqa [eax * 2 + edx], xmm1 // store 4 pixels of ARGB [all...] |
planar_functions.cc | 267 // ARGB mirror. 322 // Alpha Blend 2 ARGB images and store to destination. 349 // Convert ARGB to I400. 381 // ARGB little endian (bgra in memory) to I422 587 // Convert ARGB to RGBA. 626 // Convert ARGB To RGB24. 672 // Convert ARGB To RAW. 718 // Convert ARGB To RGB565. 753 // Convert ARGB To ARGB1555. 788 // Convert ARGB To ARGB4444 [all...] |
/external/libvpx/libvpx/third_party/libyuv/source/ |
scale_argb.cc | 30 // ScaleARGB ARGB, 1/2 31 // This is an optimized version for scaling down a ARGB to 1/2 of 90 // ScaleARGB ARGB, 1/4 91 // This is an optimized version for scaling down a ARGB to 1/4 of 99 // Allocate 2 rows of ARGB. 137 // ScaleARGB ARGB Even 138 // This is an optimized version for scaling down a ARGB to even 186 // Scale ARGB down with bilinear interpolation. 268 // Allocate a row of ARGB. 296 // Scale ARGB up with bilinear interpolation [all...] |
row_win.cc | 205 // Constants for ARGB. 294 // Shuffle table for converting RGB24 to ARGB. 299 // Shuffle table for converting RAW to ARGB. 304 // Shuffle table for converting ARGB to RGB24. 309 // Shuffle table for converting ARGB to RAW. 319 // Shuffle table for converting ARGB to RAW. 508 movdqu [eax * 2 + edx], xmm1 // store 4 pixels of ARGB 509 movdqu [eax * 2 + edx + 16], xmm2 // store next 4 pixels of ARGB 563 vmovdqu [eax * 2 + edx], ymm1 // store 4 pixels of ARGB 564 vmovdqu [eax * 2 + edx + 32], ymm2 // store next 4 pixels of ARGB [all...] |
/external/opencv3/3rdparty/libwebp/enc/ |
vp8li.h | 30 uint32_t* argb_; // Transformed argb image data. 31 uint32_t* argb_scratch_; // Scratch memory for argb rows 54 // Returns 0 if config or picture is NULL or picture doesn't have valid argb
|
vp8l.c | 56 const uint32_t* argb = pic->argb; local 59 uint32_t last_pix = ~argb[0]; // so we're sure that last_pix != argb[0] 63 if (argb[x] == last_pix) { 66 last_pix = argb[x]; 88 argb += pic->argb_stride; 105 static int AnalyzeEntropy(const uint32_t* argb, 111 uint32_t last_pix = argb[0]; // so we're sure that pix_diff == 0 123 const uint32_t pix = argb[x] 645 const uint32_t* const argb = enc->argb_; local [all...] |
/external/webp/src/enc/ |
vp8li.h | 31 uint32_t* argb_; // Transformed argb image data. 32 uint32_t* argb_scratch_; // Scratch memory for argb rows 61 // Returns 0 if config or picture is NULL or picture doesn't have valid argb
|
/frameworks/base/graphics/java/android/graphics/ |
PorterDuffColorFilter.java | 33 * @param color The ARGB source color used with the specified Porter-Duff mode 47 * Returns the ARGB color used to tint the source pixels when this filter 63 * @param color An ARGB {@link Color color}
|
Color.java | 111 public static int argb(int alpha, int red, int green, int blue) { method in class:Color 184 * Convert the argb color to its HSV components. 188 * @param color the argb color to convert. The alpha component is ignored. 196 * Convert HSV components to an ARGB color. Alpha set to 0xFF. 202 * @return the resulting argb color 209 * Convert HSV components to an ARGB color. The alpha component is passed 215 * @param alpha the alpha component of the returned argb color. 217 * @return the resulting argb color
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/uimodel/ |
UiColorValueNode.java | 40 /** Accepted RGBA formats are one of #RGB, #ARGB, #RRGGBB or #AARRGGBB. */ 51 * that is one of #RGB, #ARGB, #RRGGBB or #AARRGGBB. 63 "Accepted color formats are one of #RGB, #ARGB, #RRGGBB or #AARRGGBB.",
|
/developers/build/prebuilts/gradle/DrawableTinting/Application/src/main/java/com/example/android/drawabletinting/ |
DrawableTintingFragment.java | 171 // Get text labels and seekbars for the four color components: ARGB 226 * Computes the {@link Color} value from selection on ARGB sliders. 228 * @return color computed from selected ARGB values 236 return Color.argb(alpha, red, green, blue); 251 * ARGB color. (Alpha, Red, Green, Blue.) Once a color has been computed using 252 * {@link Color#argb(int, int, int, int)}, it is set togethe with the blend mode on the background 257 // Set the color hint of the image: ARGB 264 Log.d(TAG, String.format("Updating tint with color [ARGB: %d,%d,%d,%d] and mode [%s]",
|
/developers/samples/android/ui/DrawableTinting/Application/src/main/java/com/example/android/drawabletinting/ |
DrawableTintingFragment.java | 171 // Get text labels and seekbars for the four color components: ARGB 226 * Computes the {@link Color} value from selection on ARGB sliders. 228 * @return color computed from selected ARGB values 236 return Color.argb(alpha, red, green, blue); 251 * ARGB color. (Alpha, Red, Green, Blue.) Once a color has been computed using 252 * {@link Color#argb(int, int, int, int)}, it is set togethe with the blend mode on the background 257 // Set the color hint of the image: ARGB 264 Log.d(TAG, String.format("Updating tint with color [ARGB: %d,%d,%d,%d] and mode [%s]",
|
/development/samples/browseable/DrawableTinting/src/com.example.android.drawabletinting/ |
DrawableTintingFragment.java | 171 // Get text labels and seekbars for the four color components: ARGB 226 * Computes the {@link Color} value from selection on ARGB sliders. 228 * @return color computed from selected ARGB values 236 return Color.argb(alpha, red, green, blue); 251 * ARGB color. (Alpha, Red, Green, Blue.) Once a color has been computed using 252 * {@link Color#argb(int, int, int, int)}, it is set togethe with the blend mode on the background 257 // Set the color hint of the image: ARGB 264 Log.d(TAG, String.format("Updating tint with color [ARGB: %d,%d,%d,%d] and mode [%s]",
|
/external/pdfium/xfa/src/fgas/src/font/ |
fx_gdifont.h | 61 FX_ARGB argb,
101 FX_ARGB argb);
|
/frameworks/native/include/ui/ |
PixelFormat.h | 61 PIXEL_FORMAT_RGBA_5551 = 6, // 16-bit ARGB 62 PIXEL_FORMAT_RGBA_4444 = 7, // 16-bit ARGB
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/ |
gdipluspixelformats.h | 29 typedef DWORD ARGB; 92 ARGB Entries[1];
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
scale_argb.h | 39 // Scale with YUV conversion to ARGB and clipping.
|
/external/skia/experimental/docs/ |
exampleSlides.js | 9 { "offset":0, "color": argb(76,0,0,255) }, 10 { "offset":1, "color": argb( 0,0,0,255) } 15 { "offset":0, "color": argb(76,0,255,0) }, 16 { "offset":1, "color": argb( 0,0,255,0) } 21 { "offset":0, "color": argb(76,255,0,0) }, 22 { "offset":1, "color": argb( 0,255,0,0) } 27 { "offset":0, "color": argb(76,192,63,192) }, 28 { "offset":1, "color": argb( 0,192,63,192) } 33 { "offset":0, "color": argb(76,127,127,0) }, 34 { "offset":1, "color": argb( 0,127,127,0) [all...] |