HomeSort by relevance Sort by last modified time
    Searched refs:argb (Results 26 - 50 of 283) sorted by null

12 3 4 5 6 7 8 91011>>

  /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...]
lossless.h 49 uint32_t* const argb, uint32_t* const argb_scratch,
53 uint32_t* const argb, uint32_t* image);
  /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/pdfium/fpdfsdk/include/
fsdk_define.h 36 #define FX_ARGBTOCOLORREF(argb) \
37 ((((FX_DWORD)argb & 0x00FF0000) >> 16) | ((FX_DWORD)argb & 0x0000FF00) | \
38 (((FX_DWORD)argb & 0x000000FF) << 16))
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ColorTest.java 23 int color = Color.argb(100, 160, 160, 160);
  /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.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);
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...]
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,
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);
  /external/libvpx/libvpx/third_party/libyuv/source/
compare.cc 82 static uint32 ARGBDetectRow_C(const uint8* argb, int width) {
85 if (argb[0] != 255) { // First byte is not Alpha of 255, so not ARGB.
88 if (argb[3] != 255) { // 4th byte is not Alpha of 255, so not BGRA.
91 if (argb[4] != 255) { // Second pixel first byte is not Alpha of 255.
94 if (argb[7] != 255) { // Second pixel 4th byte is not Alpha of 255.
97 argb += 8;
100 if (argb[0] != 255) { // First byte is not Alpha of 255, so not ARGB.
103 if (argb[3] != 255) { // 4th byte is not Alpha of 255, so not BGRA
    [all...]
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/libyuv/files/source/
compare.cc 66 static uint32 ARGBDetectRow_C(const uint8* argb, int width) {
69 if (argb[0] != 255) { // First byte is not Alpha of 255, so not ARGB.
72 if (argb[3] != 255) { // 4th byte is not Alpha of 255, so not BGRA.
75 if (argb[4] != 255) { // Second pixel first byte is not Alpha of 255.
78 if (argb[7] != 255) { // Second pixel 4th byte is not Alpha of 255.
81 argb += 8;
84 if (argb[0] != 255) { // First byte is not Alpha of 255, so not ARGB.
87 if (argb[3] != 255) { // 4th byte is not Alpha of 255, so not BGRA
    [all...]
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...]
  /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...]
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/valgrind/memcheck/tests/
inlinfo.c 18 INLINE int fun_b(int argb) {
20 locb += argb;
  /external/valgrind/memcheck/tests/solaris/
inlinfo_nested.c 21 INLINE int fun_b(int argb) {
23 locb += argb;
  /external/opencv3/3rdparty/libwebp/enc/
picture.c 32 uint32_t argb; member in union:__anon20453
129 memory = WebPSafeMalloc(argb_size, sizeof(*picture->argb));
134 picture->argb = (uint32_t*)memory;
141 // Remove reference to the ARGB buffer (doesn't free anything).
144 picture->argb = NULL;
168 // Allocate a new argb buffer, discarding any existing one and preserving
180 picture->argb = tmp.argb;
185 // Release memory owned by 'picture' (both YUV and ARGB buffers).
263 CopyPlane((const uint8_t*)src->argb, 4 * src->argb_stride
540 const uint32_t* argb = picture->argb; local
700 const uint32_t argb = local
714 const uint32_t argb = ((uint32_t)a_ptr[offset] << 24) | local
827 const uint8_t* const argb = (const uint8_t*)picture->argb; local
    [all...]
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/deqp/framework/delibs/deimage/
deImage.h 53 void deImage_setPixel (deImage* image, int x, int y, deARGB argb);
  /frameworks/base/services/core/java/com/android/server/statusbar/
StatusBarManagerInternal.java 27 void notificationLightPulse(int argb, int onMillis, int offMillis);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategorySelected.java 26 mPaint.setColor(Color.argb(128, 128, 128, 128));
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
PhotoProcessorTest.java 51 assertEquals(Color.argb(255, 255, 255, 255), normalized.getPixel(0, 0));
  /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...]

Completed in 417 milliseconds

12 3 4 5 6 7 8 91011>>