Searched refs:width (Results 1 - 20 of 20) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/pexpert/pexpert/
H A Dpe_images.h39 int width; member in struct:vc_progress_element
49 unsigned int width; member in struct:boot_progress_element
/macosx-10.5.8/xnu-1228.15.4/libkern/stdio/
H A Dscanf.c136 size_t width; /* field width, or 0 */ local
169 width = 0;
210 width = width * 10 + c - '0';
317 if (width == 0)
318 width = 1;
322 if ((n = inr) < (int)width) {
324 width -= n;
330 sum += width;
[all...]
/macosx-10.5.8/xnu-1228.15.4/EXTERNAL_HEADERS/architecture/i386/
H A Dreg_help.h52 #define MKMASK(width, offset) (((unsigned)-1)>>(32-(width))<<(offset))
/macosx-10.5.8/xnu-1228.15.4/osfmk/console/panic_ui/
H A Dsetupdialog.c22 printf("MacOS X system CLUT. The first %d bytes must be the width, height, and depth\n", 3 * sizeof(short));
36 short width = 0, height = 0, depth = 0; local
63 else if (strcmp(argv[next], "-w") == 0) // image width (pixels)
64 width = strtoul(argv[++next], &ptr, 0);
66 width = strtoul(argv[++next], &ptr, 0);
100 fread((void *) &width, sizeof(short), 1, stream);
101 printf("got width: %d\n", width);
107 if (!(width && height && depth)) {
108 printf("Invalid image file header (width, heigh
213 int width[17] = {9,7,8,6,9,7,8,7,8,7,10,7,9,10,7,6,4}; local
[all...]
H A Dgenimage.c36 int width,
41 int width,
46 int width,
58 int width,
165 short width; /* how many pixels wide is this data */ member in struct:QTHeader
206 unsigned short width = 0, height = 0; local
336 width = image_header.width;
340 printf("Image info: width: %d height: %d depth: %d...\n", width, heigh
1304 convert24to8bitIndex( unsigned char * data, int height, int width, unsigned char ** dout ) argument
1338 convert8bitIndexto8( unsigned char * data, int height, int width, unsigned char ** dout ) argument
1372 convert8bitIndexto24( unsigned char * data, int height, int width, unsigned char ** dout ) argument
1468 WriteQTRawFile( FILE * ostream, unsigned char * data, int height, int width, int depth, unsigned int size ) argument
[all...]
H A Dqtif2kraw.c18 int convert8bitIndexto8( unsigned char * data, int height, int width, unsigned char ** dout );
75 short width; /* how many pixels wide is this data */ member in struct:QTHeader
111 unsigned short width = 0, height = 0; local
200 width = image_header.width;
204 printf("Image info: width: %d height: %d depth: %d...\n", width, height, depth);
206 if (!(width && height && depth)) {
207 fprintf(stderr,"Err: Invalid image file header (width, height, or depth is 0)\n");
228 pixels = convert8bitIndexto8( data, height, width,
828 convert8bitIndexto8( unsigned char * data, int height, int width, unsigned char ** dout ) argument
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/ddb/
H A Ddb_examine.c160 int width; local
162 width = size * 2 + 1;
163 sz = (db_max_width - (sizeof (void *) * 2 + 4)) / width;
167 sz = sizeof (void *) * 2 + 4 + entry * width;
169 width++;
174 return width;
187 int width; local
199 width = db_examine_width(size, &items, &leader);
204 width = db_examine_width(size, &items, &leader);
208 width
[all...]
H A Dmakedis.c790 int nargs, width; local
795 width = nargs = 0;
799 width = 1;
802 width += 2;
812 width++;
876 width += fp->nbits;
877 if (width > maxargwidth)
878 maxargwidth = width;
1436 int width; local
1441 width
[all...]
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/
H A Dkmreg_com.h63 * A rect at (x,y) measuring 'width' by 'height' will be cleared to
69 unsigned short width; /* Width and height of rect to be imaged, member in struct:km_drawrect
/macosx-10.5.8/xnu-1228.15.4/osfmk/console/
H A Dpanic_dialog.c55 static void panic_blit_rect(unsigned int x, unsigned int y, unsigned int width,
474 unsigned int width, unsigned int height,
477 unsigned int width, unsigned int height,
480 unsigned int width, unsigned int height,
524 unsigned width = FONT_WIDTH, height = FONT_HEIGHT; local
542 panic_blit_rect( panic_info_x, panic_info_y , width, height, 255, (unsigned char *) rendered_font);
543 panic_info_x += width;
548 panic_blit_rect(unsigned int x, unsigned int y, unsigned int width, argument
557 panic_blit_rect_8( x, y, width, height, transparent, dataPtr);
560 panic_blit_rect_16( x, y, width, heigh
574 panic_blit_rect_8(unsigned int x, unsigned int y, unsigned int width, unsigned int height, __unused int transparent, const unsigned char * dataPtr) argument
627 panic_blit_rect_16(unsigned int x, unsigned int y, unsigned int width, unsigned int height, __unused int transparent, const unsigned char *dataPtr) argument
677 panic_blit_rect_32(unsigned int x, unsigned int y, unsigned int width, unsigned int height, __unused int transparent, const unsigned char *dataPtr) argument
[all...]
H A Dvideo_console.c1774 int width; member in struct:vc_progress_element
1799 static void vc_blit_rect( int x, int y, int width, int height,
1802 static void vc_blit_rect_8( int x, int y, int width, int height,
1805 static void vc_blit_rect_16( int x, int y, int width, int height,
1808 static void vc_blit_rect_32( int x, int y, int width, int height,
1817 int width, int height,
1829 vc_blit_rect_8( x, y, width, height, dataPtr, alphaPtr, (unsigned char *) backBuffer, save, static_alpha );
1832 vc_blit_rect_16( x, y, width, height, dataPtr, alphaPtr, (unsigned short *) backBuffer, save, static_alpha );
1835 vc_blit_rect_32( x, y, width, height, dataPtr, alphaPtr, (unsigned int *) backBuffer, save, static_alpha );
1841 vc_blit_rect_8(int x, int y, int width, in argument
1816 vc_blit_rect( int x, int y, int width, int height, const unsigned char * dataPtr, const unsigned char * alphaPtr, void * backBuffer, boolean_t save, boolean_t static_alpha ) argument
1880 vc_blit_rect_16( int x, int y, int width, int height, const unsigned char * dataPtr, const unsigned char * alphaPtr, unsigned short * backPtr, boolean_t save, boolean_t static_alpha ) argument
1955 vc_blit_rect_32( int x, int y, int width, int height, const unsigned char * dataPtr, const unsigned char * alphaPtr, unsigned int * backPtr, boolean_t save, boolean_t static_alpha ) argument
2031 int x, y, width, height; local
2174 int x, y, width, height; local
[all...]
/macosx-10.5.8/xnu-1228.15.4/EXTERNAL_HEADERS/architecture/ppc/
H A Dreg_help.h203 #define MKMASK(width, offset) (((unsigned)-1)>>(32-(width))<<(offset))
/macosx-10.5.8/xnu-1228.15.4/pexpert/i386/
H A Dpe_init.c124 default_noroot.width = bootPict->width;
138 default_noroot.width = kFailedBootWidth;
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/i386/
H A Dcons.c63 __unused int width,
256 * The height and width arguments are not used; they are provided for
261 __unused int width,
260 alert( __unused int width, __unused int height, __unused const char *title, const char *msg, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8) argument
H A Dsysctl.c301 SYSCTL_PROC(_machdep_cpu_arch_perf, OID_AUTO, width,
305 hw_cpu_sysctl, "I", "Bit width of counters");
329 hw_cpu_sysctl, "I", "Bit-width of fixed-function counters");
/macosx-10.5.8/xnu-1228.15.4/pexpert/ppc/
H A Dpe_init.c137 default_noroot.width = bootPict->width;
/macosx-10.5.8/xnu-1228.15.4/bsd/dev/ppc/
H A Dcons.c220 * The height and width arguments are not used; they are provided for
225 __unused int width,
224 alert( __unused int width, __unused int height, __unused const char *title, const char *msg, int p1, int p2, int p3, int p4, int p5, int p6, int p7, int p8) argument
/macosx-10.5.8/xnu-1228.15.4/iokit/IOKit/
H A DIOHibernatePrivate.h166 uint32_t width; // Width member in struct:hibernate_graphics_t
/macosx-10.5.8/xnu-1228.15.4/iokit/Kernel/
H A DIOHibernateIO.cpp1345 screen += ((display->width
1405 screen += ((display->width
1481 graphicsInfo->width = consoleInfo.v_width;
1489 gIOHibernateGraphicsInfo->width, gIOHibernateGraphicsInfo->height);
2230 gIOHibernateGraphicsInfo->width, gIOHibernateGraphicsInfo->height);
/macosx-10.5.8/xnu-1228.15.4/libkern/
H A Dzlib.c2274 * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))
2430 # define SEPARATOR(i, last, width) \
2432 ((i) % (width) == (width)-1 ? ",\n" : ", "))

Completed in 92 milliseconds