Home
last modified time | relevance | path

Searched refs:_CACHED_RUNES (Results 1 – 13 of 13) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/locale/
H A Drunefile.h32 #ifndef _CACHED_RUNES
33 #define _CACHED_RUNES (1 << 8) macro
46 uint32_t runetype[_CACHED_RUNES];
47 int32_t maplower[_CACHED_RUNES];
48 int32_t mapupper[_CACHED_RUNES];
H A Drunetype.h66 #define _CACHED_RUNES (1 << 8) /* Must be a power of 2 */ macro
67 #define _CRMASK (~(_CACHED_RUNES - 1))
116 unsigned int __runetype[_CACHED_RUNES];
117 __rune_t __maplower[_CACHED_RUNES];
118 __rune_t __mapupper[_CACHED_RUNES];
H A Dtowlower.c79 (wc < 0 || wc >= _CACHED_RUNES) ? in towlower_l()
89 (wc < 0 || wc >= _CACHED_RUNES) ? in towlower()
98 (wc < 0 || wc >= _CACHED_RUNES) ? in towupper_l()
108 (wc < 0 || wc >= _CACHED_RUNES) ? in towupper()
H A Dnextwctype.c54 if (wc < _CACHED_RUNES) { in nextwctype_l()
56 while (wc < _CACHED_RUNES) { in nextwctype_l()
H A Dsetlocale.c161 for (int i = 0; i < _CACHED_RUNES; i++) { in install_legacy()
168 for (int i = 0; i < _CACHED_RUNES; i++) { in install_legacy()
H A Dtable.c276 static unsigned int ___ctype_mask[_CACHED_RUNES + 1] = { 0, _DEFRUNETYPE };
279 static int ___trans_lower[_CACHED_RUNES] = { _DEFMAPLOWER };
282 static int ___trans_upper[_CACHED_RUNES] = { _DEFMAPUPPER };
H A Dwcwidth.c61 x = ((wc < 0 || wc >= _CACHED_RUNES) ? __runetype(rl, wc) : in wcwidth_l()
H A Diswctype.c67 if (c < 0 || c >= _CACHED_RUNES) in __istype_l()
H A Drune.c166 for (x = 0; x < _CACHED_RUNES; ++x) { in _Read_RuneMagi()
/illumos-gate/usr/src/boot/include/
H A Drunetype.h42 #define _CACHED_RUNES (1 <<8 ) /* Must be a power of 2 */ macro
43 #define _CRMASK (~(_CACHED_RUNES - 1))
68 unsigned long __runetype[_CACHED_RUNES];
69 __rune_t __maplower[_CACHED_RUNES];
70 __rune_t __mapupper[_CACHED_RUNES];
H A D_ctype.h100 return ((_c < 0 || _c >= _CACHED_RUNES) ? ___runetype(_c) : in __maskrune()
133 return (_c < 0 || _c >= _CACHED_RUNES) ? ___toupper(_c) : in __toupper()
147 return (_c < 0 || _c >= _CACHED_RUNES) ? ___tolower(_c) : in __tolower()
/illumos-gate/usr/src/boot/include/xlocale/
H A D_ctype.h81 return ((__c < 0 || __c >= _CACHED_RUNES) ? ___runetype_l(__c, __loc) : in __maskrune_l()
151 return (__c < 0 || __c >= _CACHED_RUNES) ? ___tolower_l(__c, __l) : in towlower_l()
158 return (__c < 0 || __c >= _CACHED_RUNES) ? ___toupper_l(__c, __l) : in towupper_l()
/illumos-gate/usr/src/cmd/localedef/
H A Dctype.c281 for (wc = 0; (unsigned)wc < _CACHED_RUNES; wc++) { in dump_ctype()
370 if ((unsigned)wc < _CACHED_RUNES) { in dump_ctype()