Searched refs:FITS_IN_8_BITS (Results 1 - 5 of 5) sorted by relevance

/openbsd-current/gnu/usr.bin/perl/
H A Dutfebcdic.h136 #define NATIVE_TO_LATIN1(ch) (__ASSERT_(FITS_IN_8_BITS(ch)) PL_e2a[(U8)(ch)])
137 #define LATIN1_TO_NATIVE(ch) (__ASSERT_(FITS_IN_8_BITS(ch)) PL_a2e[(U8)(ch)])
140 #define NATIVE_UTF8_TO_I8(b) (__ASSERT_(FITS_IN_8_BITS(b)) PL_e2utf[(U8)(b)])
141 #define I8_TO_NATIVE_UTF8(b) (__ASSERT_(FITS_IN_8_BITS(b)) PL_utf2e[(U8)(b)])
145 (FITS_IN_8_BITS(ch) ? NATIVE_TO_LATIN1(ch) : (UV) (ch))
147 (FITS_IN_8_BITS(ch) ? LATIN1_TO_NATIVE(ch) : (UV) (ch))
H A Dutf8.h279 #define NATIVE_TO_LATIN1(ch) (__ASSERT_(FITS_IN_8_BITS(ch)) ((U8) (ch)))
280 #define LATIN1_TO_NATIVE(ch) (__ASSERT_(FITS_IN_8_BITS(ch)) ((U8) (ch)))
288 #define NATIVE_UTF8_TO_I8(ch) (__ASSERT_(FITS_IN_8_BITS(ch)) ((U8) (ch)))
289 #define I8_TO_NATIVE_UTF8(ch) (__ASSERT_(FITS_IN_8_BITS(ch)) ((U8) (ch)))
391 #define UTF8_IS_CONTINUATION(c) (__ASSERT_(FITS_IN_8_BITS(c)) \
621 #define UTF8_IS_START_base(c) (__ASSERT_(FITS_IN_8_BITS(c)) \
634 #define UTF8_IS_ABOVE_LATIN1(c) (__ASSERT_(FITS_IN_8_BITS(c)) \
640 #define UTF8_IS_DOWNGRADEABLE_START(c) (__ASSERT_(FITS_IN_8_BITS(c)) \
707 #define UTF8_ACCUMULATE(old, new) (__ASSERT_(FITS_IN_8_BITS(new)) \
742 (__ASSERT_(FITS_IN_8_BITS(H
[all...]
H A Dhandy.h1442 /* FITS_IN_8_BITS(c) returns true if c doesn't have a bit set other than in
1456 # define FITS_IN_8_BITS(c) ( (sizeof(c) == 1) \ macro
1459 # define FITS_IN_8_BITS(c) (1) macro
1623 # define generic_isCC_(c, classnum) cBOOL(FITS_IN_8_BITS(c) \
1633 # define generic_isCC_A_(c, classnum) (FITS_IN_8_BITS(c) \
1687 (( ! cBOOL(FITS_IN_8_BITS(c))) \
1696 ( (! cBOOL(FITS_IN_8_BITS(c))) \
1788 || (FITS_IN_8_BITS(c) \
1790 # define isCNTRL_L1(c) (FITS_IN_8_BITS(c) && (! isPRINT_L1(c)))
1793 || (FITS_IN_8_BITS(
[all...]
H A Dtoke.c937 STATIC_ASSERT_STMT(FITS_IN_8_BITS(LEX_IGNORE_UTF8_HINTS|LEX_EVALBYTES
/openbsd-current/gnu/usr.bin/perl/cpan/Term-ReadKey/
H A Dppport.h2837 FITS_IN_8_BITS|5.013005||Viu
12571 #undef FITS_IN_8_BITS /* handy.h version uses a core-only constant */ macro
12572 #ifndef FITS_IN_8_BITS
12573 # define FITS_IN_8_BITS(c) ( (sizeof(c) == 1) \ macro
13238 || ( FITS_IN_8_BITS(c) \
13290 || ( FITS_IN_8_BITS(c) \
13311 # define isPRINT_L1(c) (FITS_IN_8_BITS(c) && ! isCNTRL_L1(c))
13338 || ( FITS_IN_8_BITS(c) \
13355 || (FITS_IN_8_BITS(c) \
13362 || (FITS_IN_8_BITS(
[all...]

Completed in 367 milliseconds