HomeSort by relevance Sort by last modified time
    Searched defs:argb (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
copyimage.cpp 16 uint32_t argb = *reinterpret_cast<const uint32_t*>(source); local
17 *reinterpret_cast<uint32_t*>(dest) = (argb & 0xFF00FF00) | // Keep alpha and green
18 (argb & 0x00FF0000) >> 16 | // Move red to blue
19 (argb & 0x000000FF) << 16; // Move blue to red
  /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/chromium_org/third_party/libvpx/source/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...]
  /external/chromium_org/third_party/libwebp/dsp/
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;
lossless_neon.c 272 const uint8x16_t argb = vld1q_u8((uint8_t*)argb_data); local
274 vcombine_u8(vtbl1_u8(vget_low_u8(argb), shuffle),
275 vtbl1_u8(vget_high_u8(argb), shuffle));
276 vst1q_u8((uint8_t*)argb_data, vsubq_u8(argb, greens));
286 const uint8x16_t argb = vld1q_u8((uint8_t*)argb_data); local
288 vcombine_u8(vtbl1_u8(vget_low_u8(argb), shuffle),
289 vtbl1_u8(vget_high_u8(argb), shuffle));
290 vst1q_u8((uint8_t*)argb_data, vaddq_u8(argb, greens));
lossless.c 595 static WEBP_INLINE void UpdateHisto(int histo_argb[4][256], uint32_t argb) {
596 ++histo_argb[0][argb >> 24];
597 ++histo_argb[1][(argb >> 16) & 0xff];
598 ++histo_argb[2][(argb >> 8) & 0xff];
599 ++histo_argb[3][argb & 0xff];
654 uint32_t* const argb) {
680 argb[pix] = VP8LSubPixels(current_row[col], predict);
686 uint32_t* const argb, uint32_t* const argb_scratch,
705 memcpy(current_tile_rows, &argb[tile_y_offset * width],
720 argb_scratch, argb);
798 const uint32_t argb = argb_data[i]; local
811 const uint32_t argb = data[i]; local
850 const uint32_t argb = data[i]; local
868 const uint32_t argb = data[i]; local
1301 const uint32_t argb = *src++; local
1312 const uint32_t argb = *src++; local
1324 const uint32_t argb = *src++; local
1341 const uint32_t argb = *src++; local
1358 const uint32_t argb = *src++; local
1370 const uint32_t argb = *src++; local
    [all...]
  /external/chromium_org/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...]
  /external/chromium_org/third_party/libwebp/enc/
