Searched defs:islower (Results 1 - 13 of 13) sorted by relevance

/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dctype.h12 #define islower(c) ((c) >= 'a' && (c) <= 'z') macro
25 if (islower(c))
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/
H A Dctype.h45 /** The isalpha function tests for any character for which isupper or islower
49 characters for which isupper or islower is true.
96 /** The islower function tests for any character that is a lowercase letter or
98 isdigit, ispunct, or isspace is true. In the "C" locale, islower returns
106 int islower(int c);
195 the current locale, for which islower is true, the tolower
207 @return If the argument is a character for which islower is true and
229 #define islower(c) (__isCClass( (int)c, (_CL))) macro
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Ctype/
H A DCClass.c55 /** The isalpha function tests for any character for which isupper or islower
59 characters for which isupper or islower is true.
119 /** The islower function tests for any character that is a lowercase letter or
121 isdigit, ispunct, or isspace is true. In the "C" locale, islower returns
130 islower( function
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv6/
H A Dip6_addr.c58 #define islower(c) in_range(c, 'a', 'z') macro
126 10 + (islower(*s) ? *s - 'a' : *s - 'A'));
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv4/
H A Dip4_addr.c118 #define islower(c) in_range(c, 'a', 'z') macro
184 val = (val << 4) | (int)(c + 10 - (islower(c) ? 'a' : 'A'));
/vbox/src/VBox/Devices/Network/lwip/src/core/
H A Dinet.c340 #define islower(c) in_range(c, 'a', 'z') macro
399 val = (val << 4) | (int)(c + 10 - (islower(c) ? 'a' : 'A'));
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.1/Include/
H A Dpyport.h686 #undef islower macro
687 #define islower(c) iswlower(btowc(c)) macro
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Include/
H A Dpyport.h699 #undef islower macro
700 #define islower(c) iswlower(btowc(c)) macro
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/hw/xfree86/os-support/
H A Dxf86_libc.h279 #undef islower macro
280 #define islower(i) xf86islower(i) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dxf86_libc.h317 #undef islower macro
318 #define islower(i) xf86islower(i) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dxf86_libc.h317 #undef islower macro
318 #define islower(i) xf86islower(i) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dxf86_libc.h323 #undef islower macro
324 #define islower(i) xf86islower(i) macro
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A Dxf86_libc.h323 #undef islower macro
324 #define islower(i) xf86islower(i) macro

Completed in 105 milliseconds