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

12 3 4 5 6

  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
PhotoProcessorTest.java 49 assertEquals(Color.argb(255, 255, 255, 255), normalized.getPixel(0, 0));
  /development/samples/ApiDemos/src/com/example/android/apis/os/
Sensors.java 74 mColors[0] = Color.argb(192, 255, 64, 64);
75 mColors[1] = Color.argb(192, 64, 128, 64);
76 mColors[2] = Color.argb(192, 64, 64, 255);
77 mColors[3] = Color.argb(192, 64, 255, 255);
78 mColors[4] = Color.argb(192, 128, 64, 128);
79 mColors[5] = Color.argb(192, 255, 255, 64);
  /external/pixman/pixman/
pixman-access.c 601 argb_t *argb = buffer; local
603 argb->a = pixman_unorm_to_float ((p >> 24) & 0xff, 8);
605 argb->r = to_linear [(p >> 16) & 0xff];
606 argb->g = to_linear [(p >> 8) & 0xff];
607 argb->b = to_linear [(p >> 0) & 0xff];
818 argb_t argb; local
820 argb.a = 1.0;
821 argb.r = pixman_unorm_to_float (r, 10);
822 argb.g = pixman_unorm_to_float (g, 10);
823 argb.b = pixman_unorm_to_float (b, 10)
839 argb_t argb; local
860 argb_t argb; local
880 argb_t argb; local
897 argb_t argb; local
    [all...]
  /external/pixman/test/
combiner-test.c 76 random_floats (argb_t *argb, int width)
82 argb_t *p = argb + i;
  /external/chromium_org/third_party/libwebp/enc/
