Home
last modified time | relevance | path

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

/fatfs-latest/
Dff.c3352 UINT fmt, i; local
3356 fmt = check_fs(fs, 0); /* Load sector 0 and check if it is an FAT VBR as SFD format */
3357 …if (fmt != 2 && (fmt >= 3 || part == 0)) return fmt; /* Returns if it is an FAT VBR as auto scan, …
3375 fmt = check_fs(fs, ld_qword(fs->win + ofs + GPTE_FstLba)); /* Load VBR and check status */
3376 if (part == 0 && fmt <= 1) return fmt; /* Auto search (valid FAT volume found first) */
3377 …if (part != 0 && v_ent == part) return fmt; /* Forced partition order (regardless of it is valid …
3389 fmt = mbr_pt[i] ? check_fs(fs, mbr_pt[i]) : 3; /* Check if the partition is FAT */
3390 } while (part == 0 && fmt >= 2 && ++i < 4);
3391 return fmt;
3413 UINT fmt; local
[all …]
/fatfs-latest/include/
Dff.h264 BYTE fmt; /* Format option (FM_FAT, FM_FAT32, FM_EXFAT and FM_SFD) */ member