Home
last modified time | relevance | path

Searched refs:skip (Results 1 – 25 of 440) sorted by relevance

12345678910>>...18

/dragonfly/test/debug/
H A Dseekbench.c36 off_t skip; in main() local
54 skip = BLKSIZE; in main()
55 while (skip < bytes) { in main()
58 for (base = skip; base < bytes && count < 100; base += skip) { in main()
66 if (skip < 100*1024*1024) in main()
68 (intmax_t)skip / 1024, in main()
72 (intmax_t)skip / 1024 / 1024, in main()
74 skip += BLKSIZE; in main()
75 if (skip < BLKSIZE * 25) in main()
76 skip += BLKSIZE; in main()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/
H A Dtarget-globals.h46 struct target_regs *GTY((skip)) regs;
48 struct target_recog *GTY((skip)) recog;
49 struct target_hard_regs *GTY((skip)) hard_regs;
50 struct target_reload *GTY((skip)) reload;
51 struct target_expmed *GTY((skip)) expmed;
52 struct target_optabs *GTY((skip)) optabs;
54 struct target_cfgloop *GTY((skip)) cfgloop;
55 struct target_ira *GTY((skip)) ira;
56 struct target_ira_int *GTY((skip)) ira_int;
57 struct target_builtins *GTY((skip)) builtins;
[all …]
/dragonfly/sys/dev/drm/
H A Dlinux_scatterlist.c169 if (skip && curlen >= skip) { in sg_pcopy_from_buffer()
170 skip -= curlen; in sg_pcopy_from_buffer()
173 if (skip) { in sg_pcopy_from_buffer()
174 curlen -= skip; in sg_pcopy_from_buffer()
175 curoff += skip; in sg_pcopy_from_buffer()
176 skip = 0; in sg_pcopy_from_buffer()
205 if (skip && curlen >= skip) { in sg_pcopy_to_buffer()
206 skip -= curlen; in sg_pcopy_to_buffer()
209 if (skip) { in sg_pcopy_to_buffer()
210 curlen -= skip; in sg_pcopy_to_buffer()
[all …]
/dragonfly/lib/libc/db/btree/
H A Dbt_split.c84 uint16_t skip; in __bt_split() local
95 skip = argskip; in __bt_split()
216 memmove(h->linp + skip + 1, h->linp + skip, in __bt_split()
245 if (skip > 0) in __bt_split()
263 if (skip > 0) in __bt_split()
366 *skip = 0; in bt_page()
605 skip = *pskip; in bt_psplit()
610 if (skip == off) { in bt_psplit()
652 if (skip != off) { in bt_psplit()
698 if (skip <= off) { in bt_psplit()
[all …]
/dragonfly/contrib/gcc-4.7/gcc/
H A Dtarget-globals.h40 struct target_flag_state *GTY((skip)) flag_state;
41 struct target_regs *GTY((skip)) regs;
43 struct target_hard_regs *GTY((skip)) hard_regs;
44 struct target_reload *GTY((skip)) reload;
45 struct target_expmed *GTY((skip)) expmed;
46 struct target_optabs *GTY((skip)) optabs;
48 struct target_cfgloop *GTY((skip)) cfgloop;
49 struct target_ira *GTY((skip)) ira;
50 struct target_ira_int *GTY((skip)) ira_int;
51 struct target_builtins *GTY((skip)) builtins;
[all …]
/dragonfly/usr.bin/ctags/
H A DC.c342 goto skip; in hash_entry()
465 skip; in skip_string() local
467 for (skip = NO; GETC(!=, EOF); ) in skip_string()
470 skip = !skip; /* we toggle in case it's "\\" */ in skip_string()
476 if (c == key && !skip) in skip_string()
478 skip = NO; in skip_string()
490 skip, in skip_key() local
493 for (skip = retval = NO; GETC(!=, EOF);) in skip_key()
496 skip = !skip; /* we toggle in case it's "\\" */ in skip_key()
521 if (c == key && !skip) in skip_key()
[all …]
/dragonfly/sys/kern/
H A Dsubr_blist.c141 int64_t radix, swblk_t skip);
144 int64_t radix, swblk_t skip,
148 int64_t radix, swblk_t skip,
153 swblk_t skip, swblk_t count);
156 int64_t radix, swblk_t skip, int tab);
178 swblk_t skip = 0; in blist_create() local
190 skip = (skip + 1) * BLIST_META_RADIX; in blist_create()
191 KKASSERT(skip > 0); in blist_create()
198 bl->bl_skip = skip; in blist_create()
452 int64_t radix, swblk_t skip) in blst_meta_alloc() argument
[all …]
H A Dsubr_alist.c125 alist_blk_t skip, alist_blk_t blk);
147 alist_blk_t skip = 0; in alist_create() local
156 skip = (skip + 1) * ALIST_META_RADIX; in alist_create()
163 bl->bl_skip = skip; in alist_create()
190 alist_blk_t skip = 0; in alist_init() local
199 skip = (skip + 1) * ALIST_META_RADIX; in alist_init()
205 bl->bl_skip = skip; in alist_init()
303 alist_blk_t skip = bl->bl_skip; in alist_free_info() local
314 next_skip = skip / ALIST_META_RADIX; in alist_free_info()
355 skip = next_skip - 1; in alist_free_info()
[all …]
/dragonfly/contrib/libarchive/libarchive/
H A Darchive_read_open_file.c127 off_t skip = (off_t)request; in file_skip() local
129 int64_t skip = request; in file_skip() local
131 long skip = (long)request; in file_skip() local
133 int skip_bits = sizeof(skip) * 8 - 1; in file_skip()
147 if (sizeof(request) > sizeof(skip)) { in file_skip()
151 skip = max_skip; in file_skip()
156 if (lseek(fileno(mine->f), skip, SEEK_CUR) < 0) in file_skip()
158 if (fseeko(mine->f, skip, SEEK_CUR) != 0) in file_skip()
160 if (_fseeki64(mine->f, skip, SEEK_CUR) != 0) in file_skip()
162 if (fseek(mine->f, skip, SEEK_CUR) != 0) in file_skip()
H A Darchive_read_open_memory.c129 memory_read_skip(struct archive *a, void *client_data, int64_t skip) in memory_read_skip() argument
134 if ((int64_t)skip > (int64_t)(mine->end - mine->p)) in memory_read_skip()
135 skip = mine->end - mine->p; in memory_read_skip()
137 skip /= mine->read_size; in memory_read_skip()
138 skip *= mine->read_size; in memory_read_skip()
139 mine->p += skip; in memory_read_skip()
140 return (skip); in memory_read_skip()
/dragonfly/tools/regression/lib/libc-regex/
H A Dtestregex.c1090 return skip; in extract()
1100 skip |= level; in extract()
1110 return skip; in extract()
1131 skip = note(level, msg, skip, test); in extract()
1134 return skip; in extract()
1236 unsigned long skip; in main() local
1354 skip = 0; in main()
1573 skip = note(level, s, skip, test); in main()
1581 skip = note(level, skip, test, "locales not supported"); in main()
1715 skip |= level; in main()
[all …]
/dragonfly/crypto/libressl/crypto/ec/
H A Dec2_oct.c184 size_t field_len, i, skip; in ec_GF2m_simple_point2oct() local
241 if (skip > field_len) { in ec_GF2m_simple_point2oct()
245 while (skip > 0) { in ec_GF2m_simple_point2oct()
247 skip--; in ec_GF2m_simple_point2oct()
249 skip = BN_bn2bin(x, buf + i); in ec_GF2m_simple_point2oct()
250 i += skip; in ec_GF2m_simple_point2oct()
258 if (skip > field_len) { in ec_GF2m_simple_point2oct()
262 while (skip > 0) { in ec_GF2m_simple_point2oct()
264 skip--; in ec_GF2m_simple_point2oct()
266 skip = BN_bn2bin(y, buf + i); in ec_GF2m_simple_point2oct()
[all …]
H A Decp_oct.c208 size_t field_len, i, skip; in ec_GFp_simple_point2oct() local
260 if (skip > field_len) { in ec_GFp_simple_point2oct()
264 while (skip > 0) { in ec_GFp_simple_point2oct()
266 skip--; in ec_GFp_simple_point2oct()
268 skip = BN_bn2bin(x, buf + i); in ec_GFp_simple_point2oct()
269 i += skip; in ec_GFp_simple_point2oct()
276 if (skip > field_len) { in ec_GFp_simple_point2oct()
280 while (skip > 0) { in ec_GFp_simple_point2oct()
282 skip--; in ec_GFp_simple_point2oct()
284 skip = BN_bn2bin(y, buf + i); in ec_GFp_simple_point2oct()
[all …]
/dragonfly/lib/libc/net/
H A Dhesiod.c357 int ancount, qdcount, i, j, n, skip, type, class, len; in get_txt_records() local
387 skip = dn_skipname(p, eom); in get_txt_records()
388 if (skip < 0 || p + skip + QFIXEDSZ > eom) { in get_txt_records()
392 p += skip + QFIXEDSZ; in get_txt_records()
405 skip = dn_skipname(p, eom); in get_txt_records()
406 if (skip < 0 || p + skip + 10 > eom) in get_txt_records()
408 type = p[skip + 0] << 8 | p[skip + 1]; in get_txt_records()
409 class = p[skip + 2] << 8 | p[skip + 3]; in get_txt_records()
410 len = p[skip + 8] << 8 | p[skip + 9]; in get_txt_records()
411 p += skip + 10; in get_txt_records()
/dragonfly/contrib/gcc-8.0/libbacktrace/
H A Dsimple.c45 int skip; member
74 if (bdata->skip > 0) in simple_unwind()
76 --bdata->skip; in simple_unwind()
94 backtrace_simple (struct backtrace_state *state, int skip, in backtrace_simple() argument
100 bdata.skip = skip + 1; in backtrace_simple()
H A Dbacktrace.c48 int skip; member
79 if (bdata->skip > 0) in unwind()
81 --bdata->skip; in unwind()
102 backtrace_full (struct backtrace_state *state, int skip, in backtrace_full() argument
109 bdata.skip = skip + 1; in backtrace_full()
/dragonfly/sbin/dmesg/
H A Ddmesg.c56 int *newl, int *skip, int *pri);
69 int newl, skip; in main() local
120 skip = 0; in main()
137 dumpbuf(bp, bufpos, buflen, &newl, &skip, &pri); in main()
201 dumpbuf(bp, 0, buflen, &newl, &skip, &pri); in main()
231 int *newl, int *skip, int *pri) in dumpbuf() argument
251 if (*skip) { in dumpbuf()
253 *skip = 0; in dumpbuf()
257 *newl = *skip = 0; in dumpbuf()
266 *skip = 1; in dumpbuf()
/dragonfly/usr.bin/hexdump/
H A Dodsyntax.c133 skip = strtoll(optarg, &end, 0); in oldsyntax()
135 skip *= 512; in oldsyntax()
137 skip *= 1024; in oldsyntax()
139 skip *= 1048576L; in oldsyntax()
140 if (errno != 0 || skip < 0 || strlen(end) > 1) in oldsyntax()
242 skip = strtoll(num, (char **)&end, base ? base : 8); in odoffset()
246 skip = 0; in odoffset()
252 skip *= 1024; in odoffset()
255 skip *= 512; in odoffset()
261 skip = 0; in odoffset()
H A Dhexsyntax.c44 off_t skip; /* bytes to skip */ variable
94 if ((skip = strtoll(optarg, &p, 0)) < 0) in newsyntax()
98 skip *= 512; in newsyntax()
101 skip *= 1024; in newsyntax()
104 skip *= 1048576; in newsyntax()
H A Ddisplay.c252 if (odmode && address < skip) in get()
320 if (skip) in next()
324 if (!skip) in next()
341 if (skip >= sb.st_size) { in doskip()
343 skip -= sb.st_size; in doskip()
345 if (fseeko(stdin, skip, SEEK_SET)) in doskip()
347 address += skip; in doskip()
348 skip = 0; in doskip()
351 for (cnt = 0; cnt < skip; ++cnt) in doskip()
355 skip -= cnt; in doskip()
/dragonfly/contrib/gcc-8.0/gcc/cp/
H A Dparser.h90 cp_token_position GTY ((skip)) last_token;
94 cp_token_position GTY ((skip)) next_token;
100 vec<cp_token_position> GTY ((skip)) saved_tokens;
122 cp_token * GTY((skip)) first;
125 cp_token * GTY ((skip)) last;
369 cp_omp_declare_simd_data * GTY((skip)) omp_declare_simd;
373 cp_oacc_routine_data * GTY((skip)) oacc_routine;
/dragonfly/contrib/gdb-7/bfd/
H A Dstabs.c240 skip = 0; in _bfd_link_section_stabs()
268 ++skip; in _bfd_link_section_stabs()
429 ++skip; in _bfd_link_section_stabs()
442 ++skip; in _bfd_link_section_stabs()
470 if (skip != 0) in _bfd_link_section_stabs()
555 skip = 0; in _bfd_discard_section_stabs()
579 skip++; in _bfd_discard_section_stabs()
593 skip++; in _bfd_discard_section_stabs()
602 skip ++; in _bfd_discard_section_stabs()
621 if (skip != 0) in _bfd_discard_section_stabs()
[all …]
/dragonfly/contrib/binutils-2.34/bfd/
H A Dstabs.c239 skip = 0; in _bfd_link_section_stabs()
267 ++skip; in _bfd_link_section_stabs()
429 ++skip; in _bfd_link_section_stabs()
442 ++skip; in _bfd_link_section_stabs()
470 if (skip != 0) in _bfd_link_section_stabs()
555 skip = 0; in _bfd_discard_section_stabs()
579 skip++; in _bfd_discard_section_stabs()
593 skip++; in _bfd_discard_section_stabs()
602 skip ++; in _bfd_discard_section_stabs()
621 if (skip != 0) in _bfd_discard_section_stabs()
[all …]
/dragonfly/contrib/binutils-2.27/bfd/
H A Dstabs.c239 skip = 0; in _bfd_link_section_stabs()
267 ++skip; in _bfd_link_section_stabs()
428 ++skip; in _bfd_link_section_stabs()
441 ++skip; in _bfd_link_section_stabs()
469 if (skip != 0) in _bfd_link_section_stabs()
554 skip = 0; in _bfd_discard_section_stabs()
578 skip++; in _bfd_discard_section_stabs()
592 skip++; in _bfd_discard_section_stabs()
601 skip ++; in _bfd_discard_section_stabs()
620 if (skip != 0) in _bfd_discard_section_stabs()
[all …]
/dragonfly/bin/pax/
H A Dar_subs.c123 if (rd_skip(arcn->skip + arcn->pad) == 1) in list()
191 rd_skip(arcn->skip + arcn->pad); in extract()
209 rd_skip(arcn->skip + arcn->pad); in extract()
214 rd_skip(arcn->skip + arcn->pad); in extract()
218 rd_skip(arcn->skip + arcn->pad); in extract()
233 rd_skip(arcn->skip + arcn->pad); in extract()
245 rd_skip(arcn->skip + arcn->pad); in extract()
250 rd_skip(arcn->skip + arcn->pad); in extract()
254 rd_skip(arcn->skip + arcn->pad); in extract()
290 rd_skip(arcn->skip + arcn->pad); in extract()
[all …]

12345678910>>...18