Home
last modified time | relevance | path

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

/xnu-12377.81.4/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-12377.81.4/doc/primitives/
H A Dstring-handling.md83 to `output` (plus a NUL), `input` is read until reaching a NUL character. This
89 Similarly to `strlcpy`, the `strlcpy_ret` will search for the NUL character
94 When enabling -fbounds-safety, character buffers and NUL-terminated strings are
99 * What is the correct way to transform a character buffer into a NUL-terminated
104 The most common use of character buffers is to build a string, and then this
109 * `strbuf` functions, explicitly accepting character buffers and a distinct
120 * `strl` (new) functions, accepting _one_ character buffer of a known size and
125 `strbuf` functions additionally all have overloads accepting character arrays
135 NUL-terminated string. NUL-terminated character pointers are generally not
137 any NUL character found through a `__null_terminated` pointer access will result
[all …]
/xnu-12377.81.4/bsd/sys/
H A Dutfconv.h64 int unicode_combinable(u_int16_t character);
72 int unicode_decomposeable(u_int16_t character);
/xnu-12377.81.4/osfmk/mach/
H A Dndr.h191 #warning NDR character representation conversions not implemented yet!
/xnu-12377.81.4/osfmk/console/
H A Dvideo_console.c455 unsigned char character = gc_buffer_characters[index]; in gc_hide_cursor() local
462 gc_ops.paint_char(xx, yy, character, attribute, 0, 0); in gc_hide_cursor()
1205 unsigned char character = gc_buffer_characters[index]; in gc_show_cursor() local
1212 gc_ops.paint_char(xx, yy, character, attribute, 0, 0); in gc_show_cursor()
/xnu-12377.81.4/bsd/vm/
H A Dvm_unix.c823 char character; in subyte() local
825 character = (char)byte; in subyte()
826 return copyout((void *)&(character), addr, sizeof(char)) == 0 ? 0 : -1; in subyte()
834 char character; in suibyte() local
836 character = (char)byte; in suibyte()
837 return copyout((void *)&(character), addr, sizeof(char)) == 0 ? 0 : -1; in suibyte()
/xnu-12377.81.4/osfmk/device/
H A Ddevice.defs62 * block and character device interfaces to the kernel.