Searched refs:_U (Results 1 – 2 of 2) sorted by relevance
/tools/lib/ |
D | ctype.c | 20 _P,_U|_X,_U|_X,_U|_X,_U|_X,_U|_X,_U|_X,_U, /* 64-71 */ 21 _U,_U,_U,_U,_U,_U,_U,_U, /* 72-79 */ 22 _U,_U,_U,_U,_U,_U,_U,_U, /* 80-87 */ 23 _U,_U,_U,_P,_P,_P,_P,_P, /* 88-95 */ 32 _U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U, /* 192-207 */ 33 _U,_U,_U,_U,_U,_U,_U,_P,_U,_U,_U,_U,_U,_U,_U,_L, /* 208-223 */
|
/tools/include/linux/ |
D | ctype.h | 12 #define _U 0x01 /* upper */ macro 25 #define isalnum(c) ((__ismask(c)&(_U|_L|_D)) != 0) 26 #define isalpha(c) ((__ismask(c)&(_U|_L)) != 0) 28 #define isgraph(c) ((__ismask(c)&(_P|_U|_L|_D)) != 0) 30 #define isprint(c) ((__ismask(c)&(_P|_U|_L|_D|_SP)) != 0) 34 #define isupper(c) ((__ismask(c)&(_U)) != 0)
|