Home
last modified time | relevance | path

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

/picolibc-3.7.0-3.6.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_.c48 _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
Dislower.c78 return ((__CTYPE_PTR[c+1] & (_U|_L)) == _L); in islower()
Dislower_l.c17 return (__locale_ctype_ptr_l (locale)[c+1] & (_U|_L)) == _L; in islower_l()
Disupper.c76 return ((__CTYPE_PTR[c+1] & (_U|_L)) == _U); in isupper()
Disalpha.c78 return __CTYPE_PTR[c+1] & (_U|_L); in isalpha()
Disgraph.c78 return __CTYPE_PTR[c+1]&(_P|_U|_L|_N); in isgraph()
Disalnum.c78 return __CTYPE_PTR[c+1] & (_U|_L|_N); in isalnum()
Disprint.c92 return __CTYPE_PTR[c+1] & (_P|_U|_L|_N|_B); in isprint()
Disalpha_l.c16 return __locale_ctype_ptr_l (locale)[c+1] & (_U|_L); in isalpha_l()
Disupper_l.c16 return (__locale_ctype_ptr_l (locale)[c+1] & (_U|_L)) == _U; in isupper_l()
Disalnum_l.c16 return __locale_ctype_ptr_l (locale)[c+1] & (_U|_L|_N); in isalnum_l()
Disgraph_l.c17 return __locale_ctype_ptr_l (locale)[c+1] & (_P|_U|_L|_N); in isgraph_l()
Disprint_l.c17 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/
Dctype.h227 #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/
Dmacros.inc52 #define _L $
/picolibc-3.7.0-3.6.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).