Home
last modified time | relevance | path

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

/fatfs-latest/
Dff.c5915 …LBA_t sz_vol, b_vol, b_fat, b_data; /* Volume size, base LBA of volume, base LBA of FAT and base … local
5965 b_vol = sz_vol = 0;
5985 sz_vol = ld_qword(buf + ofs + GPTE_LstLba) - b_vol + 1;
5998 sz_vol = ld_dword(pte + PTE_SizLba); /* Get volume size */
6001 if (disk_ioctl(pdrv, GET_SECTOR_COUNT, &sz_vol) != RES_OK) LEAVE_MKFS(FR_DISK_ERR);
6005 if (sz_vol >= FF_MIN_GPT) { /* Which partition type to create, MBR or GPT? */
6007 …b_vol = GPT_ALIGN / ss; sz_vol -= b_vol + GPT_ITEMS * SZ_GPTE / ss + 1; /* Estimated partition off…
6011 if (sz_vol > N_SEC_TRACK) {
6012 b_vol = N_SEC_TRACK; sz_vol -= b_vol; /* Estimated partition offset and size */
6017 if (sz_vol < 128) LEAVE_MKFS(FR_MKFS_ABORTED); /* Check if volume size is >=128 sectors */
[all …]