Home
last modified time | relevance | path

Searched refs:character (Results 1 – 7 of 7) sorted by relevance

/xnu-8020.140.41/bsd/vfs/
H A Dvfs_utfconv.c90 unicode_combinable(u_int16_t character) in unicode_combinable() argument
95 if (character < 0x0300) { in unicode_combinable()
99 value = bitmap[(character >> 8) & 0xFF]; in unicode_combinable()
105 return bitmap[(character & 0xFF) / 8] & (1 << (character % 8)) ? 1 : 0; in unicode_combinable()
116 unicode_decomposeable(u_int16_t character) in unicode_decomposeable() argument
121 if (character < 0x00C0) { in unicode_decomposeable()
125 value = bitmap[(character >> 8) & 0xFF]; in unicode_decomposeable()
131 return bitmap[(character & 0xFF) / 8] & (1 << (character % 8)) ? 1 : 0; in unicode_decomposeable()
143 get_combining_class(u_int16_t character) in get_combining_class() argument
147 u_int8_t value = bitmap[(character >> 8)]; in get_combining_class()
[all …]
/xnu-8020.140.41/bsd/sys/
H A Dutfconv.h64 int unicode_combinable(u_int16_t character);
72 int unicode_decomposeable(u_int16_t character);
/xnu-8020.140.41/osfmk/mach/
H A Dndr.h191 #warning NDR character representation conversions not implemented yet!
/xnu-8020.140.41/bsd/vm/
H A Dvm_unix.c569 char character; in subyte() local
571 character = (char)byte; in subyte()
572 return copyout((void *)&(character), addr, sizeof(char)) == 0 ? 0 : -1; in subyte()
580 char character; in suibyte() local
582 character = (char)byte; in suibyte()
583 return copyout((void *)&(character), addr, sizeof(char)) == 0 ? 0 : -1; in suibyte()
/xnu-8020.140.41/osfmk/console/
H A Dvideo_console.c456 unsigned char character = gc_buffer_characters[index]; in gc_hide_cursor() local
463 gc_ops.paint_char(xx, yy, character, attribute, 0, 0); in gc_hide_cursor()
1206 unsigned char character = gc_buffer_characters[index]; in gc_show_cursor() local
1213 gc_ops.paint_char(xx, yy, character, attribute, 0, 0); in gc_show_cursor()
/xnu-8020.140.41/osfmk/device/
H A Ddevice.defs62 * block and character device interfaces to the kernel.
/xnu-8020.140.41/doc/
H A Ddebugging.md236 a non-float formatting character. Automated scripts that convert from Python 2 to 3 tend to use