Home
last modified time | relevance | path

Searched refs:start (Results 1 – 18 of 18) sorted by relevance

/littlefs-latest/scripts/
Dbench.py107 start = (int(m.group('start'), 0)
114 start, stop = 0, start
115 for x in range(start, stop, step):
117 v_[:m.start()], x, v_[m.end():]))
878 def run_job(runner_, ids=[], start=None, step=None): argument
883 start = start or 0
885 while start < total_perms:
888 job_runner.append('-s%s,%s,%s' % (start, start+step, step))
890 job_runner.append('-s%s,,%s' % (start, step))
897 start += locals.seen_perms*step
[all …]
Dtest.py110 start = (int(m.group('start'), 0)
117 start, stop = 0, start
118 for x in range(start, stop, step):
120 v_[:m.start()], x, v_[m.end():]))
883 def run_job(runner_, ids=[], start=None, step=None): argument
888 start = start or 0
890 while start < total_perms:
893 job_runner.append('-s%s,%s,%s' % (start, start+step, step))
895 job_runner.append('-s%s,,%s' % (start, step))
902 start += locals.seen_perms*step
[all …]
Dtracebd.py375 start = (block*self.size + off) / (self.size*self.count)
379 m.floor(start*len(self.blocks)),
426 start = m.floor(x * (size*count)/(width*height))
428 start_block = start // size
429 start_off = start % size
433 start = start_block*self.size + start_off
435 start = m.floor(start * len(self.blocks)/(self.size*self.count))
441 self.blocks[start:stop],
831 th.Thread(target=background, daemon=True).start()
Dperfbd.py295 def collect_job(path, start, stop, syms, sym_at, lines, line_at, *, argument
395 if start is not None and start > 0:
397 os.lseek(fd, start, os.SEEK_SET)
579 ((collect_job, (path, start, stop,
583 for start, stop in ranges)):
627 folded.append(sum(rs[1:], start=rs[0]))
945 last.start,
Dsummary.py29 'sum': lambda xs: sum(xs[1:], start=xs[0]),
30 'prod': lambda xs: m.prod(xs[1:], start=xs[0]),
378 folded.append(sum(rs[1:], start=rs[0]))
Dprettyasserts.py244 if m.start() > 0:
245 tokens.append((None, data[:m.start()], line, col))
Dtailpipe.py119 th.Thread(target=background, daemon=True).start()
Dcov.py331 folded.append(sum(rs[1:], start=rs[0]))
530 last.start,
Dperf.py661 folded.append(sum(rs[1:], start=rs[0]))
960 last.start,
Dstructs.py292 folded.append(sum(rs[1:], start=rs[0]))
Ddata.py344 folded.append(sum(rs[1:], start=rs[0]))
Dcode.py344 folded.append(sum(rs[1:], start=rs[0]))
Dstack.py307 folded.append(sum(rs[1:], start=rs[0]))
/littlefs-latest/runners/
Dbench_runner.c1616 intmax_t start = strtoumax(optarg, &parsed, 0); in main() local
1621 start = 0; in main()
1657 stop = start; in main()
1658 start = 0; in main()
1668 for (intmax_t i = start; in main()
Dtest_runner.c2197 intmax_t start = strtoumax(optarg, &parsed, 0); in main() local
2202 start = 0; in main()
2238 stop = start; in main()
2239 start = 0; in main()
2249 for (intmax_t i = start; in main()
/littlefs-latest/
Dlfs.h453 lfs_block_t start; member
Dlfs.c636 lfs_block_t off = ((block - lfs->lookahead.start) in lfs_alloc_lookahead()
653 lfs->lookahead.start = (lfs->lookahead.start + lfs->lookahead.next) in lfs_alloc_scan()
680 *block = (lfs->lookahead.start + lfs->lookahead.next) in lfs_alloc()
710 (lfs->lookahead.start + lfs->lookahead.next) in lfs_alloc()
4405 lfs->lookahead.start = 0;
4639 lfs->lookahead.start = lfs->seed % lfs->block_count;
5648 lfs->lookahead.start = 0;
DDESIGN.md707 in practice, most block sizes start at 512 bytes. As long as our block size
717 complicated. We can start with a summation that loops through all of the blocks
1249 Instead, we start the allocator as a random offset every time we mount the
1309 Now that we have our building blocks out of the way, we can start looking at