Lines Matching refs:bytesPerRow

137     fprintf(stderr, "\t        bytesPerRow=%ld\n", (long)isdo->contextInfo.bytesPerRow);
144 fprintf(stderr, "\t bytesPerRow=%ld\n", (long)isdo->imageInfo.bytesPerRow);
183 isdo->contextInfo.bytesPerRow,
917 size_t bytesPerRow = isdo->contextInfo.bytesPerRow;
918 size_t size = bytesPerRow * isdo->height;
926 //fprintf(stderr, "isdo=%p isdo->type=%d, bitsPerComponent=%d, bytesPerRow=%d, colorSpace=%p, alphaInfo=%d, width=%d, height=%d, size=%d\n", isdo, type, (jint)bitsPerComponent, (jint)bytesPerRow, colorSpace, (jint)alphaInfo, (jint) isdo->width, (jint) isdo->height, (jint) size);
928 qsdo->cgRef = CGBitmapContextCreate(isdo->nativePixels, isdo->width, isdo->height, bitsPerComponent, bytesPerRow, colorSpace, alphaInfo);
1028 size_t bytesPerRow = 0;
1029 size_t extraBytesPerRow = 0; // these are the extra bytesPerRow used for alignement
1037 bytesPerRow = isdo->javaPixelsBytesPerRow;
1038 dataProviderDataSize = bytesPerRow*isdo->height;
1044 bytesPerRow = isdo->imageInfo.bytesPerRow;
1045 dataProviderDataSize = bytesPerRow*height;
1063 copyBits(width, height, isdo->javaPixelsBytesPerRow, (Pixel8bit*)isdo->pixels, bytesPerRow, dataProviderData);
1089 CGImageRef javaImg = CGImageCreate(width, height, bitsPerComponent, bitsPerPixel, bytesPerRow,
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);
1141 processPixelsCallback(isdo, (jint) isdo->contextInfo.bytesPerRow, (Pixel32bit *) isdo->nativePixels, x, y, width, height);
1183 jint srcBytesPerRow = isdo->contextInfo.bytesPerRow;
1823 isdo->contextInfo.bytesPerRow = width*isdo->contextInfo.bytesPerPixel;
1824 isdo->imageInfo.bytesPerRow = width*isdo->imageInfo.bytesPerPixel;