Searched refs:bytesPerPixel (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DRowFilter.java37 int bytesPerPixel,
40 for (int i = bytesPerPixel; i < bytesPerRow + bytesPerPixel; i++) {
42 int left = currRow[i - bytesPerPixel] & 0xff;
56 int bytesPerPixel,
59 for (int i = bytesPerPixel; i < bytesPerRow + bytesPerPixel; i++) {
91 int bytesPerPixel) {
95 System.arraycopy(currRow, bytesPerPixel,
96 scratchRows[0], bytesPerPixel,
35 subFilter(byte[] currRow, byte[] subFilteredRow, int bytesPerPixel, int bytesPerRow) argument
53 upFilter(byte[] currRow, byte[] prevRow, byte[] upFilteredRow, int bytesPerPixel, int bytesPerRow) argument
86 filterRow(int colorType, byte[] currRow, byte[] prevRow, byte[][] scratchRows, int bytesPerRow, int bytesPerPixel) argument
[all...]
H A DPNGImageReader.java963 int bytesPerPixel = (bitDepth == 16) ? 2 : 1;
964 bytesPerPixel *= inputBands;
1102 decodeSubFilter(curr, 0, bytesPerRow, bytesPerPixel);
1109 bytesPerPixel);
1113 bytesPerPixel);
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DImageSurfaceData.h49 size_t bytesPerPixel; member in struct:_ContextInfo
59 size_t bytesPerPixel; member in struct:_ImageInfo
H A DImageSurfaceData.m136 fprintf(stderr, "\t bytesPerPixel=%ld\n", (long)isdo->contextInfo.bytesPerPixel);
143 fprintf(stderr, "\t bytesPerPixel=%ld\n", (long)isdo->imageInfo.bytesPerPixel);
182 isdo->contextInfo.bytesPerPixel * 8,
1129 //fprintf(stderr, "isdo->type=%d, isdo->width=%d, isdo->height=%d, isdo->imageInfo.bitsPerComponent=%d, isdo->imageInfo.bytesPerPixel=%d, isdo->imageInfo.bitsPerPixel=%d, isdo->imageInfo.bytesPerRow=%d, isdo->imageInfo.colorSpace=%p, isdo->imageInfo.alphaInfo=%d\n",
1130 //(jint)isdo->type, (jint)isdo->width, (jint)isdo->height, (jint)isdo->imageInfo.bitsPerComponent, (jint)isdo->imageInfo.bytesPerPixel, (jint)isdo->imageInfo.bitsPerPixel, (jint)isdo->imageInfo.bytesPerRow, isdo->imageInfo.colorSpace, (jint)isdo->imageInfo.alphaInfo);
1195 jint widthInBytes = isdo->width * isdo->contextInfo.bytesPerPixel;
1823 isdo->contextInfo.bytesPerRow = width*isdo->contextInfo.bytesPerPixel;
1824 isdo->imageInfo.bytesPerRow = width*isdo->imageInfo.bytesPerPixel;
[all...]
/openjdk7/jdk/src/macosx/native/sun/font/
H A DCGGlyphImages.m77 const size_t bytesPerPixel, const int width, const int height)
88 for (k = 0; k < bytesPerPixel; k++) {
89 if (pixels[i * bytesPerPixel + k] > 0x80) j++;
109 for(k = 0; k < bytesPerPixel; k++) {
110 p += pixels[(y * width + x) * bytesPerPixel + k];
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DPNGImageDecoder.java333 int bytesPerPixel = (bitsPerPixel+7)>>3;
370 rowFilter, rowByteWidth, bytesPerPixel);

Completed in 43 milliseconds