Searched refs:check (Results 51 - 75 of 652) sorted by relevance

1234567891011>>

/freebsd-11.0-release/contrib/sendmail/libmilter/
H A DMakefile9 check: FRC
/freebsd-11.0-release/contrib/sendmail/libsm/
H A DMakefile13 check: FRC
/freebsd-11.0-release/contrib/sendmail/src/
H A DMakefile9 check: FRC
/freebsd-11.0-release/contrib/sendmail/test/
H A DMakefile11 check: FRC
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugType.h40 BugType(class CheckName check, StringRef name, StringRef cat) argument
41 : Check(check), Name(name), Category(cat), SuppressonSink(false) {}
65 BuiltinBug(class CheckName check, const char *name, const char *description) argument
66 : BugType(check, name, categories::LogicError), desc(description) {}
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DTraversalChecker.cpp27 class TraversalDumper : public Checker< check::BranchCondition,
28 check::EndFunction > {
64 class CallDumper : public Checker< check::PreCall,
65 check::PostCall > {
H A DDebugCheckers.cpp35 class DominatorsTreeDumper : public Checker<check::ASTCodeBody> {
57 class LiveVariablesDumper : public Checker<check::ASTCodeBody> {
77 class CFGViewer : public Checker<check::ASTCodeBody> {
97 class CFGDumper : public Checker<check::ASTCodeBody> {
123 class CallGraphViewer : public Checker< check::ASTDecl<TranslationUnitDecl> > {
143 class CallGraphDumper : public Checker< check::ASTDecl<TranslationUnitDecl> > {
164 class ConfigDumper : public Checker< check::EndOfTranslationUnit > {
202 class ExplodedGraphViewer : public Checker< check::EndAnalysis > {
221 class BugHashDumper : public Checker<check::PostStmt<Stmt>> {
/freebsd-11.0-release/contrib/gperf/
H A DMakefile.in46 check : force
47 cd @subdir@; $(MAKE) check
/freebsd-11.0-release/sys/dev/netmap/
H A Dnetmap_offloadings.c76 uint16_t *check = NULL; local
89 iph->check = 0;
90 iph->check = nm_csum_ipv4(iph);
91 ND("IP csum %x", be16toh(iph->check));
110 check = &tcph->check;
118 check = &udph->check;
123 *check = 0;
125 nm_csum_tcpudp_ipv4(iph, check_data, len-14-iphlen, check);
326 uint16_t *check = NULL; local
[all...]
/freebsd-11.0-release/usr.bin/bsdcat/tests/
H A Dfunctional_test.sh33 check() function
53 eval "${testcase}_body() { check ${testcase}; }"
/freebsd-11.0-release/usr.bin/cpio/tests/
H A Dfunctional_test.sh33 check() function
53 eval "${testcase}_body() { check ${testcase}; }"
/freebsd-11.0-release/usr.bin/tar/tests/
H A Dfunctional_test.sh33 check() function
48 eval "${testcase}_body() { check ${testcase}; }"
/freebsd-11.0-release/contrib/xz/src/liblzma/common/
H A Dblock_buffer_encoder.c17 #include "check.h"
235 // check the version before validating the contents of *block.
239 if ((unsigned int)(block->check) > LZMA_CHECK_ID_MAX
243 if (!lzma_check_is_supported(block->check))
247 // here already. This way we don't need to check it again when adding
252 const size_t check_size = lzma_check_size(block->check);
301 // Calculate the integrity check. We reserved space for
302 // the Check field earlier so we don't need to check for
304 lzma_check_state check; local
305 lzma_check_init(&check, bloc
[all...]
H A Dblock_decoder.c15 #include "check.h"
47 lzma_check_state check; member in struct:lzma_coder_s
49 /// True if the integrity check won't be calculated and verified.
104 lzma_check_update(&coder->check, coder->block->check,
144 if (coder->block->check == LZMA_CHECK_NONE)
148 lzma_check_finish(&coder->check, coder->block->check);
155 const size_t check_size = lzma_check_size(coder->block->check);
162 // coder->check
[all...]
H A Dblock_util.c25 + lzma_check_size(block->check);
60 || (unsigned int)(block->check) > LZMA_CHECK_ID_MAX)
71 + lzma_check_size(block->check);
H A Dstream_encoder.c190 .check = coder->block_options.check,
267 const lzma_filter *filters, lzma_check check)
292 next->coder->block_options.check = check;
303 .check = check,
321 const lzma_filter *filters, lzma_check check)
323 lzma_next_strm_init(stream_encoder_init, strm, filters, check);
266 stream_encoder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter *filters, lzma_check check) argument
H A Dindex_hash.c15 #include "check.h"
32 lzma_check_state check; member in struct:__anon5866
97 (void)lzma_check_init(&index_hash->blocks.check, LZMA_CHECK_BEST);
98 (void)lzma_check_init(&index_hash->records.check, LZMA_CHECK_BEST);
136 lzma_check_update(&info->check, LZMA_CHECK_BEST,
295 lzma_check_finish(&index_hash->blocks.check, LZMA_CHECK_BEST);
296 lzma_check_finish(&index_hash->records.check, LZMA_CHECK_BEST);
297 if (memcmp(index_hash->blocks.check.buffer.u8,
298 index_hash->records.check.buffer.u8,
/freebsd-11.0-release/crypto/openssh/
H A Dcompat.c67 } check[] = { local
208 for (i = 0; check[i].pat; i++) {
209 if (match_pattern_list(version, check[i].pat, 0) == 1) {
211 version, check[i].pat, check[i].bugs);
212 datafellows = check[i].bugs; /* XXX for now */
213 return check[i].bugs;
/freebsd-11.0-release/usr.bin/dtc/
H A Dchecking.hh111 * Abstract base class for simple property checks. This class defines a check
114 * and override the check() method.
130 * property to check.
135 * The check method, which subclasses should implement.
137 virtual bool check(device_tree *tree, const node_ptr &n, property_ptr p) = 0;
148 * property to check as arguments.
152 virtual bool check(device_tree *tree, const node_ptr &n, property_ptr p) = 0;
163 virtual bool check(device_tree *, const node_ptr &, property_ptr p) function in struct:dtc::fdt::checking::property_type_checker
178 virtual bool check(device_tree *, const node_ptr &, property_ptr p) function in struct:dtc::fdt::checking::property_type_checker
193 virtual bool check(device_tre function in struct:dtc::fdt::checking::property_type_checker
216 virtual bool check(device_tree *tree, const node_ptr &, property_ptr p) function in struct:dtc::fdt::checking::property_type_checker
[all...]
/freebsd-11.0-release/contrib/atf/atf-c++/
H A Dcheck_test.cpp26 #include "atf-c++/check.hpp"
55 std::auto_ptr< atf::check::check_result >
64 return atf::check::exec(argva);
68 std::auto_ptr< atf::check::check_result >
79 return atf::check::exec(argva);
97 ATF_REQUIRE(atf::check::build_c_o("test.c", "test.o",
112 ATF_REQUIRE(!atf::check::build_c_o("test.c", "test.o",
129 ATF_REQUIRE(atf::check::build_cpp("test.c", "test.p",
144 ATF_REQUIRE(!atf::check::build_cpp("test.c", "test.p",
159 ATF_REQUIRE(atf::check
[all...]
/freebsd-11.0-release/contrib/dtc/
H A Dchecks.c41 struct check;
43 typedef void (*tree_check_fn)(struct check *c, struct node *dt);
44 typedef void (*node_check_fn)(struct check *c, struct node *dt, struct node *node);
45 typedef void (*prop_check_fn)(struct check *c, struct node *dt,
48 struct check { struct
58 struct check **prereq;
62 static struct check *nm##_prereqs[] = { __VA_ARGS__ }; \
63 static struct check nm = { \
102 static inline void check_msg(struct check *c, const char *fmt, ...) __attribute__((format (printf, 2, 3)));
104 static inline void check_msg(struct check *
[all...]
/freebsd-11.0-release/contrib/netbsd-tests/lib/libc/stdlib/
H A Dt_strtol.c48 static void check(struct test *, long int, long long int, char *);
51 check(struct test *t, long int li, long long int lli, char *end) function
108 check(&t[i], li, lli, end);
142 check(&t[i], li, lli, end);
182 check(&t[i], li, -1, end);
221 check(&t[i], li, lli, end);
/freebsd-11.0-release/contrib/netbsd-tests/share/examples/
H A Dt_asm.sh37 # check for implementation fails, the calling test is failed.
42 make check-implemented)
/freebsd-11.0-release/sys/security/mac/
H A Dmac_internal.h264 * MAC_POLICY_CHECK performs the designated check by walking the policy
268 #define MAC_POLICY_CHECK(check, args...) do { \
273 if (mpc->mpc_ops->mpo_ ## check != NULL) \
275 mpc->mpc_ops->mpo_ ## check (args), \
281 if (mpc->mpc_ops->mpo_ ## check != NULL) \
283 mpc->mpc_ops->mpo_ ## check (args), \
290 #define MAC_POLICY_CHECK_NOSLEEP(check, args...) do { \
295 if (mpc->mpc_ops->mpo_ ## check != NULL) \
297 mpc->mpc_ops->mpo_ ## check (args), \
305 if (mpc->mpc_ops->mpo_ ## check !
[all...]
/freebsd-11.0-release/contrib/subversion/subversion/include/private/
H A Dsvn_dep_compat.h46 #error int is shorter than 32 bits and may break Subversion. Define SVN_ALLOW_SHORT_INTS to skip this check.
59 #error char is not 8 bits and may break Subversion. Define SVN_ALLOW_NON_8_BIT_CHARS to skip this check.
132 * as far back as 3.7.3 and relaxes the check at initialization time

Completed in 127 milliseconds

1234567891011>>