Searched refs:skip (Results 51 - 75 of 487) sorted by relevance

1234567891011>>

/freebsd-current/crypto/openssl/test/recipes/
H A D20-test_dgst.t92 skip "RSA is not supported by this OpenSSL build", 1
109 skip "DSA is not supported by this OpenSSL build", 1
120 skip "ECDSA is not supported by this OpenSSL build", 1
131 skip "EdDSA is not supported by this OpenSSL build", 2
134 skip "EdDSA is not supported with `dgst` CLI", 2;
150 skip "dgst with engine is not supported by this OpenSSL build", 1
236 skip "ECDSA is not supported by this OpenSSL build", 1
H A D05-test_rand.t22 skip "engine is not supported by this OpenSSL build", 2
H A D25-test_d2i.t85 skip "No CMS support in this configuration", 1 if disabled("cms");
/freebsd-current/usr.bin/hexdump/
H A Dodsyntax.c131 skip = strtoll(optarg, &end, 0);
133 skip *= 512;
135 skip *= 1024;
137 skip *= 1048576L;
138 if (errno != 0 || skip < 0 || strlen(end) > 1)
139 errx(1, "%s: invalid skip amount", optarg);
177 "usage: od [-aBbcDdeFfHhIiLlOosvXx] [-A base] [-j skip] [-N length] [-t type]\n");
209 * skip over leading '+', 'x[0-9a-fA-f]' or '0x', and
222 /* skip over the number */
239 skip
[all...]
H A Ddisplay.c258 if (odmode && skip > 0)
259 errx(1, "cannot skip past end of input");
375 if (skip)
379 if (!skip)
394 if (S_ISREG(sb.st_mode) && skip > sb.st_size && sb.st_size > 0) {
396 skip -= sb.st_size;
417 if (fseeko(stdin, skip, SEEK_SET)) {
421 address += skip;
422 skip = 0;
429 for (count = 0; count < skip;
[all...]
/freebsd-current/crypto/openssl/crypto/ec/
H A Decp_oct.c167 size_t field_len, i, skip; local
225 skip = field_len - BN_num_bytes(x);
226 if (skip > field_len) {
230 while (skip > 0) {
232 skip--;
234 skip = BN_bn2bin(x, buf + i);
235 i += skip;
243 skip = field_len - BN_num_bytes(y);
244 if (skip > field_len) {
248 while (skip >
[all...]
/freebsd-current/sys/netipsec/
H A Dxform_esp.c269 esp_input(struct mbuf *m, struct secasvar *sav, int skip, int protoff) argument
290 if ( (skip&3) || (m->m_pkthdr.len&3) ){
291 DPRINTF(("%s: misaligned packet, skip %u pkt len %u",
292 __func__, skip, m->m_pkthdr.len));
297 if (m->m_len < skip + sizeof(*esp)) {
298 m = m_pullup(m, skip + sizeof(*esp));
306 esp = (struct newesp *)(mtod(m, caddr_t) + skip);
327 plen = m->m_pkthdr.len - (skip + hlen + alen);
356 ESPSTAT_ADD(esps_ibytes, m->m_pkthdr.len - (skip + hlen + alen));
396 m_copydata(m, skip, SPI_SIZ
503 int hlen, skip, protoff, error, alen; local
694 esp_output(struct mbuf *m, struct secpolicy *sp, struct secasvar *sav, u_int idx, int skip, int protoff) argument
[all...]
H A Dipsec_input.c119 ipsec_common_input(struct mbuf *m, int skip, int protoff, int af, int sproto) argument
143 if (m->m_pkthdr.len - skip < 2 * sizeof (u_int32_t)) {
152 m_copydata(m, skip, sizeof(u_int32_t), (caddr_t) &spi);
154 m_copydata(m, skip + sizeof(u_int32_t), sizeof(u_int32_t),
158 m_copydata(m, skip + sizeof(u_int16_t), sizeof(u_int16_t),
226 error = (*sav->tdb_xform->xf_input)(m, sav, skip, protoff);
335 ipsec4_common_input_cb(struct mbuf *m, struct secasvar *sav, int skip, argument
357 if (skip != 0) {
361 if (m->m_len < skip && (m = m_pullup(m, skip))
581 ipsec6_common_input_cb(struct mbuf *m, struct secasvar *sav, int skip, int protoff) argument
[all...]
H A Dxform_ipcomp.c198 ipcomp_input(struct mbuf *m, struct secasvar *sav, int skip, int protoff) argument
215 if (m->m_len < skip + hlen && (m = m_pullup(m, skip + hlen)) == NULL) {
221 addr = (caddr_t) mtod(m, struct ip *) + skip;
252 crp->crp_payload_start = skip + hlen;
253 crp->crp_payload_length = m->m_pkthdr.len - (skip + hlen);
264 xd->skip = skip;
293 int skip, protoff; local
300 skip
399 ipcomp_output(struct mbuf *m, struct secpolicy *sp, struct secasvar *sav, u_int idx, int skip, int protoff) argument
540 int error, skip, protoff; local
[all...]
/freebsd-current/sbin/veriexec/
H A Dmanifest_lexer.l73 int skip = atoi(&yytext[2]);
75 VERBOSE(3, ("%s: skip if %d <= %d\n", yytext, parser_version, skip));
76 if (parser_version <= skip) {
/freebsd-current/crypto/openssh/regress/
H A Dsftp-glob.sh13 skip=$5
14 if test "x$skip" != "x" ; then
15 verbose "$tid: $errtag (skipped: $skip)"
H A Dsshfp-connect.sh28 skip "RSA keys not supported."
30 skip "TEST_SSH_SSHFP_DOMAIN not set."
H A Dhostbased.sh16 skip "TEST_SSH_HOSTBASED_AUTH not set."
18 skip "SUDO not set"
H A Dsftp-chroot.sh12 skip "need SUDO to create file in /var/run, test won't work without"
16 skip "$CHROOT is unsuitable as ChrootDirectory"
/freebsd-current/contrib/kyua/bootstrap/
H A Datf_helpers.cpp51 skip("Skipped on purpose");
/freebsd-current/sys/arm/include/
H A Din_cksum.h44 u_short in_cksum_skip(struct mbuf *m, int len, int skip);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DYAMLParser.h98 void skip();
102 skip();
176 virtual void skip() {} function in class:llvm::yaml::Node
311 void skip() override {
313 Key->skip();
315 Val->skip();
403 template <class CollectionType> void skip(CollectionType &C) { function in namespace:llvm::yaml
405 assert((C.IsAtBeginning || C.IsAtEnd) && "Cannot skip mid parse!");
409 i->skip();
438 template <class T> friend void yaml::skip(
444 void skip() override { yaml::skip(*this); } member in class:llvm::yaml::final::yaml
501 void skip() override { yaml::skip(*this); } member in class:llvm::yaml::final::yaml
[all...]
/freebsd-current/contrib/wpa/src/crypto/
H A Drc4.c16 int rc4_skip(const u8 *key, size_t keylen, size_t skip, argument
38 for (k = 0; k < skip; k++) {
/freebsd-current/contrib/kyua/integration/
H A Dcmd_report_test.sh66 simple_all_pass:skip -> skipped: The reason for skipping is this [S.UUUs]
78 simple_all_pass:skip -> skipped: The reason for skipping is this [S.UUUs]
123 simple_all_pass:skip -> skipped: The reason for skipping is this [S.UUUs]
152 simple_all_pass:skip -> skipped: The reason for skipping is this [S.UUUs]
159 simple_all_pass:skip
200 simple_all_pass:skip -> skipped: The reason for skipping is this [S.UUUs]
211 first simple_all_pass:skip simple_all_pass:second
244 ===> simple_all_pass:skip
265 This is the stdout of skip
268 This is the stderr of skip
[all...]
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_read_open_fd.c134 int64_t skip = request; local
136 int skip_bits = sizeof(skip) * 8 - 1; /* off_t is a signed type. */
141 /* Reduce a request that would overflow the 'skip' variable. */
142 if (sizeof(request) > sizeof(skip)) {
146 skip = max_skip;
155 ((new_offset = lseek(mine->fd, skip, SEEK_CUR)) >= 0))
/freebsd-current/sys/opencrypto/
H A Dcriov.c53 * These macros are only for avoiding code duplication, as we need to skip
60 KASSERT(iol >= 0, ("%s: empty in skip", __func__)); \
179 cvm_page_contiguous_segment(vm_page_t *pages, size_t skip, int len) argument
181 if ((skip + len - 1) / PAGE_SIZE > skip / PAGE_SIZE)
184 pages += (skip / PAGE_SIZE);
185 skip -= rounddown(skip, PAGE_SIZE);
186 return (((char *)PHYS_TO_DMAP(VM_PAGE_TO_PHYS(*pages))) + skip);
288 m_epg_contiguous_subsegment(struct mbuf *m, size_t skip, size_ argument
788 m_contiguous_subsegment(struct mbuf *m, size_t skip, size_t len) argument
809 cuio_contiguous_segment(struct uio *uio, size_t skip, size_t len) argument
826 crypto_buffer_contiguous_subsegment(struct crypto_buffer *cb, size_t skip, size_t len) argument
854 crypto_contiguous_subsegment(struct cryptop *crp, size_t skip, size_t len) argument
[all...]
/freebsd-current/usr.bin/calendar/
H A Dio.c211 token(char *line, FILE *out, int *skip, int *unskip) argument
223 if (*skip + *unskip == 0) {
227 if (*skip > 0)
228 --*skip;
249 if (*skip != 0 ||
251 ++*skip;
272 if (*skip != 0 ||
274 ++*skip;
289 if (*skip + *unskip == 0) {
294 if (*skip
436 int skip = 0; local
[all...]
/freebsd-current/usr.bin/bmake/tests/
H A Dcommon.sh79 # Return 0 if we should skip the test. 1 otherwise
83 eval skip=\${TEST_${1}_SKIP}
84 if [ -z "${skip}" ] ; then
330 skip=
337 eval skip=\${TEST_${N}_SKIP}
344 if [ ! -z "$fail" -o ! -z "$todo" -o ! -z "$skip" ]; then
347 if [ ! -z "$skip" ] ; then
348 msg="${msg}skip ${skip}; "
/freebsd-current/tests/atf_python/
H A Dutils.py50 def require_module(self, mod_name: str, skip=True):
56 if skip:
57 pytest.skip(txt)
/freebsd-current/tools/test/stress2/misc/
H A Dufssuspend.sh63 continue; /* skip to freeze '/dev' */
66 continue; /* skip to freeze RDONLY partition */

Completed in 679 milliseconds

1234567891011>>