/src/usr.sbin/sysinst/ |
unif.awk | 51 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/ |
hexsyntax.c | 55 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;
|
odsyntax.c | 150 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 *= 1024 [all...] |
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
dra74x-p.dtsi | 26 ti,irqs-skip = <10 67 68 133 139 140>;
|
/src/distrib/vax/rx50/ |
Makefile | 11 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/lib/libc/arch/vax/sys/ |
__syscall.S | 44 addl2 $8,%ap # skip the first argument
|
/src/common/dist/zlib/contrib/puff/ |
pufftest.c | 14 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, &sourcelen) [all...] |
/src/sys/external/bsd/drm/dist/shared-core/ |
savage_state.c | 282 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 >> 4 & 1) 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/external/bsd/drm2/dist/drm/savage/ |
savage_state.c | 296 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 >> 4 & 1) 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/netipsec/ |
xform_ipcomp.c | 139 ipcomp_input(struct mbuf *m, struct secasvar *sav, int skip, int protoff) 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, protoff) 245 int skip, protoff; local in function:ipcomp_input_cb 515 int skip, rlen, roff, flags; local in function:ipcomp_output_cb [all...] |
xform_ah.c | 286 ah_massage_headers(struct mbuf **m0, int proto, int skip, int alg, int out) 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) 544 M_REGION_GET(ah, struct newah *, m, skip, rplen) 731 int rplen, ahsize, skip, protoff; local in function:ah_input_cb 1129 int skip; local in function:ah_output_cb [all...] |
ipsec_mbuf.c | 180 * Make space for a new header of length hlen at skip bytes 188 m_makespace(struct mbuf *m0, int skip, int hlen, int *off) 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; [all...] |
xform_esp.c | 301 esp_input(struct mbuf *m, struct secasvar *sav, int skip, int protoff) 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 + hlen 513 int hlen, skip, protoff; local in function:esp_input_cb [all...] |
/src/lib/libc/arch/vax/gen/ |
__sigsetjmp14.S | 55 L1: jmp _C_LABEL(_setjmp)+2 # nope, skip to _setjmp 63 L2: jmp _C_LABEL(_longjmp)+2 # nope, skip to _longjmp
|
/src/tests/usr.bin/cmp/ |
t_cmp.sh | 47 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/ |
t_integration.sh | 80 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/ |
Makefile | 11 bs=512 skip=2400 count=2400
|
/src/lib/libc/db/btree/ |
bt_split.c | 76 * 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, nbytes) 622 indx_t full, half, nxt, off, skip, top, used; local in function:bt_psplit [all...] |
/src/common/dist/zlib/examples/ |
gzjoin.c | 156 /* skip bytes in file */ 157 local void bskip(bin *in, unsigned skip) 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 & (CHUNK - 1) [all...] |
/src/sys/arch/ia64/stand/ia64/ski/ |
start.S | 64 stack: .skip STACKSIZE
|
/src/sys/arch/x68k/usr.bin/bellctrl/ |
Makefile | 10 dd bs=1 skip=32 count=52 if=sample.aout of=$@
|
/src/usr.bin/systat/ |
df.c | 78 int i, j, skip; local in function:showdf 87 skip = 0; 91 skip=1; 96 if (displayall || !skip) {
|
/src/sys/arch/macppc/dev/ |
smuiic.c | 99 goto skip; 102 goto skip; 104 goto skip; 118 skip:
|
/src/lib/libc/net/ |
hesiod.c | 415 int ancount, qdcount, i, j, n, skip, type, class, len; local in function:get_txt_records 447 * Skip questions, trying to get to the answer section 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 + 1] [all...] |
/src/sys/arch/mmeye/stand/boot/ |
deflate.sh | 11 gzip -nc ${kernel} | dd bs=10 skip=1 of=${kernel}.gz.tmp
|