Searched defs:is_digit (Results 1 – 14 of 14) sorted by relevance
23 static inline bool is_digit(int c) in is_digit() function
18 static inline bool is_digit(int c) { in is_digit() function
255 static inline bool is_digit(char c) { return g_token_flags[static_cast<uint8_t>(c)] & 0x08; } in is_digit() function
36 int is_digit = s >= '0' && s <= '9'; in no_mischief_strncpy() local
263 const uint8_t is_digit = constant_time_in_range_8(a, '0', '9'); in base64_ascii_to_bin() local
138 is_digit(char ch) in is_digit() function
113 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
65 inline bool is_digit(char c) { return check_in_range(c, '0', '9'); } in is_digit() function
29 #define is_digit(c) ((c) >= '0' && (c) <= '9') macro
50 static boolean is_digit( const char *cur ) in is_digit() function