HomeSort by: relevance | last modified time | path
    Searched refs:iscntrl (Results 1 - 25 of 82) sorted by relevancy

1 2 3 4

  /src/external/apache2/llvm/dist/libcxx/include/
ctype.h 19 int iscntrl(int c);
45 #undef iscntrl macro
  /src/distrib/utils/more/
less.h 46 #define CONTROL_CHAR(c) (iscntrl((unsigned char)c))
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/
ctype.h 37 using std::iscntrl;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/
ctype.h 37 using std::iscntrl;
  /src/tests/usr.bin/xlint/lint1/
msg_342.c 20 int iscntrl(int);
46 /* expect+1: warning: argument to 'iscntrl' must be 'unsigned char' or EOF, not 'char' [341] */
47 iscntrl(c);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/
ctype.d 29 pure int iscntrl(int c);
  /src/external/cddl/osnet/dist/lib/libgen/common/
gmatch.c 54 ((c1) > 0xff || !iscntrl((int)c1)) && ((c2) > 0xff || \
55 !iscntrl((int)c2)))
  /src/include/
ctype.h 48 int iscntrl(int);
  /src/sys/sys/
ctype_inline.h 50 #define iscntrl(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_C)) macro
  /src/tests/usr.bin/cc/
t_ctype_abuse.sh 98 iscntrl \
  /src/external/gpl3/binutils/dist/include/
safe-ctype.h 92 #define ISCNTRL(c) _sch_test(c, _sch_iscntrl)
127 #undef iscntrl macro
128 #define iscntrl(c) do_not_use_iscntrl_with_safe_ctype macro
  /src/external/gpl3/binutils.old/dist/include/
safe-ctype.h 92 #define ISCNTRL(c) _sch_test(c, _sch_iscntrl)
127 #undef iscntrl macro
128 #define iscntrl(c) do_not_use_iscntrl_with_safe_ctype macro
  /src/external/gpl3/gcc/dist/include/
safe-ctype.h 92 #define ISCNTRL(c) _sch_test(c, _sch_iscntrl)
127 #undef iscntrl macro
128 #define iscntrl(c) do_not_use_iscntrl_with_safe_ctype macro
  /src/external/gpl3/gcc.old/dist/include/
safe-ctype.h 92 #define ISCNTRL(c) _sch_test(c, _sch_iscntrl)
127 #undef iscntrl macro
128 #define iscntrl(c) do_not_use_iscntrl_with_safe_ctype macro
  /src/external/gpl3/gdb.old/dist/include/
safe-ctype.h 92 #define ISCNTRL(c) _sch_test(c, _sch_iscntrl)
127 #undef iscntrl macro
128 #define iscntrl(c) do_not_use_iscntrl_with_safe_ctype macro
  /src/external/gpl3/gdb/dist/include/
safe-ctype.h 92 #define ISCNTRL(c) _sch_test(c, _sch_iscntrl)
127 #undef iscntrl macro
128 #define iscntrl(c) do_not_use_iscntrl_with_safe_ctype macro
  /src/tests/lib/libc/gen/
h_ctype_abuse.c 63 M(ISCNTRL, iscntrl) \
t_ctype.c 88 static int iscntrl_wrapper(int ch) { return iscntrl(ch); }
272 test_use("iscntrl", ctypefn);
1040 DEF_TEST_ABUSE(iscntrl)
1055 DEF_TEST_ABUSE_OVERRIDE(iscntrl)
1070 DEF_TEST_USE(iscntrl)
1107 ATF_CHECK(!iscntrl(ydots));
1142 ATF_CHECK(!iscntrl(Hard));
1177 ATF_CHECK(!iscntrl(ya));
1196 ADD_TEST_ABUSE(tp, iscntrl);
1211 ADD_TEST_ABUSE_OVERRIDE(tp, iscntrl);
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/
ctype_internal_test.c 41 && TEST_int_eq(iscntrl(n) != 0, ossl_iscntrl(n) != 0)
  /src/crypto/external/bsd/openssl/dist/test/
ctype_internal_test.c 41 && TEST_int_eq(iscntrl(n) != 0, ossl_iscntrl(n) != 0)
  /src/crypto/external/bsd/openssl.old/dist/test/
ctype_internal_test.c 41 && TEST_int_eq(iscntrl(n) != 0, ossl_iscntrl(n) != 0)
  /src/external/ibm-public/postfix/dist/src/global/
rfc2047_code.c 111 (isascii(c) && !iscntrl(c) && ch != ' ' \
236 } else if (!isascii(ch) || iscntrl(ch) || strchr(specials, ch)) {
346 need_to_qp += (!isascii(ch) || isspace(ch) || iscntrl(ch)
  /src/bin/csh/
char.h 84 #define Iscntrl(c) (((c) & QUOTE) ? 0 : iscntrl((unsigned char) (c)))
96 #define Iscntrl(c) (cmap(c,_CTR) && !(((c) & META) && AsciiOnly))
  /src/external/bsd/nvi/dist/common/
multibyte.h 52 #define ISCNTRL iswcntrl
85 #define ISCNTRL iscntrl
  /src/external/gpl2/groff/dist/src/libs/libgroff/
cset.cpp 104 cscntrl.v[i] = ISASCII(i) && iscntrl(i);

Completed in 22 milliseconds

1 2 3 4