Home
last modified time | relevance | path

Searched refs:_L (Results 1 – 16 of 16) sorted by relevance

/picolibc-3.5.0-3.4.0/newlib/libc/ctype/
Dctype_cp.h8 _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 …]
Dctype_iso.h19 _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 …]
Dctype_.c50 _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
Dislower.c76 return ((__CTYPE_PTR[c+1] & (_U|_L)) == _L); in islower()
Dislower_l.c14 return (__locale_ctype_ptr_l (locale)[c+1] & (_U|_L)) == _L; in islower_l()
Disprint.c90 return(__CTYPE_PTR[c+1] & (_P|_U|_L|_N)); in isgraph()
98 return(__CTYPE_PTR[c+1] & (_P|_U|_L|_N|_B)); in isprint()
Disprint_l.c14 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()
Disalpha.c76 return(__CTYPE_PTR[c+1] & (_U|_L)); in isalpha()
Disalnum.c77 return(__CTYPE_PTR[c+1] & (_U|_L|_N)); in isalnum()
Disupper.c74 return ((__CTYPE_PTR[c+1] & (_U|_L)) == _U); in isupper()
Disalpha_l.c14 return __locale_ctype_ptr_l (locale)[c+1] & (_U|_L); in isalpha_l()
Disalnum_l.c14 return __locale_ctype_ptr_l (locale)[c+1] & (_U|_L|_N); in isalnum_l()
Disupper_l.c14 return (__locale_ctype_ptr_l (locale)[c+1] & (_U|_L)) == _U; in isupper_l()
/picolibc-3.5.0-3.4.0/newlib/libc/include/
Dctype.h101 #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/
Dmacros.inc52 #define _L $
/picolibc-3.5.0-3.4.0/newlib/
DChangeLog-20156562 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).