HomeSort by: relevance | last modified time | path
    Searched defs:islower (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/sys/
ctype_inline.h 53 #define islower(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_L)) macro
  /src/sys/arch/hpc/stand/libsa/
winblk.c 60 #define islower(c) ('a' <= (c) && (c) <= 'z') macro
61 #define _toupper(c) (islower(c) ? ((c) - 'a' + 'A') : (c))
  /src/sys/arch/hpcmips/stand/libsa/
winblk.c 60 #define islower(c) ('a' <= (c) && (c) <= 'z') macro
61 #define toupper(c) (islower(c) ? ((c) - 'a' + 'A') : (c))
  /src/sys/external/bsd/acpica/dist/include/
acclib.h 180 #define islower(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_LO)) macro
  /src/sys/lib/libkern/
libkern.h 72 LIBKERN_INLINE int islower(int) __unused;
169 islower(int ch) function in typeref:typename:LIBKERN_INLINE int
177 return (isupper(ch) || islower(ch));
227 if (islower(ch))
  /src/sys/external/bsd/ipf/netinet/
ip_proxy.h 146 # ifndef islower
147 # define islower(x) (((unsigned)(x) >= 'a') && ((unsigned)(x) <= 'z')) macro
150 # define isalpha(x) (isupper(x) || islower(x))

Completed in 13 milliseconds