picture_tools.c 81 if (is_transparent_argb_area(pic->argb + off, pic->argb_stride, SIZE)) {
83 argb_value = pic->argb[off];
86 flatten_argb(pic->argb + off, argb_value, pic->argb_stride, SIZE);
179 uint32_t* argb = pic->argb; local
183 const int alpha = (argb[x] >> 24) & 0xff;
186 int r = (argb[x] >> 16) & 0xff;
187 int g = (argb[x] >> 8) & 0xff;
188 int b = (argb[x] >> 0) & 0xff;
192 argb[x] = MakeARGB32(r, g, b)
    [all...]
picture_csp.c 26 uint32_t argb; member in union:__anon17902
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;
244 // call for ARGB->YUVA conversion
249 if (picture->argb == NULL) {
252 const uint8_t* const argb = (const uint8_t*)picture->argb; local
    [all...]
vp8l.c 52 const uint32_t* argb = pic->argb; local
55 uint32_t last_pix = ~argb[0]; // so we're sure that last_pix != argb[0]
59 if (argb[x] == last_pix) {
62 last_pix = argb[x];
84 argb += pic->argb_stride;
101 static int AnalyzeEntropy(const uint32_t* argb,
107 uint32_t last_pix = argb[0]; // so we're sure that pix_diff == 0
114 const uint32_t pix = argb[x]
706 const uint32_t* const argb = enc->argb_; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
mask.c 170 int argb = 0; local
171 argb = (rgba >> 8);
172 argb |= ((rgba & 0xff) << 24);
173 fprintf(stderr, "0x%x, ", argb);
  /external/libyuv/files/source/
convert_argb.cc 29 // Copy ARGB with optional flipping
50 // Convert I444 to ARGB.
95 // Convert I422 to ARGB.
147 // Convert I411 to ARGB.
193 // Convert I400 to ARGB.
227 // Convert I400 to ARGB.
261 // Convert BGRA to ARGB.
295 // Convert ABGR to ARGB.
329 // Convert RGBA to ARGB.
363 // Convert RAW to ARGB
834 uint8* argb; member in struct:libyuv::ARGBBuffers
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
mask.c 170 int argb = 0; local
171 argb = (rgba >> 8);
172 argb |= ((rgba & 0xff) << 24);
173 fprintf(stderr, "0x%x, ", argb);
  /external/oprofile/libpopt/
poptint.h 50 pbm_set * argb; member in struct:optionStackEntry
  /development/samples/devbytes/graphics/FoldingLayout/src/com/example/android/foldinglayout/
FoldingLayout.java 471 mSolidShadow.setColor(Color.argb(alpha, 0, 0, 0));
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
Image9.cpp 627 unsigned short argb = ((unsigned short*)source)[x]; local
628 unsigned char red = (argb & 0x7C00) >> 7;
629 unsigned char green = (argb & 0x03E0) >> 2;
630 unsigned char blue = (argb & 0x001F) << 3;
646 unsigned short argb = ((unsigned short*)source)[x]; local
647 unsigned char red = (argb & 0x7C00) >> 7;
648 unsigned char green = (argb & 0x03E0) >> 2;
649 unsigned char blue = (argb & 0x001F) << 3;
650 unsigned char alpha = (signed short)argb >> 15;
  /cts/tests/tests/graphics/src/android/graphics/cts/
YuvImageTest.java 203 int[] argb = new int[stride * height]; local
204 mTestBitmaps[0].getPixels(argb, 0, stride, 0, 0, width, height);
205 byte[] yuv = convertArgbsToYuvs(argb, stride, height, ImageFormat.NV21);
239 int[] argb = new int [stride * height]; local
240 bitmap.getPixels(argb, 0, stride, 0, 0, width, height);
241 byte[] yuv = convertArgbsToYuvs(argb, stride, height, format);
303 private byte[] convertArgbsToYuvs(int[] argb, int width, int height,
313 argb2yuv(argb[idx], yuvColor);
328 argb2yuv(argb[idx], yuvColor0);
329 argb2yuv(argb[idx + 1], yuvColor1)
397 int[] argb = new int[WIDTH * HEIGHT]; local
    [all...]
  /external/chromium_org/third_party/libwebp/webp/
encode.h 286 // Main flag for encoder selecting between ARGB or YUV input.
287 // It is recommended to use ARGB input (*argb, argb_stride) for lossless
301 // ARGB input (mostly used for input to lossless compression)
302 uint32_t* argb; // Pointer to argb (32 bit) plane. member in struct:WebPPicture
345 void* memory_argb_; // and for argb too.
449 // Converts picture->argb data to the YUVA format specified by 'colorspace'.
464 // Converts picture->yuv to picture->argb and sets picture->use_argb to true.
467 // raw ARGB samples, since using YUV420 is comparatively lossy. Also, th
    [all...]
  /external/chromium_org/third_party/webrtc/base/
x11windowpicker.cc 588 uint32 argb; local
590 argb = argb_data[stride_x * (y + i) + x + j];
591 rgba = (argb << 8) | (argb >> 24);
  /development/samples/training/AnimationsDemo/libs/
android-support-v13.jar 
  /development/samples/training/basic/FragmentBasics/libs/
android-support-v4.jar 
  /development/samples/training/location-aware/libs/
android-support-v4.jar 
  /development/samples/ControllerSample/libs/
android-support-v4.jar 
  /development/samples/training/ContactsList/libs/
android-support-v4.jar 
  /development/samples/training/EffectiveNavigation/libs/
android-support-v4.jar 

Completed in 3853 milliseconds

1 2