Searched refs:check (Results 176 - 200 of 772) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/tcsh/
H A Dtw.parse.c688 * return true if check matches initial chars in template
689 * This differs from PWB imatch in that if check is null
693 is_prefix(Char *check, Char *template) argument
695 for (; *check; check++, template++)
696 if ((*check & TRIM) != (*template & TRIM))
703 * return true if check matches initial chars in template
704 * This differs from PWB imatch in that if check is null
709 is_prefixmatch(Char *check, Char *template, int enhanced) argument
713 for (; *check; chec
753 is_suffix(Char *check, Char *template) argument
[all...]
/freebsd-13-stable/lib/liblzma/
H A DMakefile18 check.h \
78 .PATH: ${LZMADIR}/check
79 SRCS+= check.c \
141 -I${LZMADIR}/check \
/freebsd-13-stable/release/
H A DMakefile.gce9 GCE_UPLOAD_TGTS= gce-check-depends \
37 gce-check-depends:
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DArrayBoundChecker.cpp9 // This file defines ArrayBoundChecker, which is a path-sensitive check
27 public Checker<check::Location> {
86 // Array bound check succeeded. From this point forward the array bound
H A DCheckSizeofPointer.cpp9 // This file defines a check for unintended use of sizeof() on pointer
80 class SizeofPointerChecker : public Checker<check::ASTCodeBody> {
H A DNSAutoreleasePoolChecker.cpp10 // about subpar uses of NSAutoreleasePool. Note that while the check itself
11 // (in its current form) could be written as a flow-insensitive check, in
33 : public Checker<check::PreObjCMessage> {
H A DOSObjectCStyleCast.cpp30 class OSObjectCStyleCastChecker : public Checker<check::ASTCodeBody> {
H A DObjCPropertyChecker.cpp26 : public Checker<check::ASTDecl<ObjCPropertyDecl>> {
H A DObjCSuperDeallocChecker.cpp9 // This defines ObjCSuperDeallocChecker, a builtin check that warns when
27 : public Checker<check::PostObjCMessage, check::PreObjCMessage,
28 check::PreCall, check::Location> {
H A DPointerSubChecker.cpp11 // This check corresponds to CWE-469.
26 : public Checker< check::PreStmt<BinaryOperator> > {
H A DReturnPointerRangeChecker.cpp9 // This file defines ReturnPointerRangeChecker, which is a path-sensitive check
27 public Checker< check::PreStmt<ReturnStmt> > {
H A DSimpleStreamChecker.cpp50 class SimpleStreamChecker : public Checker<check::PostCall,
51 check::PreCall,
52 check::DeadSymbols,
53 check::PointerEscape> {
H A DSmartPtrChecker.cpp9 // This file defines a checker that check for null dereference of C++ smart
31 class SmartPtrChecker : public Checker<check::PreCall> {
H A DUndefinedArraySubscriptChecker.cpp9 // This defines UndefinedArraySubscriptChecker, a builtin check in ExprEngine
26 : public Checker< check::PreStmt<ArraySubscriptExpr> > {
H A DVforkChecker.cpp44 class VforkChecker : public Checker<check::PreCall, check::PostCall,
45 check::Bind, check::PreStmt<ReturnStmt>> {
/freebsd-13-stable/contrib/googletest/googletest/scripts/test/
H A DMakefile7 # make check - makes everything and runs the built sample test.
33 check : all
/freebsd-13-stable/contrib/atf/atf-c++/detail/
H A Dtest_helpers.cpp35 #include "atf-c++/check.hpp"
60 return atf::check::build_cxx_o(sfile, "test.o",
80 const std::string failmsg = std::string("Header check failed; ") +
/freebsd-13-stable/sys/contrib/openzfs/contrib/zcp/
H A Dautosnap.lua15 -p <property>: property to check. [default: com.sun:auto-snapshot]
53 err = zfs.check.snapshot(ds_snap_name)
/freebsd-13-stable/sys/contrib/zlib/
H A Dinflate.h30 DICTID, /* i: waiting for dictionary check value */
33 TYPEDO, /* i: same, but skip check to exit inflate on new block */
47 CHECK, /* i: waiting for 32-bit check value */
49 DONE, /* finished check, done -- remain here until reset */
87 bit 2 true to validate check value */
91 unsigned long check; /* protected copy of check value */ member in struct:inflate_state
/freebsd-13-stable/contrib/lutok/admin/
H A Dtravis-install-deps.sh61 wget --no-check-certificate \
/freebsd-13-stable/contrib/ncurses/misc/
H A Dgen-pkgconfig.in103 for check in $lib_flags
105 if [ "x$check" = "x$opt" ]
/freebsd-13-stable/sys/sys/
H A Dtimeet.h96 struct eventtimer *et_find(const char *name, int check, int want);
/freebsd-13-stable/sys/cddl/dev/fbt/x86/
H A Dfbt_isa.c291 caddr_t check = (caddr_t) instr - j; local
294 if (check < symval->value)
297 if (check + sizeof (caddr_t) > (caddr_t)limit)
300 ptr = *(uint8_t **)check;
/freebsd-13-stable/crypto/openssl/apps/
H A Drsa.c50 {"check", OPT_CHECK, '-', "Verify key consistency"},
72 int informat = FORMAT_PEM, outformat = FORMAT_PEM, text = 0, check = 0; local
143 check = 1;
161 if (check && pubin) {
216 if (check) {
H A Dverify.c22 static int check(X509_STORE *ctx, const char *file,
186 if (check(store, NULL, untrusted, trusted, crls, show_chain) != 1)
190 if (check(store, argv[i], untrusted, trusted, crls,
205 static int check(X509_STORE *ctx, const char *file, function

Completed in 293 milliseconds

1234567891011>>