| /netbsd-src/external/gpl2/groff/dist/src/libs/libgroff/ |
| H A D | cset.cpp | 41 #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 D | strtol.c | 44 #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 D | cmap.cpp | 30 #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 D | fnmatch.c | 62 # 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 D | fnmatch.c | 93 # 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 D | sys_defs.h | 1762 #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 D | allspace.c | 49 if (!ISASCII(ch) || !ISSPACE(ch)) in allspace()
|
| H A D | allprint.c | 49 if (!ISASCII(ch) || !ISPRINT(ch)) in allprint()
|
| H A D | allascii.c | 64 if (!ISASCII(ch)) in allascii_len()
|
| H A D | printable.c | 88 if (ISASCII(ch) && (ISPRINT(ch) || (except && strchr(except, ch)))) { in printable_except()
|
| H A D | unescape.c | 142 if (ISASCII(ch)) { in escape()
|
| H A D | dict_nisplus.c | 162 if ((ISASCII(ch) && !ISPRINT(ch)) || (ch > 126 && ch < 160)) { in dict_nisplus_lookup()
|
| /netbsd-src/external/ibm-public/postfix/dist/src/global/ |
| H A D | is_header.c | 72 if (c == 0 || !ISASCII(c) || ISCNTRL(c)) in is_header_buf()
|
| /netbsd-src/external/gpl3/binutils.old/dist/libiberty/ |
| H A D | regex.c | 215 # 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 D | regex.c | 215 # 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 D | regex.c | 215 # 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 D | regex.c | 231 #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 D | regex.c | 211 # 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 D | tls_verify.c | 383 if (ISASCII(ch) && !ISPRINT(ch)) { in tls_text_name()
|
| /netbsd-src/sys/dev/ic/ |
| H A D | ac97.c | 1326 #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 D | stop.spell-cc | 624 ISASCII
|
| /netbsd-src/external/ibm-public/postfix/dist/src/smtpd/ |
| H A D | smtpd.c | 3265 if (!ISASCII(ch) || !ISPRINT(ch) || ch == '\\') { in comment_sanitize()
|
| /netbsd-src/external/ibm-public/postfix/dist/ |
| H A D | WISHLIST | 1066 After the 20051222 ISASCII paranoia, lowercase() lowercases
|
| /netbsd-src/external/gpl2/gettext/dist/gnulib-local/lib/ |
| H A D | ChangeLog.1 | 199 * fnmatch.c (ISASCII): Remove macro.
|
| /netbsd-src/external/gpl2/grep/dist/ |
| H A D | ChangeLog | 2127 * src/regex.c: #undef ISASCII and ISPRINT before defining
|