Home
last modified time | relevance | path

Searched refs:NATIVE_UTF8_TO_I8 (Results 1 – 12 of 12) sorted by relevance

/openbsd/gnu/usr.bin/perl/
H A Dregcharclass.h1550 …( ( inRANGE_helper_(U8, NATIVE_UTF8_TO_I8(((const U8*)s)[2]), 0xA1, 0xB3) || inRANGE_helper_(U8, N…
1555NATIVE_UTF8_TO_I8(((const U8*)s)[1]), 0xA0, 0xA2) || inRANGE_helper_(U8, NATIVE_UTF8_TO_I8(((const…
2428 … ( ( NATIVE_UTF8_TO_I8(((const U8*)s)[2]) & 0xF0 ) == 0xA0 ) || ( ( NATIVE_UTF8_TO_I8(((const U8*)…
2430 …( ( ( ( NATIVE_UTF8_TO_I8(((const U8*)s)[2]) & 0xEA ) == 0xA2 ) || ( ( NATIVE_UTF8_TO_I8(((const U…
2441 ( ( ( ( NATIVE_UTF8_TO_I8(((const U8*)s)[0]) & 0x80 ) == 0x00 ) || ( ( NATIVE_UTF8_TO_I8(((const U8…
2484 ( ( ( ( NATIVE_UTF8_TO_I8(((const U8*)s)[0]) & 0x80 ) == 0x00 ) || ( ( NATIVE_UTF8_TO_I8(((const U8…
2813NATIVE_UTF8_TO_I8(((const U8*)s)[1]), 0xA0, 0xA2) || inRANGE_helper_(U8, NATIVE_UTF8_TO_I8(((const…
3686 … ( ( NATIVE_UTF8_TO_I8(((const U8*)s)[2]) & 0xF0 ) == 0xA0 ) || ( ( NATIVE_UTF8_TO_I8(((const U8*)…
3688 …( ( ( ( NATIVE_UTF8_TO_I8(((const U8*)s)[2]) & 0xEA ) == 0xA2 ) || ( ( NATIVE_UTF8_TO_I8(((const U…
3699 ( ( ( ( NATIVE_UTF8_TO_I8(((const U8*)s)[0]) & 0x80 ) == 0x00 ) || ( ( NATIVE_UTF8_TO_I8(((const U8…
[all …]
H A Dutf8.h288 #define NATIVE_UTF8_TO_I8(ch) (__ASSERT_(FITS_IN_8_BITS(ch)) ((U8) (ch))) macro
392 (((NATIVE_UTF8_TO_I8(c) & UTF_IS_CONTINUATION_MASK) \
622 (NATIVE_UTF8_TO_I8(c) >= UTF_MIN_START_BYTE))
635 (NATIVE_UTF8_TO_I8(c) >= UTF_MIN_ABOVE_LATIN1_BYTE))
641 inRANGE_helper_(U8, NATIVE_UTF8_TO_I8(c), \
695 #define NATIVE_TO_UTF(ch) NATIVE_UTF8_TO_I8(ch)
696 #define NATIVE_TO_I8(ch) NATIVE_UTF8_TO_I8(ch)
1055 && ( NATIVE_UTF8_TO_I8(s[0]) >= UTF_START_BYTE_110000_ \
1056 && ( NATIVE_UTF8_TO_I8(s[0]) > UTF_START_BYTE_110000_ \
1057 || NATIVE_UTF8_TO_I8(s[1]) >= UTF_FIRST_CONT_BYTE_110000_))) \
[all …]
H A Dutf8.c517 switch (NATIVE_UTF8_TO_I8(s[0])) { in S_is_utf8_overlong()
541 : NATIVE_UTF8_TO_I8(s[1]) < UTF_MIN_CONTINUATION_BYTE + 0x10; in S_is_utf8_overlong()
545 : NATIVE_UTF8_TO_I8(s[1]) < UTF_MIN_CONTINUATION_BYTE + 0x08; in S_is_utf8_overlong()
549 : NATIVE_UTF8_TO_I8(s[1]) < UTF_MIN_CONTINUATION_BYTE + 0x04; in S_is_utf8_overlong()
662 if (NATIVE_UTF8_TO_I8(*x) < *y) { in S_does_utf8_overflow()
666 if (UNLIKELY(NATIVE_UTF8_TO_I8(*x) > *y)) { in S_does_utf8_overflow()
825 && NATIVE_UTF8_TO_I8(s[1]) in Perl_is_utf8_char_helper_()
1536 uv = NATIVE_UTF8_TO_I8(uv) & UTF_START_MASK(expectlen); in Perl__utf8n_to_uvchr_msgs_helper()
1677 if (UNLIKELY(NATIVE_UTF8_TO_I8(*adjusted_s0) in Perl__utf8n_to_uvchr_msgs_helper()
1683 if (UNLIKELY( NATIVE_UTF8_TO_I8(*adjusted_s0) in Perl__utf8n_to_uvchr_msgs_helper()
[all …]
H A Dutfebcdic.h140 #define NATIVE_UTF8_TO_I8(b) (__ASSERT_(FITS_IN_8_BITS(b)) PL_e2utf[(U8)(b)]) macro
H A Dregexec.c2397 ( (U8) NATIVE_UTF8_TO_I8(*s) >= ANYOF_FLAGS(c) in S_find_byclass()
2437 ( inRANGE(NATIVE_UTF8_TO_I8(*s), in S_find_byclass()
2468 ( NATIVE_UTF8_TO_I8(*s) >= ANYOF_FLAGS(c) in S_find_byclass()
7578 || ANYOF_FLAGS(scan) > NATIVE_UTF8_TO_I8(*locinput) in S_regmatch()
7621 || ! inRANGE((U8) NATIVE_UTF8_TO_I8(*locinput), in S_regmatch()
7657 if ( ANYOF_FLAGS(scan) > NATIVE_UTF8_TO_I8(*locinput) in S_regmatch()
10541 && NATIVE_UTF8_TO_I8(*scan) >= ANYOF_FLAGS(p) in S_regrepeat()
10584 && inRANGE(NATIVE_UTF8_TO_I8(*scan), in S_regrepeat()
10587 && NATIVE_UTF8_TO_I8(*scan) >= ANYOF_FLAGS(p) in S_regrepeat()
10616 && NATIVE_UTF8_TO_I8(*scan) >= ANYOF_FLAGS(p) in S_regrepeat()
H A Dinline.h465 uv = NATIVE_UTF8_TO_I8(uv) & UTF_START_MASK(expectlen); in Perl_valid_utf8_to_uvchr()
2482 uv = (0xff >> type) & NATIVE_UTF8_TO_I8(*s); in Perl_utf8n_to_uvchr_msgs()
H A Dregcomp.c11959 ANYOF_FLAGS(REGNODE_p(*ret)) = NATIVE_UTF8_TO_I8(low_utf8[0]); in S_optimize_regclass()
11988 *anyof_flags = NATIVE_UTF8_TO_I8(low_utf8[0]); in S_optimize_regclass()
12063 else if (NATIVE_UTF8_TO_I8(high_utf8[0]) <= MAX_ANYOF_HRx_BYTE) { in S_optimize_regclass()
12074 U8 range_diff = NATIVE_UTF8_TO_I8(high_utf8[0]) in S_optimize_regclass()
/openbsd/gnu/usr.bin/perl/cpan/Encode/Encode/
H A Dencode.h133 # ifndef NATIVE_UTF8_TO_I8
134 # define NATIVE_UTF8_TO_I8(x) (x) macro
480 if (UNLIKELY(NATIVE_UTF8_TO_I8(*x) == *y)) { in S_does_utf8_overflow()
483 return NATIVE_UTF8_TO_I8(*x) > *y; in S_does_utf8_overflow()
503 const U8 s0 = NATIVE_UTF8_TO_I8(s[0]); in S_is_utf8_overlong_given_start_byte_ok()
504 const U8 s1 = NATIVE_UTF8_TO_I8(s[1]); in S_is_utf8_overlong_given_start_byte_ok()
648 uv = NATIVE_UTF8_TO_I8(uv) & UTF_START_MASK(expectlen); in utf8n_to_uvchr_msgs()
733 if (UNLIKELY(NATIVE_UTF8_TO_I8(*adjusted_s0) in utf8n_to_uvchr_msgs()
740 NATIVE_UTF8_TO_I8(*adjusted_s0), in utf8n_to_uvchr_msgs()
1082 const U8 s0 = NATIVE_UTF8_TO_I8(s[0]); in S_is_utf8_char_helper()
[all …]
/openbsd/gnu/usr.bin/perl/dist/Devel-PPPort/parts/base/
H A D501900431 NATIVE_UTF8_TO_I8 # Z added by devel/scanprov
/openbsd/gnu/usr.bin/perl/dist/Devel-PPPort/parts/inc/
H A Dutf854 __UNDEF_NOT_PROVIDED__ NATIVE_UTF8_TO_I8(c) NATIVE_TO_UTF(c)
56 __UNDEF_NOT_PROVIDED__ NATIVE_UTF8_TO_I8(c) (c)
81 inRANGE(NATIVE_UTF8_TO_I8(c), \
88 | ((NATIVE_UTF8_TO_I8(added)) \
H A Dmisc138 UTF8_ACCUMULATE(NATIVE_UTF8_TO_I8((s)[0]) \
157 UTF8_ACCUMULATE(NATIVE_UTF8_TO_I8((s)[0]) \
180 UTF8_ACCUMULATE(NATIVE_UTF8_TO_I8((s)[0]) \
/openbsd/gnu/usr.bin/perl/cpan/Term-ReadKey/
H A Dppport.h12591 UTF8_ACCUMULATE(NATIVE_UTF8_TO_I8((s)[0]) \
12610 UTF8_ACCUMULATE(NATIVE_UTF8_TO_I8((s)[0]) \
12633 UTF8_ACCUMULATE(NATIVE_UTF8_TO_I8((s)[0]) \
17426 #ifndef NATIVE_UTF8_TO_I8
17427 # define NATIVE_UTF8_TO_I8(c) NATIVE_TO_UTF(c) macro
17431 #ifndef NATIVE_UTF8_TO_I8
17432 # define NATIVE_UTF8_TO_I8(c) (c) macro
17477 inRANGE(NATIVE_UTF8_TO_I8(c), \
17488 | ((NATIVE_UTF8_TO_I8(added)) \