Home
last modified time | relevance | path

Searched refs:NATIVE_TO_LATIN1 (Results 1 – 14 of 14) sorted by relevance

/openbsd/src/gnu/usr.bin/perl/
Dutfebcdic.h136 #define NATIVE_TO_LATIN1(ch) (__ASSERT_(FITS_IN_8_BITS(ch)) PL_e2a[(U8)(ch)]) macro
145 (FITS_IN_8_BITS(ch) ? NATIVE_TO_LATIN1(ch) : (UV) (ch))
Dhandy.h1782 # 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 …]
Dutf8.h279 #define NATIVE_TO_LATIN1(ch) (__ASSERT_(FITS_IN_8_BITS(ch)) ((U8) (ch))) macro
692 #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)))
Dpp_pack.c215 #define ISUUCHAR(ch) inRANGE(NATIVE_TO_LATIN1(ch), \
216 NATIVE_TO_LATIN1(' '), \
217 NATIVE_TO_LATIN1('a') - 1)
Dregcomp.c10333 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()
Dtoke.c4126 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()
Duni_keywords.h7687 h ^= NATIVE_TO_LATIN1(*ptr); /* table collated in Latin1 */ in match_uniprop()
Dsv.c1774 ch = LATIN1_TO_NATIVE(NATIVE_TO_LATIN1(ch) & 127); in S_sv_display()
/openbsd/src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/inc/
Dmisc414 __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_NATIVE
634 && 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 …]
/openbsd/src/gnu/usr.bin/perl/cpan/Term-ReadKey/
Dppport.h12938 #ifndef NATIVE_TO_LATIN1
12939 # define NATIVE_TO_LATIN1(c) NATIVE_TO_ASCII(c) macro
12947 # define NATIVE_TO_UNI(c) ((c) > 255 ? (c) : NATIVE_TO_LATIN1(c))
12955 #ifndef NATIVE_TO_LATIN1
12956 # define NATIVE_TO_LATIN1(c) (c) macro
13239 && 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 …]
/openbsd/src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/base/
D501900429 NATIVE_TO_LATIN1 # U
/openbsd/src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/todo/
D5003007323 NATIVE_TO_LATIN1 # T
/openbsd/src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/
Dapidoc.fnc438 Amd|U8|NATIVE_TO_LATIN1|U8 ch
/openbsd/src/gnu/usr.bin/perl/pod/
Dperlhacktips.pod696 C<NATIVE_TO_LATIN1> and C<NATIVE_TO_UNICODE> translate the opposite