Searched refs:NATIVE_TO_LATIN1 (Results 1 – 14 of 14) sorted by relevance
136 #define NATIVE_TO_LATIN1(ch) (__ASSERT_(FITS_IN_8_BITS(ch)) PL_e2a[(U8)(ch)]) macro145 (FITS_IN_8_BITS(ch) ? NATIVE_TO_LATIN1(ch) : (UV) (ch))
1782 # if ! defined(EBCDIC) && ! defined(NATIVE_TO_LATIN1)1783 # define NATIVE_TO_LATIN1(ch) (ch)1789 && NATIVE_TO_LATIN1((U8) c) == 0xA0))1794 && (( NATIVE_TO_LATIN1((U8) c) >= 0xDF \1795 && NATIVE_TO_LATIN1((U8) c) != 0xF7) \1796 || NATIVE_TO_LATIN1((U8) c) == 0xAA \1797 || NATIVE_TO_LATIN1((U8) c) == 0xBA \1798 || NATIVE_TO_LATIN1((U8) c) == 0xB5)))1801 && NATIVE_TO_LATIN1((U8) c) >= 0xA0))1804 && ( NATIVE_TO_LATIN1((U8) c) == 0xA1 \[all …]
279 #define NATIVE_TO_LATIN1(ch) (__ASSERT_(FITS_IN_8_BITS(ch)) ((U8) (ch))) macro692 #define NATIVE_TO_ASCII(ch) NATIVE_TO_LATIN1(ch)700 #define NATIVE8_TO_UNI(ch) NATIVE_TO_LATIN1(ch)885 ( __BASE_TWO_BYTE_HI(c, NATIVE_TO_LATIN1)))887 (__BASE_TWO_BYTE_LO(c, NATIVE_TO_LATIN1)))
215 #define ISUUCHAR(ch) inRANGE(NATIVE_TO_LATIN1(ch), \216 NATIVE_TO_LATIN1(' '), \217 NATIVE_TO_LATIN1('a') - 1)
10333 if (NATIVE_TO_LATIN1(prevvalue) > NATIVE_TO_LATIN1(value)) { in S_regclass()10640 U8 start = NATIVE_TO_LATIN1(prevvalue); in S_regclass()10642 U8 end = (value < 256) ? NATIVE_TO_LATIN1(value) : 255; in S_regclass()
4126 NATIVE_TO_LATIN1(*str)); in S_scan_const()4708 && ( NATIVE_TO_LATIN1(un_char) in S_intuit_more()4709 == NATIVE_TO_LATIN1(prev_un_char) + 1)) in S_intuit_more()
7687 h ^= NATIVE_TO_LATIN1(*ptr); /* table collated in Latin1 */ in match_uniprop()
1774 ch = LATIN1_TO_NATIVE(NATIVE_TO_LATIN1(ch) & 127); in S_sv_display()
414 __UNDEFINED__ NATIVE_TO_LATIN1(c) NATIVE_TO_ASCII(c)416 __UNDEFINED__ NATIVE_TO_UNI(c) ((c) > 255 ? (c) : NATIVE_TO_LATIN1(c))419 __UNDEFINED__ NATIVE_TO_LATIN1(c) (c)425 /* Warning: LATIN1_TO_NATIVE, NATIVE_TO_LATIN1 NATIVE_TO_UNI UNI_TO_NATIVE634 && NATIVE_TO_LATIN1((U8) c) == 0xA0))641 && NATIVE_TO_LATIN1((U8) c) != 0xA0)650 && ( ( NATIVE_TO_LATIN1((U8) c) >= 0xDF \651 && NATIVE_TO_LATIN1((U8) c) != 0xF7) \652 || NATIVE_TO_LATIN1((U8) c) == 0xAA \653 || NATIVE_TO_LATIN1((U8) c) == 0xBA \[all …]
12938 #ifndef NATIVE_TO_LATIN112939 # define NATIVE_TO_LATIN1(c) NATIVE_TO_ASCII(c) macro12947 # define NATIVE_TO_UNI(c) ((c) > 255 ? (c) : NATIVE_TO_LATIN1(c))12955 #ifndef NATIVE_TO_LATIN112956 # define NATIVE_TO_LATIN1(c) (c) macro13239 && NATIVE_TO_LATIN1((U8) c) == 0xA0))13261 && NATIVE_TO_LATIN1((U8) c) != 0xA0)13291 && ( ( NATIVE_TO_LATIN1((U8) c) >= 0xDF \13292 && NATIVE_TO_LATIN1((U8) c) != 0xF7) \13293 || NATIVE_TO_LATIN1((U8) c) == 0xAA \[all …]
29 NATIVE_TO_LATIN1 # U
323 NATIVE_TO_LATIN1 # T
438 Amd|U8|NATIVE_TO_LATIN1|U8 ch
696 C<NATIVE_TO_LATIN1> and C<NATIVE_TO_UNICODE> translate the opposite