Home
last modified time | relevance | path

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

/fatfs-2.7.6/include/
Dff.h330 FRESULT f_expand (FIL* fp, FSIZE_t fsz, BYTE opt); /* Allocate a contiguous block to the file */
/fatfs-2.7.6/
Dff.c5493 FSIZE_t fsz, /* File size to be expanded to */ argument
5504 if (fsz == 0 || fp->obj.objsize != 0 || !(fp->flag & FA_WRITE)) LEAVE_FF(fs, FR_DENIED);
5506 …if (fs->fs_type != FS_EXFAT && fsz >= 0x100000000) LEAVE_FF(fs, FR_DENIED); /* Check if in size li…
5509 tcl = (DWORD)(fsz / n) + ((fsz & (n - 1)) ? 1 : 0); /* Number of clusters required */
5559 fp->obj.objsize = fsz;