Searched refs:clus (Results 1 – 3 of 3) sorted by relevance
/external/exfatprogs/fsck/ |
D | fsck.c | 365 static inline bool heap_clus(struct exfat *exfat, clus_t clus) in heap_clus() argument 367 return clus >= EXFAT_FIRST_CLUSTER && in heap_clus() 368 (clus - EXFAT_FIRST_CLUSTER) < exfat->clus_count; in heap_clus() 372 clus_t clus, clus_t *next) in get_next_clus() argument 378 if (!heap_clus(exfat, clus)) in get_next_clus() 382 *next = clus + 1; in get_next_clus() 388 offset += sizeof(clus_t) * clus; in get_next_clus() 397 static int set_fat(struct exfat *exfat, clus_t clus, clus_t next_clus) in set_fat() argument 403 offset += sizeof(clus_t) * clus; in set_fat() 414 clus_t clus, prev, next; in check_clus_chain() local [all …]
|
D | fsck.h | 84 off_t exfat_c2o(struct exfat *exfat, unsigned int clus); 86 clus_t clus, clus_t *next);
|
D | de_iter.c | 69 clus_t clus, unsigned int offset, clus_t p_clus) in read_ahead_next_blocks() argument 79 if (clus + 1 < clus_count) { in read_ahead_next_blocks() 80 ra_clus = clus + 1; in read_ahead_next_blocks()
|