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

  /src/external/gpl2/groff/dist/src/libs/libgroff/
cmap.cpp 29 #ifdef isascii
30 #define ISASCII(c) isascii(c)
32 #define ISASCII(c) (1)
55 cmupper.v[i] = ISASCII(i) && islower(i) ? toupper(i) : i;
56 cmlower.v[i] = ISASCII(i) && isupper(i) ? tolower(i) : i;
cset.cpp 40 #ifdef isascii
41 #define ISASCII(c) isascii(c)
43 #define ISASCII(c) (1)
94 csalpha.v[i] = ISASCII(i) && isalpha(i);
95 csupper.v[i] = ISASCII(i) && isupper(i);
96 cslower.v[i] = ISASCII(i) && islower(i);
97 csdigit.v[i] = ISASCII(i) && isdigit(i);
98 csxdigit.v[i] = ISASCII(i) && isxdigit(i);
99 csspace.v[i] = ISASCII(i) && isspace(i)
    [all...]
strtol.c 43 #ifdef isascii
44 #define ISASCII(c) isascii(c)
46 #define ISASCII(c) (1)
59 while (ISASCII((unsigned char)*str) && isspace((unsigned char)*str))
83 p = strchr(digits, (ISASCII((unsigned char)*str)
105 p = strchr(digits, (ISASCII((unsigned char)*str)
  /src/external/gpl2/gmake/dist/glob/
fnmatch.c 61 # if defined STDC_HEADERS || !defined isascii
62 # define ISASCII(c) 1
64 # define ISASCII(c) isascii(c)
68 # define ISBLANK(c) (ISASCII (c) && isblank (c))
73 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
75 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
78 # define ISPRINT(c) (ISASCII (c) && isprint (c))
79 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
80 # define ISALNUM(c) (ISASCII (c) && isalnum (c)
    [all...]
  /src/external/gpl2/xcvs/dist/lib/
fnmatch.c 92 # if defined STDC_HEADERS || !defined isascii
93 # define ISASCII(c) 1
95 # define ISASCII(c) isascii(c)
99 # define ISBLANK(c) (ISASCII (c) && isblank (c))
104 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
106 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
109 # define ISPRINT(c) (ISASCII (c) && isprint (c))
110 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
111 # define ISALNUM(c) (ISASCII (c) && isalnum (c)
    [all...]
  /src/sys/dev/ic/
ac97.c 1326 #define ISASCII(c) ((c) >= ' ' && (c) < 0x7f)
1327 if (ISASCII(pnp[0]) && ISASCII(pnp[1]) &&
1328 ISASCII(pnp[2]))
  /src/external/ibm-public/postfix/dist/src/util/
sys_defs.h 1105 #define isascii(c) ((unsigned)(c)<=0177) macro
1159 #define isascii(c) ((unsigned)(c)<=0177) macro
1770 * because the ISASCII() guard already ensures that the values are
1773 #define ISASCII(c) isascii(_UCHAR_(c))
1775 #define ISALNUM(c) (ISASCII(c) && isalnum((unsigned char)(c)))
1776 #define ISALPHA(c) (ISASCII(c) && isalpha((unsigned char)(c)))
1777 #define ISCNTRL(c) (ISASCII(c) && iscntrl((unsigned char)(c)))
1778 #define ISDIGIT(c) (ISASCII(c) && isdigit((unsigned char)(c)))
1779 #define ISGRAPH(c) (ISASCII(c) && isgraph((unsigned char)(c))
    [all...]
  /src/external/gpl3/binutils/dist/libiberty/
regex.c 207 isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
211 macros don't need to be guarded with references to isascii. ...
212 Defining isascii to 1 should let any compiler worth its salt
216 # undef ISASCII
217 # if defined STDC_HEADERS || (!defined isascii && !defined HAVE_ISASCII)
218 # define ISASCII(c) 1
220 # define ISASCII(c) isascii(c)
224 # define ISBLANK(c) (ISASCII (c) && isblank (c))
229 # define ISGRAPH(c) (ISASCII (c) && isgraph (c)
    [all...]
  /src/external/gpl3/binutils.old/dist/libiberty/
regex.c 207 isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
211 macros don't need to be guarded with references to isascii. ...
212 Defining isascii to 1 should let any compiler worth its salt
216 # undef ISASCII
217 # if defined STDC_HEADERS || (!defined isascii && !defined HAVE_ISASCII)
218 # define ISASCII(c) 1
220 # define ISASCII(c) isascii(c)
224 # define ISBLANK(c) (ISASCII (c) && isblank (c))
229 # define ISGRAPH(c) (ISASCII (c) && isgraph (c)
    [all...]
  /src/external/gpl3/gcc/dist/libiberty/
regex.c 207 isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
211 macros don't need to be guarded with references to isascii. ...
212 Defining isascii to 1 should let any compiler worth its salt
216 # undef ISASCII
217 # if defined STDC_HEADERS || (!defined isascii && !defined HAVE_ISASCII)
218 # define ISASCII(c) 1
220 # define ISASCII(c) isascii(c)
224 # define ISBLANK(c) (ISASCII (c) && isblank (c))
229 # define ISGRAPH(c) (ISASCII (c) && isgraph (c)
    [all...]
  /src/external/gpl3/gcc.old/dist/libiberty/
regex.c 207 isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
211 macros don't need to be guarded with references to isascii. ...
212 Defining isascii to 1 should let any compiler worth its salt
216 # undef ISASCII
217 # if defined STDC_HEADERS || (!defined isascii && !defined HAVE_ISASCII)
218 # define ISASCII(c) 1
220 # define ISASCII(c) isascii(c)
224 # define ISBLANK(c) (ISASCII (c) && isblank (c))
229 # define ISGRAPH(c) (ISASCII (c) && isgraph (c)
    [all...]
  /src/external/gpl3/gdb/dist/libiberty/
regex.c 207 isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
211 macros don't need to be guarded with references to isascii. ...
212 Defining isascii to 1 should let any compiler worth its salt
216 # undef ISASCII
217 # if defined STDC_HEADERS || (!defined isascii && !defined HAVE_ISASCII)
218 # define ISASCII(c) 1
220 # define ISASCII(c) isascii(c)
224 # define ISBLANK(c) (ISASCII (c) && isblank (c))
229 # define ISGRAPH(c) (ISASCII (c) && isgraph (c)
    [all...]
  /src/external/gpl3/gdb.old/dist/libiberty/
regex.c 207 isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
211 macros don't need to be guarded with references to isascii. ...
212 Defining isascii to 1 should let any compiler worth its salt
216 # undef ISASCII
217 # if defined STDC_HEADERS || (!defined isascii && !defined HAVE_ISASCII)
218 # define ISASCII(c) 1
220 # define ISASCII(c) isascii(c)
224 # define ISBLANK(c) (ISASCII (c) && isblank (c))
229 # define ISGRAPH(c) (ISASCII (c) && isgraph (c)
    [all...]
  /src/external/gpl2/grep/dist/lib/
regex.c 223 isascii says are ASCII (SGI's IRIX-4.0.5 is one such system --when
227 macros don't need to be guarded with references to isascii. ...
228 Defining isascii to 1 should let any compiler worth its salt
232 #undef ISASCII
233 #if defined STDC_HEADERS || (!defined isascii && !defined HAVE_ISASCII)
234 # define ISASCII(c) 1
236 # define ISASCII(c) isascii(c)
240 # define ISBLANK(c) (ISASCII (c) && isblank (c))
245 # define ISGRAPH(c) (ISASCII (c) && isgraph (c)
    [all...]

Completed in 53 milliseconds