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

1234567891011>>

/freebsd-9.3-release/contrib/sendmail/src/
H A DMakefile9 check: FRC
/freebsd-9.3-release/contrib/sendmail/test/
H A DMakefile11 check: FRC
/freebsd-9.3-release/sys/dev/netmap/
H A Dnetmap_offloadings.c75 uint16_t *check = NULL; local
88 iph->check = 0;
89 iph->check = nm_csum_ipv4(iph);
90 ND("IP csum %x", be16toh(iph->check));
109 check = &tcph->check;
117 check = &udph->check;
122 *check = 0;
124 nm_csum_tcpudp_ipv4(iph, check_data, len-14-iphlen, check);
325 uint16_t *check = NULL; local
[all...]
/freebsd-9.3-release/contrib/dtc/
H A Dchecks.c47 struct check;
49 typedef void (*tree_check_fn)(struct check *c, struct node *dt);
50 typedef void (*node_check_fn)(struct check *c, struct node *dt, struct node *node);
51 typedef void (*prop_check_fn)(struct check *c, struct node *dt,
54 struct check { struct
64 struct check **prereq;
68 static struct check *nm##_prereqs[] = { __VA_ARGS__ }; \
69 static struct check nm = { \
91 static inline void check_msg(struct check *c, const char *fmt, ...) __attribute__((format (printf, 2, 3)));
93 static inline void check_msg(struct check *
[all...]
/freebsd-9.3-release/contrib/xz/src/liblzma/common/
H A Dblock_buffer_encoder.c16 #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);
291 // Calculate the integrity check. We reserved space for
292 // the Check field earlier so we don't need to check for
294 lzma_check_state check; local
295 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
100 lzma_check_update(&coder->check, coder->block->check,
140 if (coder->block->check == LZMA_CHECK_NONE)
143 lzma_check_finish(&coder->check, coder->block->check);
149 const size_t check_size = lzma_check_size(coder->block->check);
156 // coder->check.buffer may be uninitialized
158 if (lzma_check_is_supported(coder->block->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(lzma_stream_encoder_init, strm, filters, check);
266 lzma_stream_encoder_init(lzma_next_coder *next, 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:__anon4510
96 (void)lzma_check_init(&index_hash->blocks.check, LZMA_CHECK_BEST);
97 (void)lzma_check_init(&index_hash->records.check, LZMA_CHECK_BEST);
134 lzma_check_update(&info->check, LZMA_CHECK_BEST,
293 lzma_check_finish(&index_hash->blocks.check, LZMA_CHECK_BEST);
294 lzma_check_finish(&index_hash->records.check, LZMA_CHECK_BEST);
295 if (memcmp(index_hash->blocks.check.buffer.u8,
296 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-9.3-release/contrib/ntp/tests/sandbox/
H A DMakefile.am79 ## check-libntp.mf - automake fragment
82 BUILT_SOURCES += check-libntp check-libunity
83 CLEANFILES += check-libntp check-libunity
85 check-libntp: ../../libntp/libntp.a
91 check-libunity: ../../sntp/unity/libunity.a
/freebsd-9.3-release/contrib/ntp/tests/ntpd/
H A DMakefile.am191 ## check-libntp.mf - automake fragment
194 BUILT_SOURCES += check-libntpd check-libntp check-libunity
195 CLEANFILES += check-libntpd check-libntp check-libunity
197 check-libntpd: ../../ntpd/libntpd.a
204 check-libntp: ../../libntp/libntp.a
211 check
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/
H A DChecker.h26 namespace check { namespace in namespace:clang::ento
418 } // end check namespace
464 template <typename CHECK1, typename CHECK2=check::_VoidCheck,
465 typename CHECK3=check::_VoidCheck, typename CHECK4=check::_VoidCheck,
466 typename CHECK5=check::_VoidCheck, typename CHECK6=check::_VoidCheck,
467 typename CHECK7=check::_VoidCheck, typename CHECK8=check::_VoidCheck,
468 typename CHECK9=check
[all...]
/freebsd-9.3-release/crypto/openssh/
H A Dcompat.c69 } check[] = { local
176 for (i = 0; check[i].pat; i++) {
177 if (match_pattern_list(version, check[i].pat,
178 strlen(check[i].pat), 0) == 1) {
179 datafellows = check[i].bugs;
181 version, check[i].pat, datafellows);
184 * HPN. It is utterly strange to check it from the
/freebsd-9.3-release/contrib/xz/src/liblzma/api/lzma/
H A Dcontainer.h108 * \param check Integrity check type to use. See check.h for available
119 * - LZMA_UNSUPPORTED_CHECK: The given check type is not
134 lzma_stream *strm, uint32_t preset, lzma_check check)
146 * \param check Type of the integrity check to calculate from
167 uint32_t preset, lzma_check check,
179 * \param check Type of the integrity check t
[all...]
/freebsd-9.3-release/contrib/ntp/ntpdate/
H A DMakefile.am29 cd ../sntp && $(MAKE) $(AM_MAKEFLAGS) check-scm-rev
38 include $(top_srcdir)/sntp/check-libntp.mf
/freebsd-9.3-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-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DStackAddrEscapeChecker.cpp29 class StackAddrEscapeChecker : public Checker< check::PreStmt<ReturnStmt>,
30 check::EndFunction > {
/freebsd-9.3-release/sys/contrib/ngatm/netnatm/msg/
H A Dpriv.h49 * For each coding scheme a quadrupel of check, print, encode and
71 uni_check_f check; member in struct:iedecl
80 uni_msg_check_f check; member in struct:msgdecl
94 * Need to check range here because declaring a variable as a enum does not
/freebsd-9.3-release/contrib/ntp/adjtimed/
H A DMakefile.am19 include $(top_srcdir)/sntp/check-libntp.mf
/freebsd-9.3-release/contrib/ntp/sntp/
H A DMakefile.am117 check-scm-rev \
125 check-COPYRIGHT-submake \
168 check-autogen-version.def: FRC
178 $(MAKE) $(AM_MAKEFLAGS) check-autogen-version.def
186 check-scm-rev: $(srcdir)/scm-rev
212 check-COPYRIGHT-submake: $(srcdir)/../COPYRIGHT
218 check-COPYRIGHT: FRC
220 || [ check-COPYRIGHT-submake -nt $(srcdir)/../COPYRIGHT ] \
221 || $(MAKE) $(AM_MAKEFLAGS) check-COPYRIGHT-submake
223 $(srcdir)/COPYRIGHT: check
[all...]
/freebsd-9.3-release/contrib/ntp/sntp/tests/
H A DMakefile.am228 BUILT_SOURCES += check-libsntp
229 CLEANFILES += check-libsntp
231 check-libsntp: ../libsntp.a
237 ## check-libntp.mf - automake fragment
240 BUILT_SOURCES += check-libntp check-libunity
241 CLEANFILES += check-libntp check-libunity
243 check-libntp: ../../libntp/libntp.a
249 check
[all...]
/freebsd-9.3-release/usr.sbin/kldxref/
H A Dkldxref.c57 #define check(val) if ((error = (val)) != 0) break macro
151 check(EF_SEG_READ(ef, data, sizeof(mdp), &mdp));
156 check(EF_SEG_READ(ef, data, sizeof(mdv), &mdv));
218 check(EF_LOOKUP_SET(&ef, MDT_SETNAME, &start, &finish,
220 check(EF_SEG_READ_ENTRY_REL(&ef, start, sizeof(*p) * entries,
224 check(EF_SEG_READ_REL(&ef, (Elf_Off)*p, sizeof(md),
227 check(EF_SEG_READ(&ef, (Elf_Off)md.md_cval,
/freebsd-9.3-release/contrib/ncurses/menu/
H A Dm_global.c115 unsigned check; local
120 check = _nc_Calculate_Text_Width(&((*items)->name));
121 if (check > MaximumNameLength)
122 MaximumNameLength = check;
124 check = _nc_Calculate_Text_Width(&((*items)->description));
125 if (check > MaximumDescriptionLength)
126 MaximumDescriptionLength = check;
294 int check = 0; local
305 check = _nc_Calculate_Text_Width(&((*items)->name));
309 check
[all...]
/freebsd-9.3-release/usr.bin/pathchk/
H A Dpathchk.c28 * pathchk -- check pathnames
31 * command line. If -p is specified, check whether the pathname is portable
49 static int check(const char *);
83 rval |= check(arg);
97 check(const char *path) function

Completed in 131 milliseconds

1234567891011>>