Home
last modified time | relevance | path

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

/freebsd/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 > in isprint32()
180 llvm::UTF32 codepoint = 0; GetPrintableImpl() local
[all...]
/freebsd/share/i18n/csmapper/JIS/
H A DUCS@SIP%JISX0213-1.src19 ## [1983] JIS codepoint defined by JIS X 0208-1983
20 ## [1990] JIS codepoint defined by JIS X 0208-1990
21 ## [2000] JIS codepoint defined by JIS X 0213:2000
22 ## [2004] JIS codepoint defined by JIS X 0213:2004
23 ## [Unicode3.1] UCS codepoint defined by Unicode 3.1
24 ## [Unicode3.2] UCS codepoint defined by Unicode 3.2
H A DJISX0213-1%UCS@SIP.src22 ## [1983] JIS codepoint defined by JIS X 0208-1983
23 ## [1990] JIS codepoint defined by JIS X 0208-1990
24 ## [2000] JIS codepoint defined by JIS X 0213:2000
25 ## [2004] JIS codepoint defined by JIS X 0213:2004
26 ## [Unicode3.1] UCS codepoint defined by Unicode 3.1
27 ## [Unicode3.2] UCS codepoint defined by Unicode 3.2
H A DJISX0213-2%UCS@SIP.src22 ## [1983] JIS codepoint defined by JIS X 0208-1983
23 ## [1990] JIS codepoint defined by JIS X 0208-1990
24 ## [2000] JIS codepoint defined by JIS X 0213:2000
25 ## [2004] JIS codepoint defined by JIS X 0213:2004
26 ## [Unicode3.1] UCS codepoint defined by Unicode 3.1
27 ## [Unicode3.2] UCS codepoint defined by Unicode 3.2
H A DUCS@SIP%JISX0213-2.src19 ## [1983] JIS codepoint defined by JIS X 0208-1983
20 ## [1990] JIS codepoint defined by JIS X 0208-1990
21 ## [2000] JIS codepoint defined by JIS X 0213:2000
22 ## [2004] JIS codepoint defined by JIS X 0213:2004
23 ## [Unicode3.1] UCS codepoint defined by Unicode 3.1
24 ## [Unicode3.2] UCS codepoint defined by Unicode 3.2
H A DUCS@BMP%JISX0213-1.src19 ## [1983] JIS codepoint defined by JIS X 0208-1983
20 ## [1990] JIS codepoint defined by JIS X 0208-1990
21 ## [2000] JIS codepoint defined by JIS X 0213:2000
22 ## [2004] JIS codepoint defined by JIS X 0213:2004
23 ## [Unicode3.1] UCS codepoint defined by Unicode 3.1
24 ## [Unicode3.2] UCS codepoint defined by Unicode 3.2
H A DJISX0213-1%UCS@BMP.src22 ## [1983] JIS codepoint defined by JIS X 0208-1983
23 ## [1990] JIS codepoint defined by JIS X 0208-1990
24 ## [2000] JIS codepoint defined by JIS X 0213:2000
25 ## [2004] JIS codepoint defined by JIS X 0213:2004
26 ## [Unicode3.1] UCS codepoint defined by Unicode 3.1
27 ## [Unicode3.2] UCS codepoint defined by Unicode 3.2
H A DJISX0213-2%UCS@BMP.src22 ## [1983] JIS codepoint defined by JIS X 0208-1983
23 ## [1990] JIS codepoint defined by JIS X 0208-1990
24 ## [2000] JIS codepoint defined by JIS X 0213:2000
25 ## [2004] JIS codepoint defined by JIS X 0213:2004
26 ## [Unicode3.1] UCS codepoint defined by Unicode 3.1
27 ## [Unicode3.2] UCS codepoint defined by Unicode 3.2
H A DUCS@BMP%JISX0213-2.src19 ## [1983] JIS codepoint defined by JIS X 0208-1983
20 ## [1990] JIS codepoint defined by JIS X 0208-1990
21 ## [2000] JIS codepoint defined by JIS X 0213:2000
22 ## [2004] JIS codepoint defined by JIS X 0213:2004
23 ## [Unicode3.1] UCS codepoint defined by Unicode 3.1
24 ## [Unicode3.2] UCS codepoint defined by Unicode 3.2
/freebsd/contrib/libcbor/src/cbor/internal/
H A Dunicode.c73 uint32_t codepoint, state = UTF8_ACCEPT, res; in _cbor_unicode_codepoint_count() local
77 res = _cbor_unicode_decode(&state, &codepoint, source[pos]); in _cbor_unicode_codepoint_count()
86 /* Unfinished multibyte codepoint */ in _cbor_unicode_codepoint_count()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DYAMLParser.cpp208 uint32_t codepoint = ((*Position & 0x1F) << 6) | in decodeUTF8() local
210 if (codepoint >= 0x80) in decodeUTF8()
211 return std::make_pair(codepoint, 2); in decodeUTF8()
218 uint32_t codepoint = ((*Position & 0x0F) << 12) | in decodeUTF8() local
223 if (codepoint >= 0x800 && in decodeUTF8()
224 (codepoint < 0xD800 || codepoint > 0xDFFF)) in decodeUTF8()
225 return std::make_pair(codepoint, 3); in decodeUTF8()
233 uint32_t codepoint = ((*Position & 0x07) << 18) | in decodeUTF8() local
237 if (codepoint > in decodeUTF8()
[all...]
/freebsd/contrib/lua/src/
H A Dlutf8lib.c126 static int codepoint (lua_State *L) { in codepoint() function
275 {"codepoint", codepoint},
/freebsd/sys/kern/
H A Dtty_ttydisc.c893 teken_char_t codepoint; in ttydisc_rubchar() local
933 codepoint = in ttydisc_rubchar()
936 if (codepoint == in ttydisc_rubchar()
939 codepoint)) == -1) { in ttydisc_rubchar()
/freebsd/sys/netinet/
H A Dtcp_lro.h191 uint8_t codepoint; /* IP level codepoint including ECN bits */ member
H A Dtcp_lro_hpts.c92 ae->codepoint = iptos; in build_ack_entry()
/freebsd/share/i18n/csmapper/MISC/
H A DATARIST%UCS.src58 # - Fix the correct codepoint 0x00B3 instead of 0x22B3 for SUPERSCRIPT THREE,
H A DUCS%ATARIST.src58 # - Fix the correct codepoint 0x00B3 instead of 0x22B3 for SUPERSCRIPT THREE,
/freebsd/contrib/tcpdump/
H A DCHANGES1006 801.1ag: use standard codepoint.
1023 bugfix: use the correct codepoint for the OSPF simple text auth token
/freebsd/sys/netinet/tcp_stacks/
H A Drack.c15866 ae->codepoint)) in rack_do_compressed_ack_processing()
24250 * The DSCP codepoint has changed, update the fsb. in rack_set_sockopt()