Searched refs:check (Results 76 - 100 of 772) sorted by relevance

1234567891011>>

/freebsd-13-stable/usr.bin/bsdcat/tests/
H A Dfunctional_test.sh33 check() function
53 eval "${testcase}_body() { check ${testcase}; }"
/freebsd-13-stable/usr.bin/cpio/tests/
H A Dfunctional_test.sh33 check() function
53 eval "${testcase}_body() { check ${testcase}; }"
/freebsd-13-stable/usr.bin/tar/tests/
H A Dfunctional_test.sh33 check() function
48 eval "${testcase}_body() { check ${testcase}; }"
/freebsd-13-stable/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:__anon6608
49 /// True if the integrity check won't be calculated and verified.
106 lzma_check_update(&coder->check, coder->block->check,
146 if (coder->block->check == LZMA_CHECK_NONE)
150 lzma_check_finish(&coder->check, coder->block->check);
157 const size_t check_size = lzma_check_size(coder->block->check);
164 // 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.c192 .check = coder->block_options.check,
273 const lzma_filter *filters, lzma_check check)
301 coder->block_options.check = check;
312 .check = check,
329 const lzma_filter *filters, lzma_check check)
331 lzma_next_strm_init(stream_encoder_init, strm, filters, check);
272 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:__anon6629
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,
H A Dstream_flags_encoder.c19 if ((unsigned int)(options->check) > LZMA_CHECK_ID_MAX)
23 out[1] = options->check;
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDebugCheckers.cpp33 class DominatorsTreeDumper : public Checker<check::ASTCodeBody> {
59 class PostDominatorsTreeDumper : public Checker<check::ASTCodeBody> {
85 class ControlDependencyTreeDumper : public Checker<check::ASTCodeBody> {
110 class LiveVariablesDumper : public Checker<check::ASTCodeBody> {
134 class LiveStatementsDumper : public Checker<check::ASTCodeBody> {
157 class CFGViewer : public Checker<check::ASTCodeBody> {
181 class CFGDumper : public Checker<check::ASTCodeBody> {
211 class CallGraphViewer : public Checker< check::ASTDecl<TranslationUnitDecl> > {
235 class CallGraphDumper : public Checker< check::ASTDecl<TranslationUnitDecl> > {
259 class ConfigDumper : public Checker< check
[all...]
H A DTraversalChecker.cpp26 class TraversalDumper : public Checker< check::BranchCondition,
27 check::BeginFunction,
28 check::EndFunction > {
74 class CallDumper : public Checker< check::PreCall,
75 check::PostCall > {
H A DReturnValueChecker.cpp26 class ReturnValueChecker : public Checker<check::PostCall, check::EndFunction> {
/freebsd-13-stable/contrib/kyua/
H A DMakefile.am98 CHECK_LOCAL += dump-ulimits check-kyua
99 PHONY_TARGETS += check-kyua
100 check-kyua: $(CHECK_KYUA_DEPS)
143 check-local: $(CHECK_LOCAL)
150 PHONY_TARGETS += check-api-docs
151 check-api-docs: api-docs/api-docs.tag
152 @$(AWK) -f $(srcdir)/admin/check-api-docs.awk api-docs/doxygen.out
166 # Replace Automake's builtin check-news functionality so that we can validate
168 DIST_HOOKS += check-news
169 PHONY_TARGETS += check
[all...]
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.lib_table.lua114 local function check (t) function
120 check{1,2,3,4}
121 check{1,2,3,4,5}
122 check{1,2,3,4,5,6}
125 function check (a, f) function
136 check(a)
143 check(t)
172 check(a)
175 check(a)
184 check(
[all...]
/freebsd-13-stable/usr.bin/dtc/
H A Dchecking.hh113 * Abstract base class for simple property checks. This class defines a check
116 * and override the check() method.
132 * property to check.
137 * The check method, which subclasses should implement.
139 virtual bool check(device_tree *tree, const node_ptr &n, property_ptr p) = 0;
150 * property to check as arguments.
154 virtual bool check(device_tree *tree, const node_ptr &n, property_ptr p) = 0;
165 virtual bool check(device_tree *, const node_ptr &, property_ptr p) function in struct:dtc::fdt::checking::property_type_checker
180 virtual bool check(device_tree *, const node_ptr &, property_ptr p) function in struct:dtc::fdt::checking::property_type_checker
195 virtual bool check(device_tre function in struct:dtc::fdt::checking::property_type_checker
218 virtual bool check(device_tree *tree, const node_ptr &, property_ptr p) function in struct:dtc::fdt::checking::property_type_checker
[all...]
/freebsd-13-stable/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-13-stable/contrib/llvm-project/llvm/tools/llvm-lto2/
H A Dllvm-lto2.cpp151 static void check(Error E, std::string Msg) { function
160 template <typename T> static T check(Expected<T> E, std::string Msg) { function
163 check(E.takeError(), Msg);
167 static void check(std::error_code EC, std::string Msg) { function
168 check(errorCodeToError(EC), Msg);
171 template <typename T> static T check(ErrorOr<T> E, std::string Msg) { function
174 check(E.getError(), Msg);
242 check(Conf.addSaveTemps(OutputFilename + "."),
304 std::unique_ptr<MemoryBuffer> MB = check(MemoryBuffer::getFile(F), F);
306 check(InputFil
[all...]
/freebsd-13-stable/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
109 check(&t[i], li, lli, end);
143 check(&t[i], li, lli, end);
183 check(&t[i], li, -1, end);
222 check(&t[i], li, lli, end);
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.h239 : public Checker< check::Bind,
240 check::DeadSymbols,
241 check::BeginFunction,
242 check::EndFunction,
243 check::PostStmt<BlockExpr>,
244 check::PostStmt<CastExpr>,
245 check::PostStmt<ObjCArrayLiteral>,
246 check::PostStmt<ObjCDictionaryLiteral>,
247 check::PostStmt<ObjCBoxedExpr>,
248 check
[all...]
/freebsd-13-stable/contrib/netbsd-tests/lib/libc/string/
H A Dt_memset.c43 static bool check(char *, size_t, char);
59 if (check(buf, sizeof(buf), 0) != true)
64 if (check(buf, sizeof(buf), 'x') != true)
131 if (check(buf, page, i) != true)
151 if (check(buf, sizeof(buf), 'x') != true)
156 if (check(buf, sizeof(buf), 'x') != true)
173 if (check(buf, sizeof(buf), 'x') != true)
178 if (check(buf, sizeof(buf), 'x') != true)
227 check(char *buf, size_t len, char x) function
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DMCAsmParserExtension.h103 bool check(bool P, const Twine &Msg) { function in class:llvm::MCAsmParserExtension
104 return getParser().check(P, Msg);
107 bool check(bool P, SMLoc Loc, const Twine &Msg) { function in class:llvm::MCAsmParserExtension
108 return getParser().check(P, Loc, Msg);
/freebsd-13-stable/contrib/netbsd-tests/share/examples/
H A Dt_asm.sh37 # check for implementation fails, the calling test is failed.
42 make check-implemented)
/freebsd-13-stable/sys/security/mac/
H A Dmac_internal.h283 * MAC_POLICY_CHECK performs the designated check by walking the policy
287 #define MAC_POLICY_CHECK(check, args...) do { \
292 if (mpc->mpc_ops->mpo_ ## check != NULL) \
294 mpc->mpc_ops->mpo_ ## check (args), \
300 if (mpc->mpc_ops->mpo_ ## check != NULL) \
302 mpc->mpc_ops->mpo_ ## check (args), \
309 #define MAC_POLICY_CHECK_NOSLEEP(check, args...) do { \
314 if (mpc->mpc_ops->mpo_ ## check != NULL) \
316 mpc->mpc_ops->mpo_ ## check (args), \
324 if (mpc->mpc_ops->mpo_ ## check !
[all...]
/freebsd-13-stable/lib/atf/libatf-c++/
H A DMakefile57 check.cpp \
67 check.hpp \
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
H A DMPIChecker.h30 class MPIChecker : public Checker<check::PreCall, check::DeadSymbols> {
54 /// in sequence without intermediate wait. The check contains a guard,
62 /// before. The check contains a guard, in order to only inspect wait

Completed in 207 milliseconds

1234567891011>>