Searched refs:skip (Results 1 - 25 of 257) sorted by relevance

1234567891011

/src/usr.sbin/sysinst/
H A Dunif.awk51 skip = 0
57 if (skip)
65 if (!skip)
66 skip = nested
74 if (skip == nested)
75 skip = 0
76 else if (!skip)
77 skip = nested
84 if (skip == nested)
85 skip
[all...]
/src/usr.bin/hexdump/
H A Dhexsyntax.c55 off_t skip; /* bytes to skip */ variable in typeref:typename:off_t
98 if ((skip = strtol(optarg, &p, 0)) < 0)
99 errx(1, "%s: bad skip value", optarg);
102 skip *= 512;
105 skip *= 1024;
108 skip *= 1048576;
H A Dodsyntax.c150 if ((skip = strtol(optarg, &p, 0)) < 0)
151 errx(1, "%s: bad skip value", optarg);
154 skip *= 512;
157 skip *= 1024;
160 skip *= 1048576;
333 * skip over leading '+', 'x[0-9a-fA-f]' or '0x', and
346 /* skip over the number */
363 skip = strtol(num, &end, base ? base : 8);
367 skip = 0;
373 skip *
[all...]
/src/distrib/vax/rx50/
H A DMakefile11 bs=512 skip=800 count=800
13 bs=512 skip=1600 count=800
15 bs=512 skip=2400 count=800
17 bs=512 skip=3200 count=800
19 bs=512 skip=4000 count=800
/src/common/dist/zlib/contrib/puff/
H A Dpufftest.c14 of input to skip before inflating (e.g. to skip a zlib or gzip header), and
91 unsigned skip = 0; local in function:main
105 skip = (unsigned)atoi(arg + 1);
128 if (skip >= len) {
129 fprintf(stderr, "skip request of %d leaves no input\n", skip);
134 /* test inflate data with offset skip */
135 len -= skip;
137 ret = puff(NIL, &destlen, source + skip,
[all...]
/src/sys/external/bsd/drm2/dist/drm/savage/
H A Dsavage_state.c296 unsigned int skip = cmd_header->prim.skip; local in function:savage_dispatch_dma_prim
337 if (skip != 0) {
338 DRM_ERROR("invalid skip flags 0x%04x for DMA\n", skip);
342 unsigned int size = 10 - (skip & 1) - (skip >> 1 & 1) -
343 (skip >> 2 & 1) - (skip >> 3 & 1) - (skip >>
438 unsigned int skip = cmd_header->prim.skip; local in function:savage_dispatch_vb_prim
557 unsigned int skip = cmd_header->idx.skip; local in function:savage_dispatch_dma_idx
700 unsigned int skip = cmd_header->idx.skip; local in function:savage_dispatch_vb_idx
[all...]
/src/sys/external/bsd/drm/dist/shared-core/
H A Dsavage_state.c282 unsigned int skip = cmd_header->prim.skip; local in function:savage_dispatch_dma_prim
323 if (skip != 0) {
324 DRM_ERROR("invalid skip flags 0x%04x for DMA\n", skip);
328 unsigned int size = 10 - (skip & 1) - (skip >> 1 & 1) -
329 (skip >> 2 & 1) - (skip >> 3 & 1) - (skip >>
424 unsigned int skip = cmd_header->prim.skip; local in function:savage_dispatch_vb_prim
543 unsigned int skip = cmd_header->idx.skip; local in function:savage_dispatch_dma_idx
686 unsigned int skip = cmd_header->idx.skip; local in function:savage_dispatch_vb_idx
[all...]
/src/sys/netipsec/
H A Dxform_ipcomp.c139 ipcomp_input(struct mbuf *m, struct secasvar *sav, int skip, int protoff) argument
146 KASSERT(skip + hlen <= m->m_pkthdr.len);
187 crdc->crd_skip = skip + hlen;
188 crdc->crd_len = m->m_pkthdr.len - (skip + hlen);
195 crp->crp_ilen = m->m_pkthdr.len - (skip + hlen);
208 tc->tc_skip = skip;
225 #define IPSEC_COMMON_INPUT_CB(m, sav, skip, protoff) do { \
227 (void)ipsec6_common_input_cb(m, sav, skip, protoff); \
229 (void)ipsec4_common_input_cb(m, sav, skip, protoff); \
233 #define IPSEC_COMMON_INPUT_CB(m, sav, skip, protof
245 int skip, protoff; local in function:ipcomp_input_cb
355 ipcomp_output(struct mbuf * m,const struct ipsecrequest * isr,struct secasvar * sav,int skip,int protoff,int flags) argument
515 int skip, rlen, roff, flags; local in function:ipcomp_output_cb
[all...]
H A Dxform_ah.c286 ah_massage_headers(struct mbuf **m0, int proto, int skip, int alg, int out) argument
309 *m0 = m = m_pullup(m, skip);
331 for (off = sizeof(struct ip); off < skip;) {
336 } else if (off + 1 < skip) {
338 if (optlen < 2 || off + optlen > skip) {
383 if (off > skip) {
418 ip6optlen = skip - sizeof(struct ip6_hdr);
422 if (m->m_len <= skip) {
525 ah_input(struct mbuf *m, struct secasvar *sav, int skip, int protoff) argument
544 M_REGION_GET(ah, struct newah *, m, skip, rple
731 int rplen, ahsize, skip, protoff; local in function:ah_input_cb
881 ah_output(struct mbuf * m,const struct ipsecrequest * isr,struct secasvar * sav,int skip,int protoff,int flags) argument
1129 int skip; local in function:ah_output_cb
[all...]
H A Dipsec_mbuf.c180 * Make space for a new header of length hlen at skip bytes
188 m_makespace(struct mbuf *m0, int skip, int hlen, int *off) argument
197 for (m = m0; m && skip > m->m_len; m = m->m_next)
198 skip -= m->m_len;
203 * At this point skip is the offset into the mbuf m
210 remain = m->m_len - skip; /* data to move */
236 memcpy(n->m_data, mtod(m, char *) + skip + done, len);
243 m->m_len = skip + hlen;
244 *off = skip;
265 m->m_len = skip;
365 m_striphdr(struct mbuf * m,int skip,int hlen) argument
[all...]
H A Dxform_esp.c301 esp_input(struct mbuf *m, struct secasvar *sav, int skip, int protoff) argument
313 if (__predict_false((skip & 3) != 0 || (m->m_pkthdr.len & 3) != 0)) {
314 DPRINTF("%s: misaligned packet, skip %u pkt len %u", __func__,
315 skip, m->m_pkthdr.len);
322 M_REGION_GET(esp, struct newesp *, m, skip, sizeof(struct newesp));
347 plen = m->m_pkthdr.len - (skip + hlen + alen);
408 crda->crd_skip = skip;
412 crda->crd_len = m->m_pkthdr.len - (skip + alen);
463 tc->tc_skip = skip;
468 crde->crd_skip = skip
513 int hlen, skip, protoff; local in function:esp_input_cb
678 esp_output(struct mbuf * m,const struct ipsecrequest * isr,struct secasvar * sav,int skip,int protoff,int flags) argument
[all...]
/src/lib/libc/arch/vax/gen/
H A D__sigsetjmp14.S55 L1: jmp _C_LABEL(_setjmp)+2 # nope, skip to _setjmp
63 L2: jmp _C_LABEL(_longjmp)+2 # nope, skip to _longjmp
/src/lib/libc/arch/vax/sys/
H A D__syscall.S44 addl2 $8,%ap # skip the first argument
/src/tests/usr.bin/cmp/
H A Dt_cmp.sh47 atf_test_case skip
49 atf_set "descr" "Test that cmp(1) handles skip " \
66 atf_add_test_case skip
/src/tests/usr.bin/xlint/lint1/
H A Dt_integration.sh80 skip = "no"
91 skip = "yes"
100 printf("skip=%s\n", skip)
126 local skip=""
133 configure_test_case "$src" # sets 'skip' and 'flags'
135 if [ "$skip" = "yes" ]; then
/src/distrib/vax/rx33/
H A DMakefile11 bs=512 skip=2400 count=2400
/src/lib/libc/db/btree/
H A Dbt_split.c76 * skip: index to leave open
91 uint16_t skip; local in function:__bt_split
99 * skip set to the offset which should be used. Additionally, l and r
102 skip = argskip;
104 bt_root(t, sp, &l, &r, &skip, ilen) :
105 bt_page(t, sp, &l, &r, &skip, ilen);
115 h->linp[skip] = h->upper;
163 skip = parent->index + 1;
188 (h->prevpg != P_INVALID || skip > 1)) {
221 bt_root(t, h, &l, &r, &skip, nbyte
347 bt_page(BTREE * t,PAGE * h,PAGE ** lp,PAGE ** rp,indx_t * skip,size_t ilen) argument
448 bt_root(BTREE * t,PAGE * h,PAGE ** lp,PAGE ** rp,indx_t * skip,size_t ilen) argument
622 indx_t full, half, nxt, off, skip, top, used; local in function:bt_psplit
[all...]
/src/common/dist/zlib/examples/
H A Dgzjoin.c156 /* skip bytes in file */
157 local void bskip(bin *in, unsigned skip) argument
163 /* easy case -- skip bytes in buffer */
164 if (skip <= in->left) {
165 in->left -= skip;
166 in->next += skip;
170 /* skip what's in buffer, discard buffer contents */
171 skip -= in->left;
175 if (skip > CHUNK) {
178 left = skip
[all...]
/src/sys/arch/x68k/usr.bin/bellctrl/
H A DMakefile10 dd bs=1 skip=32 count=52 if=sample.aout of=$@
/src/sys/arch/ia64/stand/ia64/ski/
H A Dstart.S64 stack: .skip STACKSIZE
/src/sys/arch/macppc/dev/
H A Dsmuiic.c99 goto skip;
102 goto skip;
104 goto skip;
118 skip:
/src/usr.bin/systat/
H A Ddf.c78 int i, j, skip; local in function:showdf
87 skip = 0;
91 skip=1;
96 if (displayall || !skip) {
/src/lib/libc/net/
H A Dhesiod.c415 int ancount, qdcount, i, j, n, skip, type, class, len; local in function:get_txt_records
451 skip = dn_skipname(p, eom);
452 if (skip < 0 || p + skip + QFIXEDSZ > eom) {
456 p += skip + QFIXEDSZ;
469 skip = dn_skipname(p, eom);
470 if (skip < 0 || p + skip + 10 > eom)
472 type = p[skip + 0] << 8 | p[skip
[all...]
/src/sys/arch/mmeye/stand/boot/
H A Ddeflate.sh11 gzip -nc ${kernel} | dd bs=10 skip=1 of=${kernel}.gz.tmp
/src/sys/arch/newsmips/stand/boot/
H A Dlocore.S42 beq t0, ra, skip
58 skip: label

Completed in 17 milliseconds

1234567891011