Lines Matching defs:startcl
293 * Delete directory entries between startcl, startoff and endcl, endoff.
296 delete(struct fat_descriptor *fat, cl_t startcl,
310 while (fat_is_valid_cl(fat, startcl)) {
311 if (startcl == endcl) {
316 off = (startcl - CLUST_FIRST) * boot->bpbSecPerClust + boot->FirstCluster;
339 if (startcl == endcl)
341 startcl = fat_get_cl_next(fat, startcl);
349 u_char *end, cl_t startcl, cl_t endcl, cl_t curcl,
365 if (startcl != curcl) {
367 startcl, start - buffer,
373 /* startcl is < CLUST_FIRST for !FAT32 root */
374 if ((endcl == curcl) || (startcl < CLUST_FIRST))