Home
last modified time | relevance | path

Searched refs:count (Results 1 – 16 of 16) sorted by relevance

/littlefs-3.7.0-3.6.0/scripts/
Dtracebd.py344 count=1, argument
349 width = count
356 self.count = count
372 count=max(self.count, block+1))
375 start = (block*self.size + off) / (self.size*self.count)
376 stop = (block*self.size + off+size) / (self.size*self.count)
402 count=self.count,
408 count=None, argument
412 count = count if count is not None else self.count
417 and count == self.count
[all …]
Dchangeprefix.py55 count = 0
69 count += n
83 count))
Dtest.py292 f.lineno += s.count('\n')
295 f.lineno += s.count('\n') + 1
1177 if failure.id.count(':') >= 2 else 0)
1189 if failure.id.count(':') >= 2 else 0)
Dreadmdir.py243 it.count()))
Dbench.py284 f.lineno += s.count('\n')
287 f.lineno += s.count('\n') + 1
/littlefs-3.7.0-3.6.0/runners/
Dbench_runner.c31 size_t *count, in mappend() argument
34 size_t count_ = *count; in mappend()
48 *count = count_; in mappend()
137 size_t count; member
142 size_t count; member
206 if (define < bench_define_names[i].count in bench_define_name()
219 if (define < bench_define_maps[i].count in bench_define_ispermutation()
238 if (define < bench_define_maps[i].count in bench_define()
316 size_t count = 0; in bench_define_suite() local
327 count = lfs_max(count, d+1); in bench_define_suite()
[all …]
Dtest_runner.c31 size_t *count, in mappend() argument
34 size_t count_ = *count; in mappend()
48 *count = count_; in mappend()
150 size_t count; member
155 size_t count; member
219 if (define < test_define_names[i].count in test_define_name()
232 if (define < test_define_maps[i].count in test_define_ispermutation()
251 if (define < test_define_maps[i].count in test_define()
329 size_t count = 0; in test_define_suite() local
340 count = lfs_max(count, d+1); in test_define_suite()
[all …]
/littlefs-3.7.0-3.6.0/tests/
Dtest_powerloss.toml5 # only a revision count
34 // get pair/rev count
43 // write just the revision count
Dtest_alloc.toml343 int count = 0;
351 count += 1;
363 for (int i = 0; i < count; i++) {
374 for (int i = 0; i < count+1; i++) {
500 int count = 0;
508 count += 1;
523 for (int i = 0; i < count+1; i++) {
Dtest_move.toml380 int count = 0;
386 count += 1;
392 count += 1;
398 count += 1;
404 count += 1;
406 assert(count <= 1);
862 int count = 0;
867 count += 1;
872 count += 1;
877 count += 1;
[all …]
Dtest_superblocks.toml334 .count = 0,
/littlefs-3.7.0-3.6.0/
DSPEC.md53 .-| revision count | entries | \
82 Each metadata block contains a 32-bit revision count followed by a number of
93 1. **Revision count (32-bits)** - Incremented every erase cycle. If both blocks
94 contain valid commits, only the block with the most recent revision count
113 | revision count | | | revision count |
140 .-| revision count | tag ~A | \
209 | revision count | | |
412 ^ ^ ^ ^ ^- version ^- block size ^- block count
436 4. **Block count (32-bits)** - Number of blocks in the filesystem.
792 the first commit, this includes the revision count for the metadata block.
Dlfs.c1195 dir->count = tempcount; in lfs_dir_fetchmatch()
1339 *id = lfs_min(lfs_tag_id(besttag), dir->count); in lfs_dir_fetchmatch()
1344 } else if (lfs_tag_id(besttag) < dir->count) { in lfs_dir_fetchmatch()
1801 dir->count = 0; in lfs_dir_alloc()
2038 dir->count = end - begin; in lfs_dir_compact()
2194 dir->count += 1; in lfs_dir_relocatingcommit()
2196 LFS_ASSERT(dir->count > 0); in lfs_dir_relocatingcommit()
2197 dir->count -= 1; in lfs_dir_relocatingcommit()
2208 if (hasdelete && dir->count == 0) { in lfs_dir_relocatingcommit()
2298 dir, 0, dir->count); in lfs_dir_relocatingcommit()
[all …]
DREADME.md71 // read current count
76 // update boot count
87 // print the boot count
Dlfs.h363 uint16_t count; member
DDESIGN.md318 revision count that we compare using [sequence arithmetic][wikipedia-sna]
320 revision count also gives us a rough idea of how many erases have occurred on
418 the revision count. Because we can commit multiple entries at once, we can
421 entries and revision count become committed and readable.
620 interesting properties of the count-trailing-zeros (CTZ) instruction.