Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/fatfs/src/
Dff.c5547 DWORD sz_vol, sz_rsv, sz_fat, sz_dir; /* Size for volume, fat, dir, data */ local
5601 sz_vol = ld_dword(pte + PTE_SizLba); /* Get volume size */
5604 if (disk_ioctl(pdrv, GET_SECTOR_COUNT, &sz_vol) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
5606 if (sz_vol < b_vol) LEAVE_MKFS(FR_MKFS_ABORTED);
5607 sz_vol -= b_vol; /* Volume size */
5609 if (sz_vol < 128) LEAVE_MKFS(FR_MKFS_ABORTED); /* Check if volume size is >=128s */
5614 …if ((opt & FM_ANY) == FM_EXFAT || sz_vol >= 0x4000000 || au > 128) { /* exFAT only, vol >= 64Ms or…
5635 if (sz_vol < 0x1000) LEAVE_MKFS(FR_MKFS_ABORTED); /* Too small volume? */
5637 tbl[0] = b_vol; tbl[1] = b_vol + sz_vol - 1; /* Inform the device the volume area may be erased */
5643 if (sz_vol >= 0x80000) au = 64; /* >= 512Ks */
[all …]