Home
last modified time | relevance | path

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

/fatfs-2.7.6/include/
Dff.h49 typedef unsigned int UINT; /* int must be 16-bit or 32-bit */
59 typedef unsigned int UINT; /* int must be 16-bit or 32-bit */
198 UINT lockid; /* File lock ID origin from 1 (index of file semaphore table Files[]) */
268 UINT align; /* Data area alignment (sector) */
269 UINT n_root; /* Number of root directory entries */
307 FRESULT f_read (FIL* fp, void* buff, UINT btr, UINT* br); /* Read data from the file */
308 FRESULT f_write (FIL* fp, const void* buff, UINT btw, UINT* bw); /* Write data to the file */
325 FRESULT f_getcwd (TCHAR* buff, UINT len); /* Get current directory */
329 FRESULT f_forward (FIL* fp, UINT(*func)(const BYTE*,UINT), UINT btf, UINT* bf); /* Forward data to …
332 FRESULT f_mkfs (const TCHAR* path, const MKFS_PARM* opt, void* work, UINT len); /* Create a FAT vol…
[all …]
Ddiskio.h31 DRESULT disk_read (BYTE pdrv, BYTE* buff, LBA_t sector, UINT count);
32 DRESULT disk_write (BYTE pdrv, const BYTE* buff, LBA_t sector, UINT count);
/fatfs-2.7.6/
Dff.c52 #define IsTerminator(c) ((UINT)(c) < (FF_USE_LFN ? ' ' : '!'))
263 #define SS(fs) ((UINT)FF_MAX_SS) /* Fixed sector size */
801 static UINT put_utf ( /* Returns number of encoding units written (0:buffer overflow or wrong encod… in put_utf()
804 UINT szb /* Size of the buffer */ in put_utf()
922 UINT i, be; in chk_lock()
946 UINT i; in enq_lock()
953 static UINT inc_lock ( /* Increment object open counter and returns its index (0:Internal error) */ in inc_lock()
958 UINT i; in inc_lock()
985 UINT i /* Semaphore index (1..) */ in dec_lock()
1010 UINT i; in clear_lock()
[all …]
Dzfs_diskio.c69 DRESULT disk_read(BYTE pdrv, BYTE *buff, DWORD sector, UINT count) in disk_read()
84 DRESULT disk_write(BYTE pdrv, const BYTE *buff, DWORD sector, UINT count) in disk_write()
Ddiskio.c103 UINT count /* Number of sectors to read */ in disk_read()
153 UINT count /* Number of sectors to write */ in disk_write()
/fatfs-2.7.6/option/
Dffunicode.c15282 UINT i = 0, n, li, hi; in ff_uni2oem()
15318 UINT i = 0, n, li, hi; in ff_oem2uni()
15365 UINT i, n, li, hi; in ff_uni2oem()
15417 UINT i, n, li, hi; in ff_oem2uni()
Dffsystem.c17 UINT msize /* Number of bytes to allocate */ in ff_memalloc()