Home
last modified time | relevance | path

Searched refs:free_clst (Results 1 – 2 of 2) sorted by relevance

/fatfs-2.7.6/
Dff.c1093 st_dword(fs->win + FSI_Free_Count, fs->free_clst); /* Number of free clusters */ in sync_fs()
1433 if (fs->free_clst < fs->n_fatent - 2) { /* Update FSINFO */ in remove_chain()
1434 fs->free_clst++; in remove_chain()
1515 if (fs->free_clst == 0) return 0; /* No free cluster */ in create_chain()
1578 if (fs->free_clst <= fs->n_fatent - 2) fs->free_clst--; in create_chain()
3454 fs->last_clst = fs->free_clst = 0xFFFFFFFF; /* Initialize cluster allocation information */
3513 fs->last_clst = fs->free_clst = 0xFFFFFFFF; /* Initialize cluster allocation information */
3526 fs->free_clst = ld_dword(fs->win + FSI_Free_Count);
4769 if (fs->free_clst <= fs->n_fatent - 2) {
4770 *nclst = fs->free_clst;
[all …]
/fatfs-2.7.6/include/
Dff.h156 DWORD free_clst; /* Number of free clusters */ member