/picolibc-3.5.0-3.4.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 | 50 _P, _L|_X, _L|_X, _L|_X, _L|_X, _L|_X, _L|_X, _L, \ 51 _L, _L, _L, _L, _L, _L, _L, _L, \ 52 _L, _L, _L, _L, _L, _L, _L, _L, \ 53 _L, _L, _L, _P, _P, _P, _P, _C
|
D | islower.c | 76 return ((__CTYPE_PTR[c+1] & (_U|_L)) == _L); in islower()
|
D | islower_l.c | 14 return (__locale_ctype_ptr_l (locale)[c+1] & (_U|_L)) == _L; in islower_l()
|
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 | isalpha.c | 76 return(__CTYPE_PTR[c+1] & (_U|_L)); in isalpha()
|
D | isalnum.c | 77 return(__CTYPE_PTR[c+1] & (_U|_L|_N)); in isalnum()
|
D | isupper.c | 74 return ((__CTYPE_PTR[c+1] & (_U|_L)) == _U); in isupper()
|
D | isalpha_l.c | 14 return __locale_ctype_ptr_l (locale)[c+1] & (_U|_L); in isalpha_l()
|
D | isalnum_l.c | 14 return __locale_ctype_ptr_l (locale)[c+1] & (_U|_L|_N); in isalnum_l()
|
D | isupper_l.c | 14 return (__locale_ctype_ptr_l (locale)[c+1] & (_U|_L)) == _U; in isupper_l()
|
/picolibc-3.5.0-3.4.0/newlib/libc/include/ |
D | ctype.h | 101 #define _L 02 macro 131 #define isalpha(__c) (__ctype_lookup(__c)&(_U|_L)) 132 #define isupper(__c) ((__ctype_lookup(__c)&(_U|_L))==_U) 133 #define islower(__c) ((__ctype_lookup(__c)&(_U|_L))==_L) 138 #define isalnum(__c) (__ctype_lookup(__c)&(_U|_L|_N)) 139 #define isprint(__c) (__ctype_lookup(__c)&(_P|_U|_L|_N|_B)) 140 #define isgraph(__c) (__ctype_lookup(__c)&(_P|_U|_L|_N)) 159 #define isalpha_l(__c,__l) (__ctype_lookup_l(__c,__l)&(_U|_L)) 160 #define isupper_l(__c,__l) ((__ctype_lookup_l(__c,__l)&(_U|_L))==_U) 161 #define islower_l(__c,__l) ((__ctype_lookup_l(__c,__l)&(_U|_L))==_L) [all …]
|
/picolibc-3.5.0-3.4.0/newlib/libc/machine/avr/ |
D | macros.inc | 52 #define _L $
|
/picolibc-3.5.0-3.4.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).
|