Searched refs:count (Results 1 – 16 of 16) sorted by relevance
/littlefs-3.7.0-3.6.0/scripts/ |
D | tracebd.py | 344 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 …]
|
D | changeprefix.py | 55 count = 0 69 count += n 83 count))
|
D | test.py | 292 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)
|
D | readmdir.py | 243 it.count()))
|
D | bench.py | 284 f.lineno += s.count('\n') 287 f.lineno += s.count('\n') + 1
|
/littlefs-3.7.0-3.6.0/runners/ |
D | bench_runner.c | 31 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 …]
|
D | test_runner.c | 31 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/ |
D | test_powerloss.toml | 5 # only a revision count 34 // get pair/rev count 43 // write just the revision count
|
D | test_alloc.toml | 343 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++) {
|
D | test_move.toml | 380 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 …]
|
D | test_superblocks.toml | 334 .count = 0,
|
/littlefs-3.7.0-3.6.0/ |
D | SPEC.md | 53 .-| 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.
|
D | lfs.c | 1195 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 …]
|
D | README.md | 71 // read current count 76 // update boot count 87 // print the boot count
|
D | lfs.h | 363 uint16_t count; member
|
D | DESIGN.md | 318 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.
|