/littlefs-latest/scripts/ |
D | bench.py | 107 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 …]
|
D | test.py | 110 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 …]
|
D | tracebd.py | 375 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()
|
D | perfbd.py | 295 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,
|
D | summary.py | 29 '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]))
|
D | prettyasserts.py | 244 if m.start() > 0: 245 tokens.append((None, data[:m.start()], line, col))
|
D | tailpipe.py | 119 th.Thread(target=background, daemon=True).start()
|
D | cov.py | 331 folded.append(sum(rs[1:], start=rs[0])) 530 last.start,
|
D | perf.py | 661 folded.append(sum(rs[1:], start=rs[0])) 960 last.start,
|
D | structs.py | 292 folded.append(sum(rs[1:], start=rs[0]))
|
D | data.py | 344 folded.append(sum(rs[1:], start=rs[0]))
|
D | code.py | 344 folded.append(sum(rs[1:], start=rs[0]))
|
D | stack.py | 307 folded.append(sum(rs[1:], start=rs[0]))
|
/littlefs-latest/runners/ |
D | bench_runner.c | 1616 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()
|
D | test_runner.c | 2197 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/ |
D | lfs.h | 453 lfs_block_t start; member
|
D | lfs.c | 636 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;
|
D | DESIGN.md | 707 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
|