/prebuilts/gradle-plugin/com/android/tools/ninepatch/25.1.0-beta3/ |
ninepatch-25.1.0-beta3.jar | |
/prebuilts/gradle-plugin/com/android/tools/ninepatch/25.1.0-rc1/ |
ninepatch-25.1.0-rc1.jar | |
/prebuilts/gradle-plugin/com/android/tools/ninepatch/25.1.2/ |
ninepatch-25.1.2.jar | |
/prebuilts/gradle-plugin/com/android/tools/ninepatch/25.2.0-alpha1/ |
ninepatch-25.2.0-alpha1.jar | |
/prebuilts/gradle-plugin/com/android/tools/ninepatch/25.2.0-alpha3/ |
ninepatch-25.2.0-alpha3.jar | |
/prebuilts/gradle-plugin/com/android/tools/ninepatch/25.2.0-alpha4/ |
ninepatch-25.2.0-alpha4.jar | |
/prebuilts/gradle-plugin/com/android/tools/ninepatch/25.2.0-alpha7/ |
ninepatch-25.2.0-alpha7.jar | |
/prebuilts/gradle-plugin/com/android/tools/ninepatch/25.2.0-beta1/ |
ninepatch-25.2.0-beta1.jar | |
/prebuilts/gradle-plugin/com/android/tools/ninepatch/25.2.0-beta2/ |
ninepatch-25.2.0-beta2.jar | |
/prebuilts/gradle-plugin/com/android/tools/ninepatch/25.2.0-beta3/ |
ninepatch-25.2.0-beta3.jar | |
/external/ImageMagick/MagickCore/ |
xwdfile.h_vms | 73 CARD32 bits_per_pixel B32; /* Bits per pixel */ 101 CARD32 pixel B32;
|
/external/ImageMagick/coders/ |
xwd.c | 61 #include "MagickCore/pixel-accessor.h" 187 pixel; 343 colors[i].pixel=color.pixel; 358 MSBOrderLong((unsigned char *) &colors[i].pixel, 359 sizeof(colors[i].pixel)); 365 Allocate the pixel buffer. 466 pixel=XGetPixel(ximage,(int) x,(int) y); 467 index=(Quantum) ((pixel >> red_shift) & red_mask); 471 index=(Quantum) ((pixel >> green_shift) & green_mask) 183 pixel; local [all...] |
ps.c | 71 #include "MagickCore/pixel-accessor.h" 1491 pixel; local 1728 pixel; local 1883 pixel; local 1931 pixel; local [all...] |
/external/ImageMagick/www/api/ |
compare.php | 59 <p>CompareImages() compares one or more pixel channels of an image to a reconstructed image and returns the difference image.</p> 98 <p>GetImageDistortion() compares one or more pixel channels of an image to a reconstructed image and returns the specified distortion metric.</p> 138 <p>GetImageDistortions() compares the pixel channels of an image to a reconstructed image and returns the specified distortion metric for each channel.</p> 174 <p>IsImagesEqual() measures the difference between colors at each pixel location of two images. A value other than 0 means the colors match exactly. Otherwise an error measure is computed by summing over all pixels in an image the distance squared in RGB space between each image pixel and its corresponding pixel in the reconstruct image. The error measure is assigned to these image members:</p> 177 o mean_error_per_pixel: The mean error for any single pixel in 182 <p>The normalized mean quantization error for any single pixel in the image. This distance measure is normalized to a range between 0 and 1. It is independent of the range of red, green, and blue values in the image.</p> 185 <p>The normalized maximum quantization error for any single pixel in the image. This distance measure is normalized to a range between 0 and 1. It is independent of the range of red, green, and blue values in your image.</p>
|
/external/mesa3d/docs/ |
MESA_pack_invert.spec | 33 This extension adds a new pixel storage parameter to indicate that 35 conventional bottom-to-top order. Only pixel packing can be 53 Resolved: No, we're only concerned with pixel packing. There are other 54 solutions for inverting images when using glDrawPixels (negative Y pixel 56 enough to define a complementary extension for pixel packing in the 134 PACK_INVERT_MESA boolean GetBoolean FALSE Value of PACK_INVERT_MESA 4.3.2 pixel-store
|
MESA_pixmap_colormap.spec | 34 in order to compute pixel values during rendering. 65 to compute pixel values from RGB values Mesa requires a colormap.
|
/external/pdfium/core/src/fxge/dib/ |
dib_int.h | 57 PixelWeight* GetPixelWeight(int pixel) { 58 return (PixelWeight*)(m_pWeightTables + (pixel - m_DestMin) * m_ItemSize);
|
/hardware/bsp/intel/peripheral/libupm/src/lol/ |
lol.cxx | 171 unsigned char LoL::setPixel(int x, int y, unsigned char pixel) 176 framebuffer[x + LOL_X*y] = (pixel == 0) ? 0 : 1;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
SwtUtils.java | 204 int pixel = swtData.getPixel(x, y); local 205 awtImage.setRGB(x, y, 0xFF000000 | pixel); 216 int pixel = swtData.getPixel(x, y); local 218 int r = pixel & swtPalette.redMask; 219 int g = pixel & swtPalette.greenMask; 220 int b = pixel & swtPalette.blueMask; 225 pixel = 0xFF000000 | r | g | b; 226 awtImage.setRGB(x, y, pixel);
|
/prebuilts/devtools/tools/lib/ |
chimpchat.jar | |
/prebuilts/gradle-plugin/com/android/tools/chimpchat/24.4.0-beta6/ |
chimpchat-24.4.0-beta6.jar | |
/prebuilts/gradle-plugin/com/android/tools/chimpchat/24.5.0/ |
chimpchat-24.5.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/chimpchat/25.0.0-alpha1/ |
chimpchat-25.0.0-alpha1.jar | |
/cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/ |
MSSIMComparer.java | 177 * Gets the intensity of a given pixel in RGB using luminosity formula 183 private double getIntensity(int pixel) { 186 l += (0.21f * Math.pow(Color.red(pixel) / 255f, gamma)); 187 l += (0.72f * Math.pow(Color.green(pixel) / 255f, gamma)); 188 l += (0.07f * Math.pow(Color.blue(pixel) / 255f, gamma));
|
/external/clang/test/Parser/ |
cxx-altivec.cpp | 25 __vector pixel vv__p; 50 vector pixel v__p; 85 vector bool pixel v_bp; // expected-error {{cannot use '__pixel' with '__vector bool'}} 91 vector __bool pixel v___bp; // expected-error {{cannot use '__pixel' with '__vector bool'}}
|