Lines Matching refs:fmt

3352 	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
3457 fmt = find_volume(fs, LD2PT(vol));
3458 if (fmt == 4) return FR_DISK_ERR; /* An error occurred in the disk I/O layer */
3459 if (fmt >= 2) return FR_NO_FILESYSTEM; /* No FAT volume is found */
3465 if (fmt == 1) {
3525 fmt = FS_EXFAT; /* FAT sub-type */
3556 fmt = 0;
3557 if (nclst <= MAX_FAT32) fmt = FS_FAT32;
3558 if (nclst <= MAX_FAT16) fmt = FS_FAT16;
3559 if (nclst <= MAX_FAT12) fmt = FS_FAT12;
3560 if (fmt == 0) return FR_NO_FILESYSTEM;
3567 if (fmt == FS_FAT32) {
3575 szbfat = (fmt == FS_FAT16) ? /* (Needed FAT size) */
3584 if (fmt == FS_FAT32
3604 fs->fs_type = (BYTE)fmt;/* FAT sub-type (the filesystem object gets valid) */
5949 fsopt = opt->fmt & (FM_ANY | FM_SFD);
6841 TCHAR fmt /* Notation */ argument
6864 if (fmt == 'f') { /* Decimal notation? */
6890 if (fmt != 'f') { /* Put exponent if needed */
6891 *buf++ = (char)fmt;
6916 const TCHAR* fmt, /* Pointer to the format string */ argument
6937 va_start(arp, fmt);
6940 chr = *fmt++;
6947 chr = *fmt++;
6949 pad = '0'; chr = *fmt++;
6951 flag = 2; chr = *fmt++;
6955 chr = *fmt++;
6959 chr = *fmt++;
6963 chr = *fmt++;
6966 chr = *fmt++;
6971 chr = *fmt++;
6976 flag |= 4; chr = *fmt++;
6979 flag |= 8; chr = *fmt++;