/picolibc-3.5.0-3.4.0/newlib/libc/ctype/ |
D | ctype_cp.h | 11 _L, _U, _U, _P, _P, _P, _P, _P, \ 12 _L, _L, _L, _L, _L, _L, _P, _P, \ 13 _P, _P, _P, _P, _P, _P, _P, _P, \ 14 _P, _P, _P, _P, _P, _P, _P, _P, \ 15 _P, _P, _P, _P, _P, _P, _P, _P, \ 16 _P, _P, _P, _P, _P, _P, _P, _P, \ 17 _P, _P, _P, _P, _P, _P, _P, _P, \ 18 _P, _P, _P, _P, _P, _P, _P, _P, \ 19 _P, _P, _P, _P, _P, _P, _P, _P, \ 20 _L, _L, _U, _L, _U, _L, _P, _L, \ [all …]
|
D | ctype_iso.h | 12 _S|_B, _P, _P, _P, _P, _P, _P, _P, \ 13 _P, _P, _P, _P, _P, _P, _P, _P, \ 14 _P, _P, _P, _P, _P, _P, _P, _P, \ 15 _P, _P, _P, _P, _P, _P, _P, _P, \ 18 _U, _U, _U, _U, _U, _U, _U, _P, \ 22 _L, _L, _L, _L, _L, _L, _L, _P, \ 30 _S|_B, _U, _P, _U, _P, _U, _U, _P, \ 31 _P, _U, _U, _U, _U, _P, _U, _U, \ 32 _P, _L, _P, _L, _P, _L, _L, _P, \ 33 _P, _L, _L, _L, _L, _P, _L, _L, \ [all …]
|
D | ctype_.c | 42 _S|_B, _P, _P, _P, _P, _P, _P, _P, \ 43 _P, _P, _P, _P, _P, _P, _P, _P, \ 45 _N, _N, _P, _P, _P, _P, _P, _P, \ 46 _P, _U|_X, _U|_X, _U|_X, _U|_X, _U|_X, _U|_X, _U, \ 49 _U, _U, _U, _P, _P, _P, _P, _P, \ 50 _P, _L|_X, _L|_X, _L|_X, _L|_X, _L|_X, _L|_X, _L, \ 53 _L, _L, _L, _P, _P, _P, _P, _C
|
D | isprint.c | 90 return(__CTYPE_PTR[c+1] & (_P|_U|_L|_N)); in isgraph() 98 return(__CTYPE_PTR[c+1] & (_P|_U|_L|_N|_B)); in isprint()
|
D | isprint_l.c | 14 return __locale_ctype_ptr_l (locale)[c+1] & (_P|_U|_L|_N); in isgraph_l() 22 return __locale_ctype_ptr_l (locale)[c+1] & (_P|_U|_L|_N|_B); in isprint_l()
|
D | ispunct.c | 78 return(__CTYPE_PTR[c+1] & _P); in ispunct()
|
D | ispunct_l.c | 14 return __locale_ctype_ptr_l (locale)[c+1] & _P; in ispunct_l()
|
/picolibc-3.5.0-3.4.0/newlib/libc/include/ |
D | ctype.h | 104 #define _P 020 macro 137 #define ispunct(__c) (__ctype_lookup(__c)&_P) 139 #define isprint(__c) (__ctype_lookup(__c)&(_P|_U|_L|_N|_B)) 140 #define isgraph(__c) (__ctype_lookup(__c)&(_P|_U|_L|_N)) 165 #define ispunct_l(__c,__l) (__ctype_lookup_l(__c,__l)&_P) 167 #define isprint_l(__c,__l) (__ctype_lookup_l(__c,__l)&(_P|_U|_L|_N|_B)) 168 #define isgraph_l(__c,__l) (__ctype_lookup_l(__c,__l)&(_P|_U|_L|_N))
|