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

  /src/external/apache2/llvm/dist/libcxx/include/
ctype.h 22 int islower(int c);
48 #undef islower macro
  /src/external/cddl/osnet/dist/common/util/
strtolctype.h 50 #define isalpha(ch) (isupper(ch) || islower(ch))
52 #define islower(ch) ((ch) >= 'a' && (ch) <= 'z') macro
62 (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/
missing_files.py 48 def islower(c): function
55 return isupper(c) or islower(c)
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/
missing_files.py 48 def islower(c): function
55 return isupper(c) or islower(c)
  /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 72 #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
177 return (isupper(ch) || islower(ch));
227 if (islower(ch))
  /src/external/cddl/osnet/sys/kern/
ddi.c 89 #define isalpha(ch) (isupper(ch) || islower(ch))
91 #define islower(ch) ((ch) >= 'a' && (ch) <= 'z') macro
99 (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A')
  /src/external/gpl3/binutils/dist/include/
safe-ctype.h 95 #define ISLOWER(c) _sch_test(c, _sch_islower)
133 #undef islower macro
134 #define islower(c) do_not_use_islower_with_safe_ctype macro
  /src/external/gpl3/binutils.old/dist/include/
safe-ctype.h 95 #define ISLOWER(c) _sch_test(c, _sch_islower)
133 #undef islower macro
134 #define islower(c) do_not_use_islower_with_safe_ctype macro
  /src/external/gpl3/gcc/dist/include/
safe-ctype.h 95 #define ISLOWER(c) _sch_test(c, _sch_islower)
133 #undef islower macro
134 #define islower(c) do_not_use_islower_with_safe_ctype macro
  /src/external/gpl3/gcc.old/dist/include/
safe-ctype.h 95 #define ISLOWER(c) _sch_test(c, _sch_islower)
133 #undef islower macro
134 #define islower(c) do_not_use_islower_with_safe_ctype macro
  /src/external/gpl3/gdb.old/dist/include/
safe-ctype.h 95 #define ISLOWER(c) _sch_test(c, _sch_islower)
133 #undef islower macro
134 #define islower(c) do_not_use_islower_with_safe_ctype macro
  /src/external/gpl3/gdb/dist/include/
safe-ctype.h 95 #define ISLOWER(c) _sch_test(c, _sch_islower)
133 #undef islower macro
134 #define islower(c) do_not_use_islower_with_safe_ctype macro
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
locale_facets.h 2637 islower(_CharT __c, const locale& __loc) function
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
locale_facets.h 2625 islower(_CharT __c, const locale& __loc) function
  /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 37 milliseconds