/external/webp/src/enc/ |
picture_rescale.c | 74 WebPCopyPlane((const uint8_t*)src->argb, 4 * src->argb_stride, 75 (uint8_t*)dst->argb, 4 * dst->argb_stride, 113 dst->argb = src->argb + top * src->argb_stride + left; 151 (const uint8_t*)(pic->argb + top * pic->argb_stride + left); 152 WebPCopyPlane(src, pic->argb_stride * 4, (uint8_t*)tmp.argb, 182 assert(pic->argb != NULL); 183 WebPMultARGBRows((uint8_t*)pic->argb, pic->argb_stride * sizeof(*pic->argb), 251 RescalePlane((const uint8_t*)pic->argb, prev_width, prev_height [all...] |
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
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
compare.h | 25 // Scan an opaque argb image and return fourcc based on alpha offset. 28 uint32 ARGBDetect(const uint8* argb, int stride_argb, int width, int height);
|
/external/libyuv/files/include/libyuv/ |
compare.h | 25 // Scan an opaque argb image and return fourcc based on alpha offset. 28 uint32 ARGBDetect(const uint8* argb, int stride_argb, int width, int height);
|
/external/pdfium/public/ |
fpdf_edit.h | 22 #define FPDF_GetBValue(argb) ((uint8_t)(argb)) 23 #define FPDF_GetGValue(argb) ((uint8_t)(((uint16_t)(argb)) >> 8)) 24 #define FPDF_GetRValue(argb) ((uint8_t)((argb) >> 16)) 25 #define FPDF_GetAValue(argb) ((uint8_t)((argb) >> 24))
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
convert_jpeg.cc | 226 uint8* argb; member in struct:libyuv::ARGBBuffers 240 dest->argb, dest->argb_stride, 242 dest->argb += rows * dest->argb_stride; 254 dest->argb, dest->argb_stride, 256 dest->argb += rows * dest->argb_stride; 268 dest->argb, dest->argb_stride, 270 dest->argb += rows * dest->argb_stride; 282 dest->argb, dest->argb_stride, 284 dest->argb += rows * dest->argb_stride; 294 dest->argb, dest->argb_stride [all...] |
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...] |
/external/libyuv/files/source/ |
convert_jpeg.cc | 227 uint8* argb; member in struct:libyuv::ARGBBuffers 241 dest->argb, dest->argb_stride, 243 dest->argb += rows * dest->argb_stride; 255 dest->argb, dest->argb_stride, 257 dest->argb += rows * dest->argb_stride; 269 dest->argb, dest->argb_stride, 271 dest->argb += rows * dest->argb_stride; 283 dest->argb, dest->argb_stride, 285 dest->argb += rows * dest->argb_stride; 295 dest->argb, dest->argb_stride [all...] |
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. 260 // Allocate a row of ARGB. 288 // Scale ARGB up with bilinear interpolation [all...] |
/external/opencv3/3rdparty/libwebp/dsp/ |
yuv.h | 112 uint8_t* const argb) { 120 argb[0] = ba; 121 argb[1] = rg; 123 argb[0] = rg; 124 argb[1] = ba; 193 uint8_t* const argb) { 200 argb[0] = ba; 201 argb[1] = rg; 203 argb[0] = rg; 204 argb[1] = ba [all...] |
/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...] |
/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
|
/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];
|