Searched refs:check (Results 1 - 25 of 455) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DChecker.cpp25 void Checker<check::_VoidCheck, check::_VoidCheck, check::_VoidCheck,
26 check::_VoidCheck, check::_VoidCheck, check::_VoidCheck,
27 check::_VoidCheck, check::_VoidCheck, check::_VoidCheck,
28 check
[all...]
/freebsd-9.3-release/tools/regression/bin/date/
H A Dregress.sh26 check() function
53 check A Saturday Monday
54 check a Sat Mon
55 check B February November
56 check b Feb Nov
57 check C 19 20
58 check c "Sat Feb 7 07:04:03 1970" "Mon Nov 12 21:20:00 2001"
59 check D 02/07/70 11/12/01
60 check d 07 12
61 check
[all...]
/freebsd-9.3-release/tools/regression/acct/
H A Dregress.t13 check() function
29 check 1 0 0
30 check 2 0 1
31 check 3 1 0
32 check 4 1 999999
33 check 5 1 1000000
34 check 6 2147483647 999999
35 check 7 10000000
/freebsd-9.3-release/contrib/xz/src/liblzma/check/
H A Dcheck.c3 /// \file check.c
13 #include "check.h"
84 lzma_check_init(lzma_check_state *check, lzma_check type) argument
92 check->state.crc32 = 0;
98 check->state.crc64 = 0;
104 lzma_sha256_init(check);
117 lzma_check_update(lzma_check_state *check, lzma_check type, argument
123 check->state.crc32 = lzma_crc32(buf, size, check->state.crc32);
129 check
148 lzma_check_finish(lzma_check_state *check, lzma_check type) argument
[all...]
H A Dcheck.h3 /// \file check.h
4 /// \brief Internal API to different integrity check functions
30 /// \brief Structure to hold internal state of the check being calculated
33 /// change in future if new integrity check algorithms are added.
70 /// \brief Initialize *check depending on type
75 extern void lzma_check_init(lzma_check_state *check, lzma_check type);
77 /// Update the check state
78 extern void lzma_check_update(lzma_check_state *check, lzma_check type,
81 /// Finish the check calculation and store the result to check
[all...]
H A Dsha256.c29 #include "check.h"
112 process(lzma_check_state *check) argument
115 transform(check->state.sha256.state, check->buffer.u32);
121 data[i] = bswap32(check->buffer.u32[i]);
123 transform(check->state.sha256.state, data);
131 lzma_sha256_init(lzma_check_state *check) argument
138 memcpy(check->state.sha256.state, s, sizeof(s));
139 check->state.sha256.size = 0;
146 lzma_sha256_update(const uint8_t *buf, size_t size, lzma_check_state *check) argument
173 lzma_sha256_finish(lzma_check_state *check) argument
[all...]
/freebsd-9.3-release/contrib/xz/src/liblzma/common/
H A Deasy_encoder.c18 lzma_easy_encoder(lzma_stream *strm, uint32_t preset, lzma_check check)
24 return lzma_stream_encoder(strm, opt_easy.filters, check);
H A Dstream_encoder.h21 const lzma_filter *filters, lzma_check check);
H A Dstream_flags_common.c29 if ((unsigned int)(a->check) > LZMA_CHECK_ID_MAX
30 || (unsigned int)(b->check) > LZMA_CHECK_ID_MAX)
33 if (a->check != b->check)
H A Deasy_buffer_encoder.c17 lzma_easy_buffer_encode(uint32_t preset, lzma_check check,
25 return lzma_stream_buffer_encode(opt_easy.filters, check,
H A Dstream_buffer_encoder.c44 lzma_stream_buffer_encode(lzma_filter *filters, lzma_check check,
49 if (filters == NULL || (unsigned int)(check) > LZMA_CHECK_ID_MAX
54 if (!lzma_check_is_supported(check))
60 // separately check if the buffers are too big.
71 // Reserve space for Stream Footer so we don't need to check for
78 .check = check,
90 .check = check,
H A Dblock_encoder.c15 #include "check.h"
43 lzma_check_state check; member in struct:lzma_coder_s
74 // No need to check for overflow because we have already
78 lzma_check_update(&coder->check, coder->block->check,
110 if (coder->block->check == LZMA_CHECK_NONE)
113 lzma_check_finish(&coder->check, coder->block->check);
120 const size_t check_size = lzma_check_size(coder->block->check);
121 lzma_bufcpy(coder->check
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DCheckerDocumentation.cpp37 class CheckerDocumentation : public Checker< check::PreStmt<ReturnStmt>,
38 check::PostStmt<DeclStmt>,
39 check::PreObjCMessage,
40 check::PostObjCMessage,
41 check::PreCall,
42 check::PostCall,
43 check::BranchCondition,
44 check::Location,
45 check::Bind,
46 check
[all...]
/freebsd-9.3-release/contrib/nvi/catalog/
H A DMakefile36 CHK= dutch.check english.check french.check german.check \
37 polish.check ru_SU.KOI8-R.check spanish.check swedish.check
38 check: ${CHK}
41 f=`basename $@ .check`; \
[all...]
/freebsd-9.3-release/contrib/ntp/libjsmn/
H A Djsmn_test.c15 #define check(cond) do { if (!(cond)) fail(); } while (0) macro
53 check(r >= 0);
54 check(t[0].type == JSMN_OBJECT);
55 check(t[0].start == 0 && t[0].end == 2);
60 check(r >= 0);
61 check(t[0].type == JSMN_ARRAY);
62 check(t[0].start == 0 && t[0].end == 2);
67 check(r >= 0);
68 check(t[0].type == JSMN_OBJECT && t[0].start == 0 && t[0].end == 8);
69 check(
[all...]
/freebsd-9.3-release/contrib/ntp/tests/sec-2853/
H A DMakefile.am55 ## check-libntp.mf - automake fragment
58 BUILT_SOURCES += check-libntp check-libunity check-rc-cmdlength
59 CLEANFILES += check-libntp check-libunity check-rc-cmdlength
61 check-libntp: ../../libntp/libntp.a
67 check-libunity: ../../sntp/unity/libunity.a
73 check
[all...]
/freebsd-9.3-release/contrib/gcclibs/libiberty/testsuite/
H A DMakefile.in46 check: @CHECK@
48 really-check: check-cplus-dem check-pexecute check-expandargv
51 check-cplus-dem: test-demangle $(srcdir)/demangle-expected
55 check-pexecute: test-pexecute
59 check-expandargv: test-expandargv
/freebsd-9.3-release/gnu/lib/libodialog/TESTS/
H A Dradio1.c32 check(dialogMenuItem *self) function
47 { "1000", "Spend $1,000", check, spend, NULL, (void *)1000 },
48 { "500", "Spend $500", check, spend, NULL, (void *)500 },
49 { "100", "Spend $100", check, spend, NULL, (void *)100 },
65 "of the new menu system's check & fire dispatch hooks", -1, -1, 3, -3, menu5, NULL);
H A Dradio3.c32 check(dialogMenuItem *self) function
69 { "1000", "Spend $1,000", check, spend, ask, (void *)1000 },
70 { "500", "Spend $500", check, spend, ask, (void *)500 },
71 { "100", "Spend $100", check, spend, ask, (void *)100 },
/freebsd-9.3-release/sys/compat/linux/
H A Dcheck_internal_locks.d44 check["emul_lock"] = 0;
45 check["emul_shared_rlock"] = 0;
46 check["emul_shared_wlock"] = 0;
47 check["futex_mtx"] = 0;
53 /check[probefunc] > 0/
65 ++check[probefunc];
76 /check[probefunc] == 0/
92 --check[probefunc];
/freebsd-9.3-release/tools/regression/usr.bin/make/shell/replace/
H A DMakefile16 hasErrCtl=y check="check errors" ignore="ignore errors"
/freebsd-9.3-release/crypto/openssh/regress/
H A Ddhgex.sh25 # check what we request
31 # check what we got (depends on contents of system moduli file)
38 check() function
49 #check 2048 3des-cbc
50 check 3072 `${SSH} -Q cipher | grep 128`
51 check 3072 arcfour blowfish-cbc
52 check 7680 `${SSH} -Q cipher | grep 192`
53 check 8192 `${SSH} -Q cipher | grep 256`
54 check 8192 rijndael-cbc@lysator.liu.se chacha20-poly1305@openssh.com
/freebsd-9.3-release/contrib/sendmail/libsm/
H A Dt-fget.c19 check(char *msg, int l) function
71 check("", strlen(""));
72 check("\n", strlen("\n"));
73 check("test\n", strlen("test\n"));
76 check(res, l);
79 check(res, l);
83 check(res, l);
H A Dt-event.c28 static int check; variable
35 SM_TEST(check == 0);
36 check++;
77 check = 0;
84 SM_TEST(check == 1);
/freebsd-9.3-release/tools/regression/usr.bin/lastcomm/
H A Dregress.t9 check() function
29 lastcomm -cesuS -f $DIR/v1-$ARCH-acct.in | check 1 v1-$ARCH.out
30 lastcomm -cesuS -f - <$DIR/v1-$ARCH-acct.in | tail -r | check 2 v1-$ARCH.out
31 lastcomm -cesuS -f $DIR/v2-$ARCH-acct.in | check 3 v2-$ARCH.out
32 lastcomm -cesuS -f - <$DIR/v2-$ARCH-acct.in | tail -r | check 4 v2-$ARCH.out
33 lastcomm -cesuS -f $DIR/v1v2-$ARCH-acct.in | check 5 v1v2-$ARCH.out
34 lastcomm -cesuS -f - <$DIR/v1v2-$ARCH-acct.in | tail -r | check 6 v1v2-$ARCH.out

Completed in 247 milliseconds

1234567891011>>