/vbox/src/VBox/Devices/PC/ipxe/src/include/ |
H A D | ctype.h | 11 #define isdigit(c) ((c) >= '0' && (c) <= '9') macro 14 #define isxdigit(c) (isdigit(c) || ((c) >= 'A' && (c) <= 'F') || ((c) >= 'a' && (c) <= 'f'))
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/ |
H A D | ctype.h | 35 /** The isalnum function tests for any character for which isalpha or isdigit 47 alphabetic characters for which none of iscntrl, isdigit, ispunct, or 78 /** The isdigit function tests for any decimal-digit character. 85 int isdigit(int c); 98 isdigit, ispunct, or isspace is true. In the "C" locale, islower returns 145 isdigit, ispunct, or isspace is true. In the "C" locale, isupper returns 227 #define isdigit(c) (__isCClass( (int)c, (_CD))) macro
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Ctype/ |
H A D | CClass.c | 39 /** The isalnum function tests for any character for which isalpha or isdigit 57 alphabetic characters for which none of iscntrl, isdigit, ispunct, or 89 /** The isdigit function tests for any decimal-digit character. 97 isdigit( function 121 isdigit, ispunct, or isspace is true. In the "C" locale, islower returns 192 isdigit, ispunct, or isspace is true. In the "C" locale, isupper returns
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv6/ |
H A D | ip6_addr.c | 56 #define isdigit(c) in_range(c, '0', '9') macro 57 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) 125 (isdigit(*s) ? *s - '0' :
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv4/ |
H A D | ip4_addr.c | 116 #define isdigit(c) in_range(c, '0', '9') macro 117 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) 167 if (!isdigit(c)) 180 if (isdigit(c)) {
|
/vbox/src/VBox/Devices/Network/lwip/src/core/ |
H A D | inet.c | 338 #define isdigit(c) in_range(c, '0', '9') macro 339 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F')) 382 if (!isdigit(c)) 395 if (isdigit(c)) {
|
/vbox/src/VBox/Devices/Network/slirp/libalias/ |
H A D | alias_ftp.c | 105 # define isdigit(ch) RT_C_IS_DIGIT(ch) macro 349 if (isdigit(ch)) { 359 if (isdigit(ch)) 369 if (isdigit(ch)) 434 if (isdigit(ch)) { 444 if (isdigit(ch)) 453 if (isdigit(ch)) { 460 if (isdigit(ch)) 512 if (isdigit(ch)) { 522 if (isdigit(c [all...] |
H A D | alias_dns.c | 27 #define isdigit(ch) RT_C_IS_DIGIT(ch) macro 283 || isdigit(*q)
|
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/SysCall/ |
H A D | CrtWrapper.c | 154 int isdigit (int c) function
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/generated/ |
H A D | dt_lex.c | 1003 # define isdigit(a_ch) RT_C_IS_DIGIT(a_ch) macro 1847 if (isdigit(v[0]) || v[0] == '-' || v[0] == '+') { 1851 if (isdigit(v[0]))
|
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/hw/xfree86/os-support/ |
H A D | xf86_libc.h | 275 #undef isdigit macro 276 #define isdigit(i) xf86isdigit(i) macro
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/ |
H A D | xf86_libc.h | 313 #undef isdigit macro 314 #define isdigit(i) xf86isdigit(i) macro
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/ |
H A D | xf86_libc.h | 313 #undef isdigit macro 314 #define isdigit(i) xf86isdigit(i) macro
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/ |
H A D | xf86_libc.h | 319 #undef isdigit macro 320 #define isdigit(i) xf86isdigit(i) macro
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/ |
H A D | xf86_libc.h | 319 #undef isdigit macro 320 #define isdigit(i) xf86isdigit(i) macro
|