Searched refs:__ctype (Results 1 - 11 of 11) sorted by relevance

/illumos-gate/usr/src/head/
H A Deuc.h51 #define multibyte (__ctype[520] > 1)
52 #define eucw1 __ctype[514]
53 #define eucw2 __ctype[515]
54 #define eucw3 __ctype[516]
55 #define scrw1 __ctype[517]
56 #define scrw2 __ctype[518]
57 #define scrw3 __ctype[519]
/illumos-gate/usr/src/stand/lib/sa/
H A Dctype.h53 #define isalpha(c) ((__ctype + 1)[c] & (_U | _L))
54 #define isupper(c) ((__ctype + 1)[c] & _U)
55 #define islower(c) ((__ctype + 1)[c] & _L)
56 #define isdigit(c) ((__ctype + 1)[c] & _N)
57 #define isxdigit(c) ((__ctype + 1)[c] & _X)
58 #define isalnum(c) ((__ctype + 1)[c] & (_U | _L | _N))
59 #define isspace(c) ((__ctype + 1)[c] & _S)
60 #define ispunct(c) ((__ctype + 1)[c] & _P)
61 #define isprint(c) ((__ctype + 1)[c] & (_P | _U | _L | _N | _B))
62 #define isgraph(c) ((__ctype
[all...]
H A Dctype.c49 unsigned char __ctype[129] = variable
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dcurses_wchar.h41 #define _ctype __ctype
H A Dmbgetwidth.c52 unsigned char *cp = &__ctype[CSWIDTH];
/illumos-gate/usr/src/ucblib/libucb/port/stdio/
H A D_locale.h46 extern unsigned char __ctype[SZ_TOTAL];
51 int _set_tab(const char *, int); /* fill __ctype[] or _numeric[] */
/illumos-gate/usr/src/lib/libumem/common/
H A Dlinktest_stand.c69 int __ctype; variable
/illumos-gate/usr/src/lib/libc/port/locale/
H A Dsetlocale.c163 __ctype[i+1] = lct->lc_ctype_mask[i] & 0xff;
170 __ctype[258 + i] = i;
174 __ctype[258+i] = u;
176 __ctype[258+i] = l;
184 __ctype[520] = lct->lc_max_mblen;
/illumos-gate/usr/src/head/iso/
H A Dctype_iso.h75 extern unsigned char __ctype[];
/illumos-gate/usr/src/lib/libc/port/i18n/
H A D_ctype.c35 #pragma weak _ctype = __ctype
116 unsigned char __ctype[SZ_TOTAL] = variable
/illumos-gate/usr/src/cmd/locale/
H A Dlocale.c73 #define isblank(c) ((__ctype + 1)[c] & _B)

Completed in 136 milliseconds