Home
last modified time | relevance | path

Searched refs:theChar (Results 1 – 2 of 2) sorted by relevance

/xnu-12377.81.4/osfmk/console/
H A Dvideo_console.c1386 unsigned char *theChar; /* current char in iso_font */ in vc_render_char() local
1390 theChar = iso_font + (ch * ISO_CHAR_HEIGHT); in vc_render_char()
1397 *current.charptr++ = (*theChar & mask) ? 0xFF : 0; in vc_render_char()
1400 *current.shortptr++ = (*theChar & mask) ? 0xFFFF : 0; in vc_render_char()
1405 *current.longptr++ = (*theChar & mask) ? 0xFFFFFFFF : 0; in vc_render_char()
1410 theChar++; in vc_render_char()
1418 uint32_t *theChar; in vc_paint_char_8() local
1423 theChar = (uint32_t*)(vc_rendered_font + (ch * vc_rendered_char_size)); in vc_paint_char_8()
1426 theChar = (uint32_t*)(vc_rendered_char); in vc_paint_char_8()
1437 uint32_t val = *theChar++; in vc_paint_char_8()
[all …]
/xnu-12377.81.4/bsd/vfs/
H A Dvfs_utfconv.c947 u_int16_t theChar; in unicode_recursive_decompose() local
956 theChar = firstChar; in unicode_recursive_decompose()
957 bmpMappings = (length == 1 ? &theChar : __CFUniCharMultipleDecompositionTable + firstChar); in unicode_recursive_decompose()