Home
last modified time | relevance | path

Searched refs:_N (Results 1 – 2 of 2) sorted by relevance

/bionic/libc/stdlib/
Dctype_.c47 _N, _N, _N, _N, _N, _N, _N, _N,
48 _N, _N, _P, _P, _P, _P, _P, _P,
83 return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_U|_L|_N))); in isalnum()
98 return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _N)); in isdigit()
103 return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_P|_U|_L|_N))); in isgraph()
113 return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_P|_U|_L|_N|_B))); in isprint()
133 return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_N|_X))); in isxdigit()
/bionic/libc/include/
Dctype.h47 #define _N 0x04 macro
104 return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_U|_L|_N))); in isalnum()
119 return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & _N)); in isdigit()
124 return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_P|_U|_L|_N))); in isgraph()
134 return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_P|_U|_L|_N|_B))); in isprint()
154 return (c == -1 ? 0 : ((_ctype_ + 1)[(unsigned char)c] & (_N|_X))); in isxdigit()