Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/fatfs/src/
Dff.c1294 DWORD ncl /* Number of contiguous clusters to find (1..) */ in find_bitmap() argument
1315 if (++ctr == ncl) return scl + 2; /* Check if run length is sufficient for required */ in find_bitmap()
1334 DWORD ncl, /* Number of clusters to be changed */ in change_bitmap() argument
1354 if (--ncl == 0) return FR_OK; /* All bits processed? */ in change_bitmap()
1516 DWORD cs, ncl, scl; in create_chain() local
1536 ncl = find_bitmap(fs, scl, 1); /* Find a free cluster */ in create_chain()
1537 if (ncl == 0 || ncl == 0xFFFFFFFF) return ncl; /* No free cluster or hard error? */ in create_chain()
1538 res = change_bitmap(fs, ncl, 1, 1); /* Mark the cluster 'in use' */ in create_chain()
1544 if (obj->stat == 2 && ncl != scl + 1) { /* Is the chain got fragmented? */ in create_chain()
1550 if (ncl == clst + 1) { /* Is the cluster next to previous one? */ in create_chain()
[all …]