Searched refs:chunk (Results 1 – 3 of 3) sorted by relevance
/littlefs-3.5.0-3.4.0/tests/ |
D | test_files.toml | 34 lfs_size_t chunk = lfs_min(CHUNKSIZE, SIZE-i); 35 for (lfs_size_t b = 0; b < chunk; b++) { 38 lfs_file_write(&lfs, &file, buffer, chunk) => chunk; 49 lfs_size_t chunk = lfs_min(CHUNKSIZE, SIZE-i); 50 lfs_file_read(&lfs, &file, buffer, chunk) => chunk; 51 for (lfs_size_t b = 0; b < chunk; b++) { 73 lfs_size_t chunk = lfs_min(CHUNKSIZE, SIZE1-i); 74 for (lfs_size_t b = 0; b < chunk; b++) { 77 lfs_file_write(&lfs, &file, buffer, chunk) => chunk; 88 lfs_size_t chunk = lfs_min(CHUNKSIZE, SIZE1-i); [all …]
|
/littlefs-3.5.0-3.4.0/ |
D | SPEC.md | 211 ^ ^- chunk 233 into a 3-bit abstract type and an 8-bit chunk field. Note that the value 240 abstract types. type1+chunk+id form a unique identifier for each tag in the 281 The chunk field in this tag indicates an 8-bit file type which can be one of 413 chunk field and can be one of the following. 549 the chunk field, and the user attribute itself can be found in the tag's data. 579 containing all metadata pairs. The chunk field contains the type of the tail, 686 is stored in the chunk field. Currently, the only global state is move state, 756 In addition, the CRC tag's chunk field contains a set of flags which can
|
/littlefs-3.5.0-3.4.0/scripts/ |
D | readmdir.py | 94 def chunk(self): member in Tag 99 return struct.unpack('b', struct.pack('B', self.chunk))[0]
|