Searched refs:isprint (Results 201 - 225 of 261) sorted by relevance

1234567891011

/netbsd-current/games/canfield/canfield/
H A Dcanfield.c1369 } else if (isprint((unsigned char)ch)) {
/netbsd-current/lib/libc/nameser/
H A Dns_print.c1087 *p++ = (isascii(rdata[m]) && isprint(rdata[m]))
/netbsd-current/usr.sbin/inetd/
H A Dinetd.c1226 if (isprint(i))
/netbsd-current/external/bsd/ntp/dist/ntpdate/
H A Dntpdate.c2182 junk[i] = (isprint((unsigned char)str[i]) ? str[i] : '.');
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dlocale_facets.h2575 isprint(_CharT __c, const locale& __loc) function
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dlocale_facets.h2607 isprint(_CharT __c, const locale& __loc) function
/netbsd-current/lib/libc/regex/
H A Dengine.c1251 if (isprint((uch)ch) || ch == ' ')
/netbsd-current/external/bsd/unbound/dist/dnstap/
H A Dunbound-dnstap-socket.c473 if(!isprint((unsigned char)str.data[i]))
/netbsd-current/usr.bin/kdump/
H A Dkdump.c729 if (isprint(c))
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Drust-lang.c1663 else if (ch >= 32 && ch <= 127 && isprint (ch))
/netbsd-current/external/gpl3/gdb/dist/sim/erc32/
H A Dfunc.c795 if (isprint (p[j ^ EBT]))
/netbsd-current/external/gpl3/gdb.old/dist/sim/erc32/
H A Dfunc.c798 if (isprint (p[j ^ EBT]))
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/libgrep/
H A Ddfa.c50 #define isgraph(C) (isprint(C) && !isspace(C))
62 #define ISPRINT(C) isprint(C)
74 #define ISPRINT(C) (isascii(C) && isprint(C))
/netbsd-current/external/gpl2/grep/dist/src/
H A Ddfa.c65 #define isgraph(C) (isprint(C) && !isspace(C))
77 #define ISPRINT(C) isprint(C)
89 #define ISPRINT(C) (isascii(C) && isprint(C))
/netbsd-current/external/bsd/ntp/dist/ntpd/
H A Drefclock_parse.c1628 #ifndef isprint
1629 #define isprint(_X_) (((_X_) > 0x1F) && ((_X_) < 0x7F)) macro
1657 isprint((unsigned char)*src)) /* only printables */
H A Drefclock_gpsdjson.c2197 } else if (isprint(uch)) {
/netbsd-current/external/gpl2/texinfo/dist/info/
H A Dinfomap.c1787 if (isprint (i))
/netbsd-current/external/bsd/file/dist/src/
H A Dcdf.c1410 abuf[j++] = isprint(*p) ? *p : '.';
/netbsd-current/external/bsd/libarchive/dist/libarchive/
H A Darchive_read_support_format_mtree.c1075 if (!isprint((unsigned char)*s) && *s != '\t') {
/netbsd-current/external/gpl3/binutils.old/dist/gprofng/src/
H A DModule.cc319 Dprintf (DEBUG_READ_AR, "%c", isprint (s[i]) ? s[i] : '?');
/netbsd-current/external/gpl3/binutils/dist/gprofng/src/
H A DModule.cc319 Dprintf (DEBUG_READ_AR, "%c", isprint (s[i]) ? s[i] : '?');
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Drust-lang.c1786 else if (ch >= 32 && ch <= 127 && isprint (ch))
/netbsd-current/external/mpl/dhcp/dist/common/
H A Doptions.c1866 !isprint (data [k]))
4265 if (!isascii (**src) || !isprint (**src)) {
/netbsd-current/external/cddl/osnet/dist/lib/libdtrace/common/
H A Ddt_consume.c1156 * isprint(3C) returns non-zero, isspace(3C) returns non-zero,
1161 * have meaning for the terminal and for which isprint(3C) and
1164 if (isprint((unsigned char)c[i]) ||
/netbsd-current/external/bsd/wpa/dist/src/eap_peer/
H A Deap.c1718 msg[i] = isprint(pos[i]) ? (char) pos[i] : '_';

Completed in 514 milliseconds

1234567891011