Home
last modified time | relevance | path

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

/hal_espressif-2.7.6/components/fatfs/src/
Dff.c1423 DWORD nxt; in remove_chain() local
1442 nxt = get_fat(obj, clst); /* Get cluster status */ in remove_chain()
1443 if (nxt == 0) break; /* Empty cluster? */ in remove_chain()
1444 if (nxt == 1) return FR_INT_ERR; /* Internal error? */ in remove_chain()
1445 if (nxt == 0xFFFFFFFF) return FR_DISK_ERR; /* Disk error? */ in remove_chain()
1455 if (ecl + 1 == nxt) { /* Is next cluster contiguous? */ in remove_chain()
1456 ecl = nxt; in remove_chain()
1469 scl = ecl = nxt; in remove_chain()
1472 clst = nxt; /* Next cluster */ in remove_chain()
1484 nxt = get_fat(obj, clst); in remove_chain()
[all …]