/external/webp/src/dsp/ |
upsampling_mips_dsp_r2.c | 83 uint8_t* const argb) { 90 argb[0] = ba; 91 argb[1] = rg; 93 argb[0] = rg; 94 argb[1] = ba; 104 uint8_t* const argb) { 107 argb[0] = 0xff; 108 argb[1] = r; 109 argb[2] = g; 110 argb[3] = b [all...] |
dsp.h | 304 // General function for converting two lines of ARGB or RGBA. 325 // ARGB -> YUV converters 327 // Convert ARGB samples to luma Y. 328 extern void (*WebPConvertARGBToY)(const uint32_t* argb, uint8_t* y, int width); 329 // Convert ARGB samples to U/V with downsampling. do_store should be '1' for 332 extern void (*WebPConvertARGBToUV)(const uint32_t* argb, uint8_t* u, uint8_t* v, 344 extern void WebPConvertARGBToUV_C(const uint32_t* argb, uint8_t* u, uint8_t* v, 393 // Apply alpha pre-multiply on an rgba, bgra or argb plane of size w * h. 394 // alpha_first should be 0 for argb, 1 for rgba or bgra (where alpha is last). 402 // Dispatch the values from alpha[] plane to the ARGB destination 'dst' [all...] |
lossless_enc_sse2.c | 30 const __m128i in = _mm_loadu_si128((__m128i*)&argb_data[i]); // argb 58 const __m128i in = _mm_loadu_si128((__m128i*)&argb_data[i]); // argb 77 static void CollectColorBlueTransforms(const uint32_t* argb, int stride, 91 const uint32_t* const src = argb + y * stride; 121 VP8LCollectColorBlueTransforms_C(argb + tile_width - left_over, stride, 128 static void CollectColorRedTransforms(const uint32_t* argb, int stride, 139 const uint32_t* const src = argb + y * stride; 163 VP8LCollectColorRedTransforms_C(argb + tile_width - left_over, stride,
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
planar_functions.cc | 480 // ARGB mirror. 557 // Alpha Blend 2 ARGB images and store to destination. 593 // Multiply 2 ARGB images and store to destination. 654 // Add 2 ARGB images and store to destination. 720 // Subtract 2 ARGB images and store to destination. [all...] |
row_neon.cc | [all...] |
convert_from_argb.cc | 23 // ARGB little endian (bgra in memory) to I444 104 // ARGB little endian (bgra in memory) to I422 185 // ARGB little endian (bgra in memory) to I411 475 // Convert ARGB to YUY2. 582 // Convert ARGB to UYVY. 689 // Convert ARGB to I400. 745 // Shuffle table for converting ARGB to RGBA. 750 // Convert ARGB to RGBA. 761 // Convert ARGB To RGB24. 809 // Convert ARGB To RAW [all...] |
/external/skia/src/opts/ |
SkBlurImageFilter_opts.h | 20 // ARGB -> 000A 000R 000G 000B 24 // Axxx Rxxx Gxxx Bxxx -> ARGB 33 // ARGB -> 000A 000R 000G 000B 40 // Axxx Rxxx Gxxx Bxxx -> ARGB 44 p = _mm_packus_epi16(p, p); // xxxx xxxx xxxx ARGB 168 // ARGB -> 0A0R 0G0B
|
/cts/tests/camera/src/android/hardware/camera2/cts/rs/ |
BitmapUtils.java | 26 * Utility class providing methods for various pixel-wise ARGB bitmap operations. 50 // Setup input allocation (ARGB 8888 bitmap).
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
ColorTest.java | 30 assertEquals(Color.RED, Color.argb(0xff, 0xff, 0x00, 0x00)); 31 assertEquals(Color.YELLOW, Color.argb(0xff, 0xff, 0xff, 0x00));
|
/development/tools/yuv420sp2rgb/ |
cmdline.c | 30 "encode as one of { 'ppm', 'rgb', or 'argb' }", 40 "\t%s infile --height <height> --width <width> --output <outfile> -t <ppm|grb|argb> [ --gray ] [ --rotate <degrees> ] [ --verbose ]\n"
|
/external/libyuv/files/include/libyuv/ |
format_conversion.h | 103 // Convert Bayer RGB formats to ARGB. 133 // Converts ARGB to Bayer RGB formats.
|
/external/skia/src/animator/ |
SkDrawBitmap.cpp | 48 SK_MEMBER_PROPERTY(erase, ARGB), 71 SkDebugf("erase=\"argb(%d,%d,%d,%d)\" ", SkColorGetA(fColor)/255, SkColorGetR(fColor),
|
/external/webp/src/utils/ |
huffman.h | 42 uint32_t value; // 32b packed ARGB value if literal, 62 // ARGB value of the pixel, with Green channel
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/ |
MinimizedDockShadow.java | 58 final int middleColor = Color.argb( 60 final int quarter = Color.argb(
|
/packages/apps/Messaging/jni/ |
GifTranscoder.h | 84 // Computes the average color (by averaging the per-channel (ARGB) values). 101 // Converts a 24-bit GIF color (RGB) to a 32-bit ARGB color.
|
/external/opencv3/3rdparty/libwebp/enc/ |
backward_references.h | 136 static WEBP_INLINE PixOrCopy PixOrCopyCreateLiteral(uint32_t argb) { 139 retval.argb_or_distance = argb; 206 const uint32_t* const argb, 211 int VP8LCalculateEstimateForCacheSize(const uint32_t* const argb,
|
/external/pdfium/core/src/fpdfdoc/ |
doc_annot.cpp | 304 FX_DWORD argb = 0xff000000; local 309 argb = ArgbEncode(0xff, R, G, B); 344 pDevice->DrawPath(&path, pUser2Device, &graph_state, argb, argb, fill_type);
|
/external/pdfium/core/src/fxge/win32/ |
fx_win32_gdipext.cpp | 212 typedef GpStatus(WINGDIPAPI* FuncType_GdipCreateSolidFill)(ARGB color, 218 typedef GpStatus(WINGDIPAPI* FuncType_GdipCreatePen1)(ARGB color, 455 static GpBrush* _GdipCreateBrush(DWORD argb) { 459 CallFunc(GdipCreateSolidFill)((ARGB)argb, &solidBrush); 523 FX_ARGB argb, 536 CallFunc(GdipCreateSolidFill)((ARGB)argb, &solidBrush); 576 ArgbDecode(argb, a, r, g, b); 594 UINT palette[4] = {PaletteFlagsHasAlpha, 2, 0, argb}; [all...] |
/external/pdfium/xfa/include/fxgraphics/ |
fx_graphics.h | 397 CFX_Color(const FX_ARGB argb);
399 CFX_Color(CFX_Pattern* pattern, const FX_ARGB argb = 0x0);
405 FX_ERR Set(const FX_ARGB argb);
407 FX_ERR Set(CFX_Pattern* pattern, const FX_ARGB argb = 0x0);
|
/external/webp/src/enc/ |
picture_psnr.c | 88 if (src->argb == NULL || ref->argb == NULL) { 101 tmp1[j * w + i] = src->argb[i + j * src->argb_stride] >> (c * 8); 102 tmp2[j * w + i] = ref->argb[i + j * ref->argb_stride] >> (c * 8);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
NotificationUtils.java | 48 return Color.argb(
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
PhotoProcessorTest.java | 51 assertEquals(Color.argb(255, 255, 255, 255), normalized.getPixel(0, 0));
|
/external/deqp/framework/delibs/deimage/ |
deImage.c | 84 void deImage_setPixel (deImage* image, int x, int y, deARGB argb) 89 case DE_IMAGEFORMAT_XRGB8888: *(deARGB*)addr = argb; break; 90 case DE_IMAGEFORMAT_ARGB8888: *(deARGB*)addr = argb; break;
|
/external/opencv3/3rdparty/libwebp/webp/ |
encode.h | 273 // Main flag for encoder selecting between ARGB or YUV input. 274 // It is recommended to use ARGB input (*argb, argb_stride) for lossless 288 // ARGB input (mostly used for input to lossless compression) 289 uint32_t* argb; // Pointer to argb (32 bit) plane. member in struct:WebPPicture 334 void* memory_argb_; // and for argb too. 438 // Converts picture->argb data to the YUVA format specified by 'colorspace'. 446 // Converts picture->yuv to picture->argb and sets picture->use_argb to true. 449 // raw ARGB samples, since using YUV420 is comparatively lossy. Also, th [all...] |
/external/webp/include/webp/ |
encode.h | 295 // Main flag for encoder selecting between ARGB or YUV input. 296 // It is recommended to use ARGB input (*argb, argb_stride) for lossless 310 // ARGB input (mostly used for input to lossless compression) 311 uint32_t* argb; // Pointer to argb (32 bit) plane. member in struct:WebPPicture 354 void* memory_argb_; // and for argb too. 460 // Converts picture->argb data to the YUV420A format. The 'colorspace' 483 // Converts picture->yuv to picture->argb and sets picture->use_argb to true. 486 // raw ARGB samples, since using YUV420 is comparatively lossy. Also, th [all...] |