Searched refs:_N (Results 1 – 10 of 10) sorted by relevance
/picolibc-3.5.0-3.4.0/newlib/libc/ctype/ |
D | ctype_.c | 44 _N, _N, _N, _N, _N, _N, _N, _N, \ 45 _N, _N, _P, _P, _P, _P, _P, _P, \
|
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 | isdigit.c | 78 return(__CTYPE_PTR[c+1] & _N); in isdigit()
|
D | isxdigit.c | 77 return(__CTYPE_PTR[c+1] & ((_X)|(_N))); in isxdigit()
|
D | isalnum.c | 77 return(__CTYPE_PTR[c+1] & (_U|_L|_N)); in isalnum()
|
D | isdigit_l.c | 14 return __locale_ctype_ptr_l (locale)[c+1] & _N; in isdigit_l()
|
D | isxdigit_l.c | 14 return __locale_ctype_ptr_l (locale)[c+1] & ((_X)|(_N)); in isxdigit_l()
|
D | isalnum_l.c | 14 return __locale_ctype_ptr_l (locale)[c+1] & (_U|_L|_N); in isalnum_l()
|
/picolibc-3.5.0-3.4.0/newlib/libc/include/ |
D | ctype.h | 102 #define _N 04 macro 134 #define isdigit(__c) (__ctype_lookup(__c)&_N) 135 #define isxdigit(__c) (__ctype_lookup(__c)&(_X|_N)) 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)) 162 #define isdigit_l(__c,__l) (__ctype_lookup_l(__c,__l)&_N) 163 #define isxdigit_l(__c,__l) (__ctype_lookup_l(__c,__l)&(_X|_N)) 166 #define isalnum_l(__c,__l) (__ctype_lookup_l(__c,__l)&(_U|_L|_N)) 167 #define isprint_l(__c,__l) (__ctype_lookup_l(__c,__l)&(_P|_U|_L|_N|_B)) [all …]
|