Home
last modified time | relevance | path

Searched refs:codepoint (Results 1 – 19 of 19) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/DataFormatters/
H A DStringPrinter.cpp69 static bool isprint32(char32_t codepoint) { in isprint32() argument
70 if (codepoint <= 0x1F || codepoint == 0x7F) // C0 in isprint32()
74 if (codepoint >= 0x80 && codepoint <= 0x9F) // C1 in isprint32()
78 if (codepoint == 0x2028 || codepoint == 0x2029) // line/paragraph separators in isprint32()
82 if (codepoint == 0x200E || codepoint == 0x200F || in isprint32()
83 (codepoint >= 0x202A && in isprint32()
84 codepoint <= 0x202E)) // bidirectional text control in isprint32()
88 if (codepoint >= 0xFFF9 && in isprint32()
180 llvm::UTF32 codepoint = 0; in GetPrintableImpl() local
195 if (isprint32(codepoint)) in GetPrintableImpl()
[all …]
/freebsd-13.1/share/i18n/csmapper/JIS/
H A DUCS@SIP%JISX0213-1.src20 ## [1983] JIS codepoint defined by JIS X 0208-1983
21 ## [1990] JIS codepoint defined by JIS X 0208-1990
22 ## [2000] JIS codepoint defined by JIS X 0213:2000
23 ## [2004] JIS codepoint defined by JIS X 0213:2004
24 ## [Unicode3.1] UCS codepoint defined by Unicode 3.1
25 ## [Unicode3.2] UCS codepoint defined by Unicode 3.2
H A DJISX0213-1%[email protected]23 ## [1983] JIS codepoint defined by JIS X 0208-1983
24 ## [1990] JIS codepoint defined by JIS X 0208-1990
25 ## [2000] JIS codepoint defined by JIS X 0213:2000
26 ## [2004] JIS codepoint defined by JIS X 0213:2004
27 ## [Unicode3.1] UCS codepoint defined by Unicode 3.1
28 ## [Unicode3.2] UCS codepoint defined by Unicode 3.2
H A DJISX0213-2%[email protected]23 ## [1983] JIS codepoint defined by JIS X 0208-1983
24 ## [1990] JIS codepoint defined by JIS X 0208-1990
25 ## [2000] JIS codepoint defined by JIS X 0213:2000
26 ## [2004] JIS codepoint defined by JIS X 0213:2004
27 ## [Unicode3.1] UCS codepoint defined by Unicode 3.1
28 ## [Unicode3.2] UCS codepoint defined by Unicode 3.2
H A DUCS@SIP%JISX0213-2.src20 ## [1983] JIS codepoint defined by JIS X 0208-1983
21 ## [1990] JIS codepoint defined by JIS X 0208-1990
22 ## [2000] JIS codepoint defined by JIS X 0213:2000
23 ## [2004] JIS codepoint defined by JIS X 0213:2004
24 ## [Unicode3.1] UCS codepoint defined by Unicode 3.1
25 ## [Unicode3.2] UCS codepoint defined by Unicode 3.2
H A DUCS@BMP%JISX0213-1.src20 ## [1983] JIS codepoint defined by JIS X 0208-1983
21 ## [1990] JIS codepoint defined by JIS X 0208-1990
22 ## [2000] JIS codepoint defined by JIS X 0213:2000
23 ## [2004] JIS codepoint defined by JIS X 0213:2004
24 ## [Unicode3.1] UCS codepoint defined by Unicode 3.1
25 ## [Unicode3.2] UCS codepoint defined by Unicode 3.2
H A DJISX0213-1%[email protected]23 ## [1983] JIS codepoint defined by JIS X 0208-1983
24 ## [1990] JIS codepoint defined by JIS X 0208-1990
25 ## [2000] JIS codepoint defined by JIS X 0213:2000
26 ## [2004] JIS codepoint defined by JIS X 0213:2004
27 ## [Unicode3.1] UCS codepoint defined by Unicode 3.1
28 ## [Unicode3.2] UCS codepoint defined by Unicode 3.2
H A DUCS@BMP%JISX0213-2.src20 ## [1983] JIS codepoint defined by JIS X 0208-1983
21 ## [1990] JIS codepoint defined by JIS X 0208-1990
22 ## [2000] JIS codepoint defined by JIS X 0213:2000
23 ## [2004] JIS codepoint defined by JIS X 0213:2004
24 ## [Unicode3.1] UCS codepoint defined by Unicode 3.1
25 ## [Unicode3.2] UCS codepoint defined by Unicode 3.2
H A DJISX0213-2%[email protected]23 ## [1983] JIS codepoint defined by JIS X 0208-1983
24 ## [1990] JIS codepoint defined by JIS X 0208-1990
25 ## [2000] JIS codepoint defined by JIS X 0213:2000
26 ## [2004] JIS codepoint defined by JIS X 0213:2004
27 ## [Unicode3.1] UCS codepoint defined by Unicode 3.1
28 ## [Unicode3.2] UCS codepoint defined by Unicode 3.2
/freebsd-13.1/contrib/subversion/subversion/libsvn_subr/utf8proc/
H A Dutf8proc_internal.h395 typedef utf8proc_int32_t (*utf8proc_custom_func)(utf8proc_int32_t codepoint, void *data);
436 UTF8PROC_DLLEXPORT utf8proc_bool utf8proc_codepoint_valid(utf8proc_int32_t codepoint);
447 UTF8PROC_DLLEXPORT utf8proc_ssize_t utf8proc_encode_char(utf8proc_int32_t codepoint, utf8proc_uint8…
461 UTF8PROC_DLLEXPORT const utf8proc_property_t *utf8proc_get_property(utf8proc_int32_t codepoint);
491 utf8proc_int32_t codepoint, utf8proc_int32_t *dst, utf8proc_ssize_t bufsize,
638 UTF8PROC_DLLEXPORT int utf8proc_charwidth(utf8proc_int32_t codepoint);
644 UTF8PROC_DLLEXPORT utf8proc_category_t utf8proc_category(utf8proc_int32_t codepoint);
650 UTF8PROC_DLLEXPORT const char *utf8proc_category_string(utf8proc_int32_t codepoint);
/freebsd-13.1/contrib/libcbor/src/cbor/internal/
H A Dunicode.c72 uint32_t codepoint, state = UTF8_ACCEPT, res; in _cbor_unicode_codepoint_count() local
76 res = _cbor_unicode_decode(&state, &codepoint, source[pos]); in _cbor_unicode_codepoint_count()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DYAMLParser.cpp210 uint32_t codepoint = ((*Position & 0x1F) << 6) | in decodeUTF8() local
212 if (codepoint >= 0x80) in decodeUTF8()
213 return std::make_pair(codepoint, 2); in decodeUTF8()
220 uint32_t codepoint = ((*Position & 0x0F) << 12) | in decodeUTF8() local
225 if (codepoint >= 0x800 && in decodeUTF8()
226 (codepoint < 0xD800 || codepoint > 0xDFFF)) in decodeUTF8()
227 return std::make_pair(codepoint, 3); in decodeUTF8()
235 uint32_t codepoint = ((*Position & 0x07) << 18) | in decodeUTF8() local
239 if (codepoint >= 0x10000 && codepoint <= 0x10FFFF) in decodeUTF8()
240 return std::make_pair(codepoint, 4); in decodeUTF8()
/freebsd-13.1/contrib/lua/src/
H A Dlutf8lib.c122 static int codepoint (lua_State *L) { in codepoint() function
273 {"codepoint", codepoint},
/freebsd-13.1/sys/netinet/
H A Dtcp_lro.h186 uint8_t codepoint; /* IP level codepoint including ECN bits */ member
H A Dtcp_lro.c1563 ae->codepoint = iptos; in build_ack_entry()
/freebsd-13.1/share/i18n/csmapper/MISC/
H A DATARIST%UCS.src59 # - Fix the correct codepoint 0x00B3 instead of 0x22B3 for SUPERSCRIPT THREE,
H A DUCS%ATARIST.src59 # - Fix the correct codepoint 0x00B3 instead of 0x22B3 for SUPERSCRIPT THREE,
/freebsd-13.1/contrib/tcpdump/
H A DCHANGES623 801.1ag: use standard codepoint.
640 bugfix: use the correct codepoint for the OSPF simple text auth token
/freebsd-13.1/sys/netinet/tcp_stacks/
H A Drack.c13076 switch (ae->codepoint & IPTOS_ECN_MASK) { in rack_do_compressed_ack_processing()
13090 cc_ecnpkt_handler_flags(tp, ae->flags, ae->codepoint); in rack_do_compressed_ack_processing()