/picolibc-3.7.0-3.6.0/newlib/libc/ctype/ |
D | ctype_cp.h | 8 _U, _L, _L, _L, _L, _L, _L, _L, \ 9 _L, _L, _L, _L, _L, _L, _U, _U, \ 10 _U, _L, _U, _L, _L, _L, _L, _L, \ 11 _L, _U, _U, _P, _P, _P, _P, _P, \ 12 _L, _L, _L, _L, _L, _L, _P, _P, \ 20 _L, _L, _U, _L, _U, _L, _P, _L, \ 21 _U, _U, _U, _L, _P, _L, _L, _P, \ 26 0, 0, _L, _L, 0, _L, 0, _L, \ 27 _L, _L, _L, _L, _L, 0, 0, 0, \ 28 0, _P, _P, _L, _P, _P, _L, _L, \ [all …]
|
D | ctype_iso.h | 19 _U, _U, _U, _U, _U, _U, _U, _L, \ 20 _L, _L, _L, _L, _L, _L, _L, _L, \ 21 _L, _L, _L, _L, _L, _L, _L, _L, \ 22 _L, _L, _L, _L, _L, _L, _L, _P, \ 23 _L, _L, _L, _L, _L, _L, _L 24 #define _CTYPE_ISO_8859_1_255 _L 32 _P, _L, _P, _L, _P, _L, _L, _P, \ 33 _P, _L, _L, _L, _L, _P, _L, _L, \ 37 _U, _U, _U, _U, _U, _U, _U, _L, \ 38 _L, _L, _L, _L, _L, _L, _L, _L, \ [all …]
|
D | ctype_.c | 48 _P, _L|_X, _L|_X, _L|_X, _L|_X, _L|_X, _L|_X, _L, \ 49 _L, _L, _L, _L, _L, _L, _L, _L, \ 50 _L, _L, _L, _L, _L, _L, _L, _L, \ 51 _L, _L, _L, _P, _P, _P, _P, _C
|
D | islower.c | 78 return ((__CTYPE_PTR[c+1] & (_U|_L)) == _L); in islower()
|
D | islower_l.c | 17 return (__locale_ctype_ptr_l (locale)[c+1] & (_U|_L)) == _L; in islower_l()
|
D | isupper.c | 76 return ((__CTYPE_PTR[c+1] & (_U|_L)) == _U); in isupper()
|
D | isalpha.c | 78 return __CTYPE_PTR[c+1] & (_U|_L); in isalpha()
|
D | isgraph.c | 78 return __CTYPE_PTR[c+1]&(_P|_U|_L|_N); in isgraph()
|
D | isalnum.c | 78 return __CTYPE_PTR[c+1] & (_U|_L|_N); in isalnum()
|
D | isprint.c | 92 return __CTYPE_PTR[c+1] & (_P|_U|_L|_N|_B); in isprint()
|
D | isalpha_l.c | 16 return __locale_ctype_ptr_l (locale)[c+1] & (_U|_L); in isalpha_l()
|
D | isupper_l.c | 16 return (__locale_ctype_ptr_l (locale)[c+1] & (_U|_L)) == _U; in isupper_l()
|
D | isalnum_l.c | 16 return __locale_ctype_ptr_l (locale)[c+1] & (_U|_L|_N); in isalnum_l()
|
D | isgraph_l.c | 17 return __locale_ctype_ptr_l (locale)[c+1] & (_P|_U|_L|_N); in isgraph_l()
|
D | isprint_l.c | 17 return __locale_ctype_ptr_l (locale)[c+1] & (_P|_U|_L|_N|_B); in isprint_l()
|
/picolibc-3.7.0-3.6.0/newlib/libc/include/ |
D | ctype.h | 227 #define _L 02 macro 257 #define isalpha(__c) (__ctype_lookup(__c)&(_U|_L)) 258 #define isupper(__c) ((__ctype_lookup(__c)&(_U|_L))==_U) 259 #define islower(__c) ((__ctype_lookup(__c)&(_U|_L))==_L) 264 #define isalnum(__c) (__ctype_lookup(__c)&(_U|_L|_N)) 265 #define isprint(__c) (__ctype_lookup(__c)&(_P|_U|_L|_N|_B)) 266 #define isgraph(__c) (__ctype_lookup(__c)&(_P|_U|_L|_N)) 285 #define isalpha_l(__c,__l) (__ctype_lookup_l(__c,__l)&(_U|_L)) 286 #define isupper_l(__c,__l) ((__ctype_lookup_l(__c,__l)&(_U|_L))==_U) 287 #define islower_l(__c,__l) ((__ctype_lookup_l(__c,__l)&(_U|_L))==_L) [all …]
|
/picolibc-3.7.0-3.6.0/newlib/libc/machine/avr/ |
D | macros.inc | 52 #define _L $
|
/picolibc-3.7.0-3.6.0/newlib/ |
D | ChangeLog-2015 | 6562 720, 862, 874, 1255, and 1256 to _U|_L. Fix a couple of incorrect 6565 6, 8, and 11 to _U|_L. Fix a couple of incorrect class mappings. 6567 * libc/ctype/islower.c (islower): Check explicitely for _L flag only 6568 in (_U|_L).
|