Symbol: cl_t
sbin/fsck_msdosfs/dir.c
1078
static cl_t lfcl;
sbin/fsck_msdosfs/dir.c
1082
reconnect(struct fat_descriptor *fat, cl_t head, size_t length)
sbin/fsck_msdosfs/dir.c
292
delete(struct fat_descriptor *fat, cl_t startcl,
sbin/fsck_msdosfs/dir.c
293
int startoff, cl_t endcl, int endoff, int notlast)
sbin/fsck_msdosfs/dir.c
345
u_char *end, cl_t startcl, cl_t endcl, cl_t curcl,
sbin/fsck_msdosfs/dir.c
447
cl_t cl;
sbin/fsck_msdosfs/dir.c
475
cl_t cl;
sbin/fsck_msdosfs/dir.c
551
cl_t cl, valcl = ~0, invcl = ~0, empcl = ~0;
sbin/fsck_msdosfs/dir.c
91
static int delete(struct fat_descriptor *, cl_t, int, cl_t, int, int);
sbin/fsck_msdosfs/dir.c
93
cl_t, cl_t, cl_t, char *, int);
sbin/fsck_msdosfs/dosfs.h
117
cl_t head; /* cluster no */
sbin/fsck_msdosfs/dosfs.h
58
cl_t bpbRootClust; /* Start of Root Directory */
sbin/fsck_msdosfs/dosfs.h
61
cl_t FSFree; /* Number of free clusters acc. FSInfo */
sbin/fsck_msdosfs/dosfs.h
62
cl_t FSNext; /* Next free cluster acc. FSInfo */
sbin/fsck_msdosfs/dosfs.h
72
cl_t ClustMask; /* mask for entries in FAT */
sbin/fsck_msdosfs/dosfs.h
73
cl_t NumClusters; /* # of entries in a FAT */
sbin/fsck_msdosfs/ext.h
121
int checkchain(struct fat_descriptor *, cl_t, size_t *);
sbin/fsck_msdosfs/ext.h
130
int reconnect(struct fat_descriptor *, cl_t, size_t);
sbin/fsck_msdosfs/ext.h
139
const char *rsrvdcltype(cl_t);
sbin/fsck_msdosfs/ext.h
144
void clearchain(struct fat_descriptor *, cl_t);
sbin/fsck_msdosfs/ext.h
87
void fat_clear_cl_head(struct fat_descriptor *, cl_t);
sbin/fsck_msdosfs/ext.h
88
bool fat_is_cl_head(struct fat_descriptor *, cl_t);
sbin/fsck_msdosfs/ext.h
90
cl_t fat_get_cl_next(struct fat_descriptor *, cl_t);
sbin/fsck_msdosfs/ext.h
92
int fat_set_cl_next(struct fat_descriptor *, cl_t, cl_t);
sbin/fsck_msdosfs/ext.h
94
cl_t fat_allocate_cluster(struct fat_descriptor *fat);
sbin/fsck_msdosfs/ext.h
98
bool fat_is_valid_cl(struct fat_descriptor *, cl_t);
sbin/fsck_msdosfs/fat.c
102
bitmap_none_in_range(long_bitmap_t *lbp, cl_t cl)
sbin/fsck_msdosfs/fat.c
1033
clearchain(struct fat_descriptor *fat, cl_t head)
sbin/fsck_msdosfs/fat.c
1035
cl_t current_cl, next_cl;
sbin/fsck_msdosfs/fat.c
104
cl_t i = cl / LONG_BIT;
sbin/fsck_msdosfs/fat.c
1159
cl_t head;
sbin/fsck_msdosfs/fat.c
164
cl_t (*get)(struct fat_descriptor *, cl_t);
sbin/fsck_msdosfs/fat.c
165
int (*set)(struct fat_descriptor *, cl_t, cl_t);
sbin/fsck_msdosfs/fat.c
180
fat_clear_cl_head(struct fat_descriptor *fat, cl_t cl)
sbin/fsck_msdosfs/fat.c
186
fat_is_cl_head(struct fat_descriptor *fat, cl_t cl)
sbin/fsck_msdosfs/fat.c
192
fat_is_cl_head_in_range(struct fat_descriptor *fat, cl_t cl)
sbin/fsck_msdosfs/fat.c
209
fat_get_fat12_ptr(struct fat_descriptor *fat, cl_t cl)
sbin/fsck_msdosfs/fat.c
214
static cl_t
sbin/fsck_msdosfs/fat.c
215
fat_get_fat12_next(struct fat_descriptor *fat, cl_t cl)
sbin/fsck_msdosfs/fat.c
218
cl_t retval;
sbin/fsck_msdosfs/fat.c
234
fat_set_fat12_next(struct fat_descriptor *fat, cl_t cl, cl_t nextcl)
sbin/fsck_msdosfs/fat.c
266
fat_get_fat16_ptr(struct fat_descriptor *fat, cl_t cl)
sbin/fsck_msdosfs/fat.c
271
static cl_t
sbin/fsck_msdosfs/fat.c
272
fat_get_fat16_next(struct fat_descriptor *fat, cl_t cl)
sbin/fsck_msdosfs/fat.c
275
cl_t retval;
sbin/fsck_msdosfs/fat.c
287
fat_set_fat16_next(struct fat_descriptor *fat, cl_t cl, cl_t nextcl)
sbin/fsck_msdosfs/fat.c
305
fat_get_fat32_ptr(struct fat_descriptor *fat, cl_t cl)
sbin/fsck_msdosfs/fat.c
310
static cl_t
sbin/fsck_msdosfs/fat.c
311
fat_get_fat32_next(struct fat_descriptor *fat, cl_t cl)
sbin/fsck_msdosfs/fat.c
314
cl_t retval;
sbin/fsck_msdosfs/fat.c
326
fat_set_fat32_next(struct fat_descriptor *fat, cl_t cl, cl_t nextcl)
sbin/fsck_msdosfs/fat.c
435
fat_get_fat32_cached_ptr(struct fat_descriptor *fat, cl_t cl, bool writing)
sbin/fsck_msdosfs/fat.c
452
static cl_t
sbin/fsck_msdosfs/fat.c
453
fat_get_fat32_cached_next(struct fat_descriptor *fat, cl_t cl)
sbin/fsck_msdosfs/fat.c
456
cl_t retval;
sbin/fsck_msdosfs/fat.c
471
fat_set_fat32_cached_next(struct fat_descriptor *fat, cl_t cl, cl_t nextcl)
sbin/fsck_msdosfs/fat.c
487
cl_t fat_get_cl_next(struct fat_descriptor *fat, cl_t cl)
sbin/fsck_msdosfs/fat.c
49
static inline bool valid_cl(struct fat_descriptor *, cl_t);
sbin/fsck_msdosfs/fat.c
498
int fat_set_cl_next(struct fat_descriptor *fat, cl_t cl, cl_t nextcl)
sbin/fsck_msdosfs/fat.c
542
fat_is_valid_cl(struct fat_descriptor *fat, cl_t cl)
sbin/fsck_msdosfs/fat.c
549
valid_cl(struct fat_descriptor *fat, cl_t cl)
sbin/fsck_msdosfs/fat.c
724
cl_t cl, nextcl;
sbin/fsck_msdosfs/fat.c
82
bitmap_clear(long_bitmap_t *lbp, cl_t cl)
sbin/fsck_msdosfs/fat.c
84
cl_t i = cl / LONG_BIT;
sbin/fsck_msdosfs/fat.c
93
bitmap_get(long_bitmap_t *lbp, cl_t cl)
sbin/fsck_msdosfs/fat.c
932
rsrvdcltype(cl_t cl)
sbin/fsck_msdosfs/fat.c
947
checkchain(struct fat_descriptor *fat, cl_t head, size_t *chainsize)
sbin/fsck_msdosfs/fat.c
949
cl_t prev_cl, current_cl, next_cl;
sbin/fsck_msdosfs/fat.c
95
cl_t i = cl / LONG_BIT;