Searched refs:pixels (Results 1 - 3 of 3) sorted by relevance

/xnu-2422.115.4/osfmk/console/panic_ui/
H A Dqtif2kraw.c13 int EncodeImage( unsigned char * data, int pixels, unsigned char * fileArr );
75 short width; /* how many pixels wide is this data */
76 short height; /* how many pixels high is this data */
113 unsigned int i, pixels, sum, encodedSize, fg24= 0xFFFFFF, bg24=0x222222; local
222 pixels = image_header.dataSize;
225 pixels = convert8toGrey( data, image_header.dataSize );
228 pixels = convert8bitIndexto8( data, height, width, &data );
229 image_header.dataSize = pixels;
232 printf("Converted %d pixels%s...\n", pixels/dept
473 EncodeImage( unsigned char * data, int pixels, unsigned char * fileArr ) argument
[all...]
H A Dgenimage.c16 int pixels,
165 short width; /* how many pixels wide is this data */
166 short height; /* how many pixels high is this data */
208 unsigned int i, pixels, sum, encodedSize, fg24= 0xFFFFFF, bg24=0x222222; local
364 pixels = image_header.dataSize;
369 pixels = convert24toGrey( data, image_header.dataSize);
374 pixels = convert24to8bitIndex( data, height, width, &data );
375 image_header.dataSize = pixels;
381 pixels = convert8toGrey( data, image_header.dataSize );
386 pixels
862 EncodeImage( unsigned char * data, int pixels, unsigned char * fileArr ) argument
[all...]
H A Dsetupdialog.c39 unsigned int i, pixels, filePos; local
63 else if (strcmp(argv[next], "-w") == 0) // image width (pixels)
65 else if (strcmp(argv[next], "-h") == 0) // image height (pixels)
112 pixels = width * height;
114 if (!(fileArr = (unsigned char *) malloc(pixels))) {
115 printf("couldn't malloc fileArr (%d pixels)... bailing.\n", pixels);
123 for (i=0; i < pixels; i++) {

Completed in 23 milliseconds