vp8l.c 56 const uint32_t* argb = pic->argb; local
59 uint32_t last_pix = ~argb[0]; // so we're sure that last_pix != argb[0]
63 if (argb[x] == last_pix) {
66 last_pix = argb[x];
88 argb += pic->argb_stride;
105 static int AnalyzeEntropy(const uint32_t* argb,
111 uint32_t last_pix = argb[0]; // so we're sure that pix_diff == 0
123 const uint32_t pix = argb[x]
645 const uint32_t* const argb = enc->argb_; local
    [all...]
  /external/webp/src/enc/
vp8l.c 56 const uint32_t* argb = pic->argb; local
59 uint32_t last_pix = ~argb[0]; // so we're sure that last_pix != argb[0]
63 if (argb[x] == last_pix) {
66 last_pix = argb[x];
88 argb += pic->argb_stride;
105 static int AnalyzeEntropy(const uint32_t* argb,
111 uint32_t last_pix = argb[0]; // so we're sure that pix_diff == 0
123 const uint32_t pix = argb[x]
645 const uint32_t* const argb = enc->argb_; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/accessibility/
CaptionPropertiesFragment.java 200 final int argb; local
202 argb = Color.alpha(bgAlpha);
204 argb = bgColor & 0x00FFFFFF | bgAlpha & 0xFF000000;
207 cr, Settings.Secure.ACCESSIBILITY_CAPTIONING_BACKGROUND_COLOR, argb);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Bitmap_Delegate.java 294 int[] argb = new int[width * height]; local
295 srcImage.getRGB(0, 0, width, height, argb, 0, width);
296 image.setRGB(0, 0, width, height, argb, 0, width);
644 int[] argb = new int[w * h]; local
645 image.getRGB(0, 0, image.getWidth(), image.getHeight(), argb, 0, image.getWidth());
648 final int length = argb.length;
650 int a = (argb[i] >>> 24 * alpha) / 255;
651 argb[i] = (a << 24) | (argb[i] & 0x00FFFFFF);
655 result.setRGB(0, 0, w, h, argb, 0, w)
    [all...]
  /packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/
HoloSpiralRS.java 58 private static final int POINTS_COLOR_BLUE = Color.argb(179, 0, 0, 255);
59 private static final int POINTS_COLOR_GREEN = Color.argb(210, 166, 51, 255);
60 private static final int POINTS_COLOR_AQUA = Color.argb(220, 38, 120, 148);
61 private static final int BG_COLOR_BLACK = Color.argb(255, 26, 26, 83);
62 private static final int BG_COLOR_BLUE = Color.argb(255, 8, 0, 26);
  /external/oprofile/libpopt/
popt.c 183 con->os->argb = NULL;
219 /*@releases os->nextArg, os->argv, os->argb @*/
224 os->argb = PBM_FREE(os->argb);
236 con->os->argb = PBM_FREE(con->os->argb);
373 con->os->argb = NULL;
547 con->os->next, con->os->argb, con->os->argc, con->os->argv @*/
561 if (os->argb && PBM_ISSET(i, os->argb))
    [all...]
poptint.h 50 pbm_set * argb; member in struct:optionStackEntry
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactoryTest.java 77 Color.argb(255, 0, 0, 0),
78 Color.argb(128, 255, 0, 0),
79 Color.argb(128, 25, 26, 27),
80 Color.argb(2, 255, 254, 253),
85 Color.argb(255, 0, 0, 0),
86 Color.argb(128, 255, 0, 0),
87 Color.argb(128, 26, 26, 28),
88 Color.argb(2, 255, 255, 255),
ColorTest.java 30 assertEquals(Color.RED, Color.argb(0xff, 0xff, 0x00, 0x00));
31 assertEquals(Color.YELLOW, Color.argb(0xff, 0xff, 0xff, 0x00));
PixelXorXfermodeTest.java 63 return Color.argb(alpha, red, green, blue);
PorterDuffColorFilterTest.java 43 int filterColor = Color.argb(0x80, 0, 0xFF, 0);
  /packages/apps/Camera2/src/com/android/camera/ui/
ProgressRenderer.java 122 paint.setColor(Color.argb((int) (alpha * 255), 255, 255, 255));
  /external/qemu/distrib/sdl-1.2.15/src/hermes/
mmxp2_32.asm 140 movq mm0, [esi] ; argb
141 movq mm1, mm0 ; argb
143 movq mm3, mm1 ; argb
150 movq mm4, [esi+8] ; argb
151 movq mm2, mm4 ; argb
153 movq mm1, mm2 ; argb
  /external/jmonkeyengine/engine/src/desktop/jme3tools/converters/
ImageToAwt.java 224 // Get ARGB
225 int argb = image.getRGB(x, y); local
228 int a = (argb & 0xff000000) >> 24;
229 int r = (argb & 0x00ff0000) >> 16;
230 int g = (argb & 0x0000ff00) >> 8;
231 int b = (argb & 0x000000ff);
361 // int argb = (a << 24) | (r << 16) | (g << 8) | b;
362 // out.setRGB(x, y, argb);
471 int argb = (a << 24) | (r << 16) | (g << 8) | b; local
472 out.setRGB(x, y, argb);
    [all...]
  /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/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
Image9.cpp 653 unsigned short argb = ((unsigned short*)source)[x]; local
654 unsigned char red = (argb & 0x7C00) >> 7;
655 unsigned char green = (argb & 0x03E0) >> 2;
656 unsigned char blue = (argb & 0x001F) << 3;
672 unsigned short argb = ((unsigned short*)source)[x]; local
673 unsigned char red = (argb & 0x7C00) >> 7;
674 unsigned char green = (argb & 0x03E0) >> 2;
675 unsigned char blue = (argb & 0x001F) << 3;
676 unsigned char alpha = (signed short)argb >> 15;
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
GLCanvas.java 45 public abstract void clearBuffer(float[] argb);
  /packages/apps/Camera/src/com/android/camera/
CaptureAnimManager.java 122 int color = Color.argb((int) (255 * f), 255, 255, 255);
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLCanvas.java 45 public abstract void clearBuffer(float[] argb);
  /packages/apps/Launcher3/src/com/android/gallery3d/glrenderer/
GLCanvas.java 45 public abstract void clearBuffer(float[] argb);
  /packages/apps/SoundRecorder/src/com/android/soundrecorder/
VUMeter.java 59 mShadow.setColor(Color.argb(60, 0, 0, 0));

Completed in 843 milliseconds

12 3 4 5 6