HomeSort by relevance Sort by last modified time
    Searched full:argb (Results 101 - 125 of 515) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webp/src/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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdipluspath.h 757 ARGB *presetArgb =
758 (ARGB*) DllExports::GdipAlloc(count * sizeof(ARGB));
800 ARGB *colorsArgb =
801 (ARGB*) DllExports::GdipAlloc(*count * sizeof(ARGB));
905 ARGB *presetArgb =
906 (ARGB*) DllExports::GdipAlloc(count * sizeof(ARGB));
924 ARGB *colorsArgb
    [all...]
gdiplusbrush.h 256 ARGB *presetArgb =
257 (ARGB*) DllExports::GdipAlloc(count * sizeof(ARGB));
274 ARGB colorsArgb[2];
358 ARGB *presetArgb =
359 (ARGB*) DllExports::GdipAlloc(count * sizeof(ARGB));
  /external/webp/src/dsp/
yuv_sse2.c 499 // Convert 8 packed ARGB to r[], g[], b[]
500 static WEBP_INLINE void RGB32PackedToPlanar(const uint32_t* const argb,
505 const __m128i in0 = LOAD_16(argb + 0); // argb3 | argb2 | argb1 | argb0
506 const __m128i in1 = LOAD_16(argb + 4); // argb7 | argb6 | argb5 | argb4
647 static void ConvertARGBToY(const uint32_t* argb, uint8_t* y, int width) {
652 RGB32PackedToPlanar(&argb[i + 0], &r, &g, &b);
654 RGB32PackedToPlanar(&argb[i + 8], &r, &g, &b);
659 const uint32_t p = argb[i];
675 static void ConvertARGBToUV(const uint32_t* argb, uint8_t* u, uint8_t* v,
681 RGB32PackedToPlanar(&argb[i + 0], &r0, &g0, &b0)
    [all...]
alpha_processing.c 140 const uint32_t argb = ptr[x]; local
141 if (argb < 0xff000000u) { // alpha < 255
142 if (argb <= 0x00ffffffu) { // alpha == 0
145 const uint32_t alpha = (argb >> 24) & 0xff;
147 uint32_t out = argb & 0xff000000u;
148 out |= Mult(argb >> 0, scale) << 0;
149 out |= Mult(argb >> 8, scale) << 8;
150 out |= Mult(argb >> 16, scale) << 16;
319 static int ExtractAlpha(const uint8_t* argb, int argb_stride,
327 const uint8_t alpha_value = argb[4 * i]
    [all...]
lossless.h 133 const uint32_t* argb, int stride,
139 const uint32_t* argb, int stride,
148 void VP8LCollectColorRedTransforms_C(const uint32_t* argb, int stride,
151 void VP8LCollectColorBlueTransforms_C(const uint32_t* argb, int stride,
160 uint32_t* const argb, uint32_t* const argb_scratch,
164 uint32_t* const argb, uint32_t* image);
argb.c 10 // ARGB making functions.
  /frameworks/support/v4/java/android/support/v4/graphics/
ColorUtils.java 59 return Color.argb(a, r, g, b);
210 * Convert the ARGB color to its HSL (hue-saturation-lightness) components.
217 * @param color the ARGB color to convert. The alpha component is ignored
304 * Convert the ARGB color to its CIE Lab representative components.
306 * @param color the ARGB color to convert. The alpha component is ignored
338 * Convert the ARGB color to it's CIE XYZ representative components.
349 * @param color the ARGB color to convert. The alpha component is ignored
531 * Blend between two ARGB colors using the given ratio.
536 * @param color1 the first ARGB color
537 * @param color2 the second ARGB colo
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactoryTest.java 76 Color.argb(255, 0, 0, 0),
77 Color.argb(128, 255, 0, 0),
78 Color.argb(128, 25, 26, 27),
79 Color.argb(2, 255, 254, 253),
84 Color.argb(255, 0, 0, 0),
85 Color.argb(128, 255, 0, 0),
86 Color.argb(128, 26, 26, 28),
87 Color.argb(2, 255, 255, 255),
701 Bitmap argb = Bitmap.createBitmap(gray.getWidth(), gray.getHeight(), Config.ARGB_8888); local
702 for (int y = 0; y < argb.getHeight(); y++)
    [all...]
  /external/pdfium/core/src/fxge/agg/src/
fx_agg_driver.cpp     [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Bitmap_Delegate.java 287 int[] argb = new int[width * height]; local
288 srcImage.getRGB(0, 0, width, height, argb, 0, width);
289 image.setRGB(0, 0, width, height, argb, 0, width);
658 int[] argb = new int[w * h]; local
659 image.getRGB(0, 0, image.getWidth(), image.getHeight(), argb, 0, image.getWidth());
662 final int length = argb.length;
664 int a = (argb[i] >>> 24 * alpha) / 255;
665 argb[i] = (a << 24) | (argb[i] & 0x00FFFFFF);
669 result.setRGB(0, 0, w, h, argb, 0, w)
    [all...]
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_progress.cpp 667 FX_ARGB argb = pCodec->m_pSrcPalette[pal_index]; local
674 FXRGB2GRAY(FXARGB_R(argb), FXARGB_G(argb), FXARGB_B(argb));
680 *pScanline++ = FXARGB_B(argb);
681 *pScanline++ = FXARGB_G(argb);
682 *pScanline++ = FXARGB_R(argb);
689 FXARGB_SETDIB(pScanline, argb);
1512 unsigned long argb = m_pSrcPalette[src_scan[j]]; local
1571 unsigned long argb = m_pSrcPalette[src_scan[j]]; local
1588 unsigned long argb = m_pSrcPalette[src_scan[j]]; local
1603 unsigned long argb = m_pSrcPalette[src_scan[j]]; local
    [all...]
  /external/webp/src/enc/
vp8l.c 134 const uint32_t* argb = pic->argb; local
137 uint32_t last_pix = ~argb[0]; // so we're sure that last_pix != argb[0]
141 if (argb[x] == last_pix) {
144 last_pix = argb[x];
166 argb += pic->argb_stride;
226 static int AnalyzeEntropy(const uint32_t* argb,
236 const uint32_t* prev_row = argb;
237 const uint32_t* curr_row = argb + argb_stride
    [all...]
picture_csp.c 30 uint32_t argb; member in union:__anon26617
60 const uint32_t* argb = picture->argb; local
61 if (argb == NULL) return 0;
64 if (argb[x] < 0xff000000u) return 1; // test any alpha values != 0xff
66 argb += picture->argb_stride;
995 const uint8_t* const argb = (const uint8_t*)picture->argb; local
    [all...]
backward_references.h 64 static WEBP_INLINE PixOrCopy PixOrCopyCreateLiteral(uint32_t argb) {
67 retval.argb_or_distance = argb;
194 int width, int height, const uint32_t* const argb, int quality,
  /external/libyuv/files/source/
format_conversion.cc 23 // Note: to do this with Neon vld4.8 would load ARGB values into 4 registers
136 // Converts 32 bit ARGB to Bayer RGB formats.
156 const int blue_index = 0; // Offsets for ARGB format
299 // Converts any Bayer RGB format to ARGB.
348 // Converts any Bayer RGB format to ARGB.
475 const int blue_index = 0; // Offsets for ARGB format
  /external/pdfium/core/src/fxge/ge/
fx_ge_device.cpp 432 FX_DWORD argb,
436 return m_pDeviceDriver->SetDIBits(pBitmap, argb, &src_rect, left, top,
445 FX_DWORD argb,
452 return m_pDeviceDriver->StretchDIBits(pBitmap, argb, left, top, dest_width,
458 FX_DWORD argb,
465 return m_pDeviceDriver->StartDIBits(pBitmap, bitmap_alpha, argb, pMatrix,
  /external/pdfium/core/src/fxge/skia/
fx_skia_device.cpp 541 FX_DWORD argb,
548 return m_pAggDriver->SetDIBits(pBitmap, argb, pSrcRect, left, top, blend_type,
553 FX_DWORD argb,
562 return m_pAggDriver->StretchDIBits(pSource, argb, dest_left, dest_top,
569 FX_DWORD argb,
575 return m_pAggDriver->StartDIBits(pSource, bitmap_alpha, argb, pMatrix,
  /external/pdfium/xfa/src/fgas/src/font/
fx_gdifont.cpp 451 FX_ARGB argb,
463 ->GetGlyphDIBits(iGlyphIndex & 0x00FFFFFF, argb, pMatrix, gm, pBuffer,
500 (FX_DWORD*)pBuffer, argb);
522 FX_ARGB argb) {
531 alpha = (argb >> 24) * (alpha * 4 - 1) / 256;
532 *pDIB++ = (alpha << 24) | (argb & 0x00FFFFFF);
  /external/deqp/framework/delibs/deimage/
deImage.h 53 void deImage_setPixel (deImage* image, int x, int y, deARGB argb);
  /external/llvm/lib/Target/NVPTX/
cl_common_defines.h 58 __CLK_UNORM_INT8888, // four channel ARGB unorm8
  /external/pdfium/core/src/fpdfapi/fpdf_edit/
fpdf_edit_image.cpp 175 FX_DWORD argb = pBitmap->GetPaletteArgb(i); local
176 ptr[0] = (uint8_t)(argb >> 16);
177 ptr[1] = (uint8_t)(argb >> 8);
178 ptr[2] = (uint8_t)argb;
  /external/skia/tests/
ARGBImageEncoderTest.cpp 26 // kHeight rows, each with kWidth pixels, premultiplied ARGB for each pixel
  /frameworks/base/core/java/android/animation/
ArgbEvaluator.java 21 * values that represent ARGB colors.
  /frameworks/base/services/core/java/com/android/server/statusbar/
StatusBarManagerInternal.java 27 void notificationLightPulse(int argb, int onMillis, int offMillis);

Completed in 3448 milliseconds

1 2 3 45 6 7 8 91011>>