Home
last modified time | relevance | path

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

/fatfs-2.7.6/
Dff.c3283 UINT fmt, i; local
3287 fmt = check_fs(fs, 0); /* Load sector 0 and check if it is an FAT VBR as SFD format */
3288 …if (fmt != 2 && (fmt >= 3 || part == 0)) return fmt; /* Returns if it is an FAT VBR as auto scan, …
3306 fmt = check_fs(fs, ld_qword(fs->win + ofs + GPTE_FstLba)); /* Load VBR and check status */
3307 if (part == 0 && fmt <= 1) return fmt; /* Auto search (valid FAT volume found first) */
3308 …if (part != 0 && v_ent == part) return fmt; /* Forced partition order (regardless of it is valid …
3320 fmt = mbr_pt[i] ? check_fs(fs, mbr_pt[i]) : 3; /* Check if the partition is FAT */
3321 } while (part == 0 && fmt >= 2 && ++i < 4);
3322 return fmt;
3344 UINT fmt; local
[all …]
/fatfs-2.7.6/include/
Dff.h266 BYTE fmt; /* Format option (FM_FAT, FM_FAT32, FM_EXFAT and FM_SFD) */ member