Searched refs:free_clst (Results 1 – 2 of 2) sorted by relevance
1127 st_dword(fs->win + FSI_Free_Count, fs->free_clst); /* Number of free clusters */ in sync_fs()1135 …BYTE perc_inuse = (fs->free_clst <= fs->n_fatent - 2) ? (BYTE)((QWORD)(fs->n_fatent - 2 - fs->free… in sync_fs()1479 if (fs->free_clst < fs->n_fatent - 2) { /* Update allocation information if it is valid */ in remove_chain()1480 fs->free_clst++; in remove_chain()1561 if (fs->free_clst == 0) return 0; /* No free cluster */ in create_chain()1624 if (fs->free_clst > 0 && fs->free_clst <= fs->n_fatent - 2) { in create_chain()1625 fs->free_clst--; in create_chain()3522 fs->last_clst = fs->free_clst = 0xFFFFFFFF; /* Invalidate cluster allocation information */3582 fs->last_clst = fs->free_clst = 0xFFFFFFFF; /* Invalidate cluster allocation information */3594 fs->free_clst = ld_dword(fs->win + FSI_Free_Count);[all …]
154 DWORD free_clst; /* Number of free clusters (Unknown if >= n_fatent-2) */ member