Home
last modified time | relevance | path

Searched refs:ISASCII (Results 1 – 25 of 27) sorted by relevance

12

/netbsd-src/external/gpl2/groff/dist/src/libs/libgroff/
H A Dcset.cpp41 #define ISASCII(c) isascii(c) macro
43 #define ISASCII(c) (1) macro
94 csalpha.v[i] = ISASCII(i) && isalpha(i); in cset_init()
95 csupper.v[i] = ISASCII(i) && isupper(i); in cset_init()
96 cslower.v[i] = ISASCII(i) && islower(i); in cset_init()
97 csdigit.v[i] = ISASCII(i) && isdigit(i); in cset_init()
98 csxdigit.v[i] = ISASCII(i) && isxdigit(i); in cset_init()
99 csspace.v[i] = ISASCII(i) && isspace(i); in cset_init()
100 cspunct.v[i] = ISASCII(i) && ispunct(i); in cset_init()
101 csalnum.v[i] = ISASCII(i) && isalnum(i); in cset_init()
[all …]
H A Dstrtol.c44 #define ISASCII(c) isascii(c) macro
46 #define ISASCII(c) (1) macro
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)
H A Dcmap.cpp30 #define ISASCII(c) isascii(c) macro
32 #define ISASCII(c) (1) macro
55 cmupper.v[i] = ISASCII(i) && islower(i) ? toupper(i) : i; in cmap_init()
56 cmlower.v[i] = ISASCII(i) && isupper(i) ? tolower(i) : i; in cmap_init()
/netbsd-src/external/gpl2/gmake/dist/glob/
H A Dfnmatch.c62 # define ISASCII(c) 1 macro
64 # define ISASCII(c) isascii(c) macro
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))
81 # define ISALPHA(c) (ISASCII (c) && isalpha (c))
82 # define ISCNTRL(c) (ISASCII (c) && iscntrl (c))
[all …]
/netbsd-src/external/gpl2/xcvs/dist/lib/
H A Dfnmatch.c93 # define ISASCII(c) 1 macro
95 # define ISASCII(c) isascii(c) macro
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))
112 # define ISALPHA(c) (ISASCII (c) && isalpha (c))
113 # define ISCNTRL(c) (ISASCII (c) && iscntrl (c))
[all …]
/netbsd-src/external/ibm-public/postfix/dist/src/util/
H A Dsys_defs.h1762 #define ISASCII(c) isascii(_UCHAR_(c)) macro
1764 #define ISALNUM(c) (ISASCII(c) && isalnum((unsigned char)(c)))
1765 #define ISALPHA(c) (ISASCII(c) && isalpha((unsigned char)(c)))
1766 #define ISCNTRL(c) (ISASCII(c) && iscntrl((unsigned char)(c)))
1767 #define ISDIGIT(c) (ISASCII(c) && isdigit((unsigned char)(c)))
1768 #define ISGRAPH(c) (ISASCII(c) && isgraph((unsigned char)(c)))
1769 #define ISLOWER(c) (ISASCII(c) && islower((unsigned char)(c)))
1770 #define ISPRINT(c) (ISASCII(c) && isprint((unsigned char)(c)))
1771 #define ISPUNCT(c) (ISASCII(c) && ispunct((unsigned char)(c)))
1772 #define ISSPACE(c) (ISASCII(c) && isspace((unsigned char)(c)))
[all …]
H A Dallspace.c49 if (!ISASCII(ch) || !ISSPACE(ch)) in allspace()
H A Dallprint.c49 if (!ISASCII(ch) || !ISPRINT(ch)) in allprint()
H A Dallascii.c64 if (!ISASCII(ch)) in allascii_len()
H A Dprintable.c88 if (ISASCII(ch) && (ISPRINT(ch) || (except && strchr(except, ch)))) { in printable_except()
H A Dunescape.c142 if (ISASCII(ch)) { in escape()
H A Ddict_nisplus.c162 if ((ISASCII(ch) && !ISPRINT(ch)) || (ch > 126 && ch < 160)) { in dict_nisplus_lookup()
/netbsd-src/external/ibm-public/postfix/dist/src/global/
H A Dis_header.c72 if (c == 0 || !ISASCII(c) || ISCNTRL(c)) in is_header_buf()
/netbsd-src/external/gpl3/binutils.old/dist/libiberty/
H A Dregex.c215 # undef ISASCII
217 # define ISASCII(c) 1 macro
219 # define ISASCII(c) isascii(c) macro
223 # define ISBLANK(c) (ISASCII (c) && isblank (c))
228 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
230 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
234 # define ISPRINT(c) (ISASCII (c) && isprint (c))
235 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
236 # define ISALNUM(c) (ISASCII (c) && isalnum (c))
237 # define ISALPHA(c) (ISASCII (c) && isalpha (c))
[all …]
/netbsd-src/external/gpl3/gcc/dist/libiberty/
H A Dregex.c215 # undef ISASCII
217 # define ISASCII(c) 1 macro
219 # define ISASCII(c) isascii(c) macro
223 # define ISBLANK(c) (ISASCII (c) && isblank (c))
228 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
230 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
234 # define ISPRINT(c) (ISASCII (c) && isprint (c))
235 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
236 # define ISALNUM(c) (ISASCII (c) && isalnum (c))
237 # define ISALPHA(c) (ISASCII (c) && isalpha (c))
[all …]
/netbsd-src/external/gpl3/binutils/dist/libiberty/
H A Dregex.c215 # undef ISASCII
217 # define ISASCII(c) 1 macro
219 # define ISASCII(c) isascii(c) macro
223 # define ISBLANK(c) (ISASCII (c) && isblank (c))
228 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
230 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
234 # define ISPRINT(c) (ISASCII (c) && isprint (c))
235 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
236 # define ISALNUM(c) (ISASCII (c) && isalnum (c))
237 # define ISALPHA(c) (ISASCII (c) && isalpha (c))
[all …]
/netbsd-src/external/gpl2/grep/dist/lib/
H A Dregex.c231 #undef ISASCII
233 # define ISASCII(c) 1 macro
235 # define ISASCII(c) isascii(c) macro
239 # define ISBLANK(c) (ISASCII (c) && isblank (c))
244 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
246 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
250 #define ISPRINT(c) (ISASCII (c) && isprint (c))
251 #define ISDIGIT(c) (ISASCII (c) && isdigit (c))
252 #define ISALNUM(c) (ISASCII (c) && isalnum (c))
253 #define ISALPHA(c) (ISASCII (c) && isalpha (c))
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libiberty/
H A Dregex.c211 # undef ISASCII
213 # define ISASCII(c) 1 macro
215 # define ISASCII(c) isascii(c) macro
219 # define ISBLANK(c) (ISASCII (c) && isblank (c))
224 # define ISGRAPH(c) (ISASCII (c) && isgraph (c))
226 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
230 # define ISPRINT(c) (ISASCII (c) && isprint (c))
231 # define ISDIGIT(c) (ISASCII (c) && isdigit (c))
232 # define ISALNUM(c) (ISASCII (c) && isalnum (c))
233 # define ISALPHA(c) (ISASCII (c) && isalpha (c))
[all …]
/netbsd-src/external/ibm-public/postfix/dist/src/tls/
H A Dtls_verify.c383 if (ISASCII(ch) && !ISPRINT(ch)) { in tls_text_name()
/netbsd-src/sys/dev/ic/
H A Dac97.c1326 #define ISASCII(c) ((c) >= ' ' && (c) < 0x7f) in ac97_attach_type() macro
1327 if (ISASCII(pnp[0]) && ISASCII(pnp[1]) && in ac97_attach_type()
1328 ISASCII(pnp[2])) in ac97_attach_type()
/netbsd-src/external/ibm-public/postfix/dist/proto/
H A Dstop.spell-cc624 ISASCII
/netbsd-src/external/ibm-public/postfix/dist/src/smtpd/
H A Dsmtpd.c3265 if (!ISASCII(ch) || !ISPRINT(ch) || ch == '\\') { in comment_sanitize()
/netbsd-src/external/ibm-public/postfix/dist/
H A DWISHLIST1066 After the 20051222 ISASCII paranoia, lowercase() lowercases
/netbsd-src/external/gpl2/gettext/dist/gnulib-local/lib/
H A DChangeLog.1199 * fnmatch.c (ISASCII): Remove macro.
/netbsd-src/external/gpl2/grep/dist/
H A DChangeLog2127 * src/regex.c: #undef ISASCII and ISPRINT before defining

12