Home
last modified time | relevance | path

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

/fatfs-latest/
Dff.c5778 QWORD nxt_alloc, sz_part, sz_pool, top_bpt; local
5793 bcc = 0xFFFFFFFF; sz_part = 1;
5797 if (sz_part != 0) { /* Is the size table not termintated? */
5799 sz_part = plst[si++]; /* Get a partition size */
5800 if (sz_part <= 100) { /* Is the size in percentage? */
5801 sz_part = sz_pool * sz_part / 100; /* Sectors in percentage */
5802sz_part = (sz_part + align - 1) & ((QWORD)0 - align); /* Align partition end LBA (only if in perce…
5804 if (nxt_alloc + sz_part > top_bpt) { /* Clip the size at end of the pool */
5805 sz_part = (nxt_alloc < top_bpt) ? top_bpt - nxt_alloc : 0;
5808 if (sz_part != 0) { /* Add a partition? */
[all …]