Searched defs:isdigit (Results 1 - 15 of 15) sorted by relevance

/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dctype.h11 #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 Dctype.h35 /** 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 DCClass.c39 /** 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 Dip6_addr.c56 #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 Dip4_addr.c116 #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 Dinet.c338 #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 Dalias_ftp.c105 # 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 Dalias_dns.c27 #define isdigit(ch) RT_C_IS_DIGIT(ch) macro
283 || isdigit(*q)
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/SysCall/
H A DCrtWrapper.c154 int isdigit (int c) function
/vbox/src/VBox/ExtPacks/VBoxDTrace/generated/
H A Ddt_lex.c1003 # 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 Dxf86_libc.h275 #undef isdigit macro
276 #define isdigit(i) xf86isdigit(i) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dxf86_libc.h313 #undef isdigit macro
314 #define isdigit(i) xf86isdigit(i) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dxf86_libc.h313 #undef isdigit macro
314 #define isdigit(i) xf86isdigit(i) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dxf86_libc.h319 #undef isdigit macro
320 #define isdigit(i) xf86isdigit(i) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dxf86_libc.h319 #undef isdigit macro
320 #define isdigit(i) xf86isdigit(i) macro

Completed in 243 milliseconds