Searched refs:isprint (Results 51 - 75 of 261) sorted by relevance

1234567891011

/netbsd-current/usr.bin/xlint/common/
H A Dlint.h190 return isprint((unsigned char)ch) != 0;
/netbsd-current/external/gpl2/xcvs/dist/lib/
H A Dfnmatch.c106 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
109 # define ISPRINT(c) (ISASCII (c) && isprint (c))
H A Dquotearg.c60 # define iswprint(wc) isprint ((unsigned char) (wc))
414 printable = isprint (c) != 0;
/netbsd-current/distrib/utils/libhack/
H A Dmultibyte.c267 if (!isprint(*pwcs & 0xFF))
277 if (!isprint(wc & 0xFF))
/netbsd-current/sys/external/bsd/acpica/dist/compiler/
H A Dasllistsup.c80 if (isprint (BufChar))
127 if (isprint (BufChar))
/netbsd-current/external/gpl2/xcvs/dist/diff/
H A Dsystem.h218 #define ISPRINT(c) (CTYPE_DOMAIN (c) && isprint (c))
/netbsd-current/usr.bin/talk/
H A Ddisplay.c143 if ( !isprint((u_char)*text) && *text != '\t') {
/netbsd-current/usr.bin/lastcomm/
H A Dlastcomm.c131 if (!isprint((unsigned char)*p))
/netbsd-current/external/cddl/osnet/dist/lib/libuutil/common/
H A Duu_misc.c274 isprint(p[i + j]) ? p[i + j] : '.');
/netbsd-current/external/gpl3/gdb/dist/readline/readline/
H A Dchardefs.h94 #define ISPRINT(c) (IN_CTYPE_DOMAIN (c) && isprint ((unsigned char)c))
/netbsd-current/tests/lib/libc/regex/
H A Ddebug.c214 if (isprint(ch) || ch == ' ')
/netbsd-current/games/mille/
H A Dmisc.c98 if (!isprint(c))
/netbsd-current/external/apache2/llvm/dist/libcxx/include/__support/xlocale/
H A D__posix_l_fallback.h51 return ::isprint(c);
/netbsd-current/external/bsd/openldap/dist/libraries/liblber/
H A Dbprint.c227 if ( isprint( (unsigned char) data[i] )) {
/netbsd-current/tests/lib/libc/locale/
H A Dt_wctype.c226 ATF_REQUIRE_EQ(!!isprint(c), inout);
/netbsd-current/external/gpl3/gdb.old/dist/readline/readline/
H A Dchardefs.h94 #define ISPRINT(c) (IN_CTYPE_DOMAIN (c) && isprint ((unsigned char)c))
/netbsd-current/external/bsd/openpam/dist/bin/openpam_dump_policy/
H A Dopenpam_dump_policy.c90 if (isprint((unsigned char)*p) && *p != '"')
/netbsd-current/sys/external/bsd/acpica/dist/common/
H A Ddmtbdump.c158 if (!isprint (Buffer[i]))
/netbsd-current/sys/external/bsd/acpica/dist/include/
H A Dacclib.h73 #define isprint(c) (AcpiGbl_Ctypes[(unsigned char)(c)] & (_ACPI_LO | _ACPI_UP | _ACPI_DI | _ACPI_XS | _ACPI_PU)) macro
/netbsd-current/sys/lib/libkern/
H A Dlibkern.h77 LIBKERN_INLINE int isprint(int) __unused;
207 return (ch != ' ' && isprint(ch));
211 isprint(int ch) function
219 return (isprint(ch) && ch != ' ' && !isalnum(ch));
/netbsd-current/libexec/utmp_update/
H A Dutmp_update.c123 if (!isprint((unsigned char)*p))
/netbsd-current/external/gpl2/gmake/dist/glob/
H A Dfnmatch.c75 # define ISGRAPH(c) (ISASCII (c) && isprint (c) && !isspace (c))
78 # define ISPRINT(c) (ISASCII (c) && isprint (c))
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dquotearg.c57 # define iswprint(wc) isprint ((unsigned char) (wc))
414 printable = isprint (c) != 0;
/netbsd-current/external/gpl2/dtc/dist/
H A Dtreesource.c46 return (isprint((unsigned char)c)
95 if (isprint((unsigned char)c))
/netbsd-current/sys/fs/udf/
H A Dudf_osta.c308 static int isprint(int c) { function
414 !isprint(udfName[extIndex +

Completed in 256 milliseconds

1234567891011