Searched refs:_CACHED_RUNES (Results 1 - 9 of 9) sorted by relevance

/freebsd-12-stable/lib/libc/locale/
H A Drunefile.h36 #ifndef _CACHED_RUNES
37 #define _CACHED_RUNES (1 << 8) macro
50 uint32_t runetype[_CACHED_RUNES];
51 int32_t maplower[_CACHED_RUNES];
52 int32_t mapupper[_CACHED_RUNES];
H A Dnextwctype.c53 if (wc < _CACHED_RUNES) {
55 while (wc < _CACHED_RUNES) {
H A Drune.c173 for (x = 0; x < _CACHED_RUNES; ++x) {
/freebsd-12-stable/include/
H A Drunetype.h44 #define _CACHED_RUNES (1 <<8 ) /* Must be a power of 2 */ macro
45 #define _CRMASK (~(_CACHED_RUNES - 1))
70 unsigned long __runetype[_CACHED_RUNES];
71 __rune_t __maplower[_CACHED_RUNES];
72 __rune_t __mapupper[_CACHED_RUNES];
75 * The following are to deal with Runes larger than _CACHED_RUNES - 1.
H A D_ctype.h102 return ((_c < 0 || _c >= _CACHED_RUNES) ? ___runetype(_c) :
135 return (_c < 0 || _c >= _CACHED_RUNES) ? ___toupper(_c) :
149 return (_c < 0 || _c >= _CACHED_RUNES) ? ___tolower(_c) :
/freebsd-12-stable/usr.bin/mklocale/
H A Dldef.h53 uint32_t map[_CACHED_RUNES];
H A Dyacc.y255 for (x = 0; x < _CACHED_RUNES; ++x) {
345 while (list->min < _CACHED_RUNES && list->min <= list->max) {
562 for (x = 0; x < _CACHED_RUNES; ++x) {
590 for (x = 0; x < _CACHED_RUNES; ++x) {
739 for (x = 0; x < _CACHED_RUNES; ++x) {
758 for (x = 0; x < _CACHED_RUNES; ++x) {
778 for (x = 0; x < _CACHED_RUNES; ++x) {
/freebsd-12-stable/include/xlocale/
H A D_ctype.h83 return ((__c < 0 || __c >= _CACHED_RUNES) ? ___runetype_l(__c, __loc) :
153 return (__c < 0 || __c >= _CACHED_RUNES) ? ___tolower_l(__c, __l) :
160 return (__c < 0 || __c >= _CACHED_RUNES) ? ___toupper_l(__c, __l) :
/freebsd-12-stable/usr.bin/localedef/
H A Dctype.c326 for (wc = 0; (unsigned)wc < _CACHED_RUNES; wc++) {
419 if ((unsigned)wc < _CACHED_RUNES) {

Completed in 118 milliseconds