Searched refs:fore (Results 1 - 5 of 5) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/osfmk/console/i386/
H A Dtext_console.h42 void tc_update_color(int color, int fore);
H A Dtext_console.c287 tc_update_color( int color, int fore )
300 if ( fore )
/macosx-10.5.8/xnu-1228.15.4/libsa/
H A Dmalloc.c106 malloc_block *amem, *fore, *aft; local
115 fore = amem->malFwd; /* Get the guy in front */
117 fore->malBwd = aft; /* The next guy's previous is now my previous */
118 aft->malFwd = fore; /* The previous guy's forward is now mine */
/macosx-10.5.8/xnu-1228.15.4/osfmk/console/
H A Dvideo_console.c142 void (*update_color)(int color, boolean_t fore);
214 #define COLOR_CODE_GET(code, fore) (((code) & ((fore) ? 0xF0 : 0x0F)) >> ((fore) ? 4 : 0))
215 #define COLOR_CODE_SET(code, color, fore) (((code) & ((fore) ? 0x0F : 0xF0)) | ((color) << ((fore) ? 4 : 0)))
277 static void gc_update_color(int color, boolean_t fore);
1230 gc_update_color(int color, boolean_t fore) argument
1232 gc_color_code = COLOR_CODE_SET(gc_color_code, color, fore);
1752 vc_update_color(int color, boolean_t fore) argument
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A Dpmap.c667 pmap_t pmap, ckpmap, fore; local
725 fore = (pmap_t)ckpmap->pmap_link.prev; /* Get the current's previous */
727 fore->pmap_link.next = (queue_t)pmap; /* Current's previous's next points to me */
728 pmap->pmap_link.prev = (queue_t)fore; /* My prev points to what the current pointed to */
766 pmap_t fore, aft; local
809 fore = (pmap_t)pmap->pmap_link.prev;
811 fore->pmap_link.next = pmap->pmap_link.next; /* My previous's next is my next */

Completed in 93 milliseconds