HomeSort by relevance Sort by last modified time
    Searched defs:isalpha (Results 1 - 15 of 15) sorted by null

  /onnv/onnv-gate/usr/src/lib/libbc/libc/gen/common/
ctype_.c 73 #undef isalpha macro
89 int isalpha(c) function
  /onnv/onnv-gate/usr/src/uts/common/sys/
ctype.h 52 #define ISALPHA(_c) \
57 (ISALPHA(_c) || \
95 isalpha(char c) function
97 return (ISALPHA(c));
99 #pragma inline(isalpha)
kobj_lex.h 56 #define isalpha(ch) (((ch) >= 'a' && (ch) <= 'z') || \ macro
59 #define isalphanum(ch) (isalpha(ch) || isdigit(ch))
  /onnv/onnv-gate/usr/src/common/util/
strtolctype.h 45 #define isalnum(ch) (isalpha(ch) || isdigit(ch))
46 #define isalpha(ch) (isupper(ch) || islower(ch)) macro
  /onnv/onnv-gate/usr/src/lib/libbc/inc/5include/
ctype.h 43 extern int isalpha(/* int c */);
65 #define isalpha(c) ((_ctype_ + 1)[c] & (_U | _L)) macro
  /onnv/onnv-gate/usr/src/lib/libbc/inc/include/
ctype.h 41 #define isalpha(c) ((_ctype_+1)[c]&(_U|_L)) macro
  /onnv/onnv-gate/usr/src/stand/lib/sa/
ctype.h 53 #define isalpha(c) ((__ctype + 1)[c] & (_U | _L)) macro
  /onnv/onnv-gate/usr/src/head/iso/
ctype_iso.h 82 extern int isalpha(int);
118 inline int isalpha(int c) { return (__ctype_mask[c] & _ISALPHA); } function in namespace:std
130 inline int isalpha(int c) { return ((__ctype + 1)[c] & (_U | _L)); }
149 #define isalpha(c) (__ctype_mask[(int)(c)] & _ISALPHA) macro
161 #define isalpha(c) ((__ctype + 1)[(int)(c)] & (_U | _L)) macro
185 #define isalpha(c) ((_ctype + 1)[(int)(c)] & (_U | _L)) macro
  /onnv/onnv-gate/usr/src/uts/common/io/cardbus/
cardbus_parse.h 76 #undef isalpha macro
81 #define isalpha(ch) (((ch) >= 'a' && (ch) <= 'z') || \ macro
  /onnv/onnv-gate/usr/src/uts/common/io/ib/clients/rds/
rdsib_sc.c 88 #define isalpha(ch) (((ch) >= 'a' && (ch) <= 'z') || \ macro
105 while ((i >= 0) && (!isalpha(name[i]))) i--;
  /onnv/onnv-gate/usr/src/uts/common/fs/sockfs/
nl7curi.h 57 #ifndef isalpha
58 #define isalpha(c) (((c) >= 'A' && (c) <= 'Z') || ((c) >= 'a' && (c) <= 'z')) macro
  /onnv/onnv-gate/usr/src/lib/libshell/common/include/
lexstates.h 88 # undef isalpha macro
89 # define isalpha(x) iswalpha(x) macro
110 # define isaname(c) ((c)>0xff?isalpha(c): sh_lexstates[ST_NAME][(c)]==0)
111 # define isaletter(c) ((c)>0xff?isalpha(c): sh_lexstates[ST_DOL][(c)]==S_ALP && (c)!='.')
  /onnv/onnv-gate/usr/src/common/mpi/
mpi.h 78 #ifndef isalpha
79 #define isalpha(x) (isupper(x) || islower(x)) macro
  /onnv/onnv-gate/usr/src/uts/common/inet/ipf/netinet/
ip_proxy.h 134 #ifndef isalpha
135 #define isalpha(x) (isupper(x) || islower(x)) macro
  /onnv/onnv-gate/usr/src/uts/common/inet/nca/
nca.h 1666 #define isalpha macro
    [all...]

Completed in 6549 milliseconds