/hal_espressif-3.6.0/components/esp_rom/include/esp32c3/rom/ |
D | tjpgd.h | 22 typedef unsigned int UINT; typedef 66 UINT dctr; /* Number of bytes available in the input buffer */ 75 UINT width, height; /* Size of the input image (pixel) */ 83 UINT sz_pool; /* Size of momory pool (bytes available) */ 84 UINT (*infunc)(JDEC *, BYTE *, UINT); /* Pointer to jpeg stream input function */ 91 JRESULT jd_prepare (JDEC *, UINT(*)(JDEC *, BYTE *, UINT), void *, UINT, void *); 92 JRESULT jd_decomp (JDEC *, UINT(*)(JDEC *, void *, JRECT *), BYTE);
|
/hal_espressif-3.6.0/components/esp_rom/include/esp32s3/rom/ |
D | tjpgd.h | 22 typedef unsigned int UINT; typedef 66 UINT dctr; /* Number of bytes available in the input buffer */ 75 UINT width, height; /* Size of the input image (pixel) */ 83 UINT sz_pool; /* Size of momory pool (bytes available) */ 84 UINT (*infunc)(JDEC *, BYTE *, UINT); /* Pointer to jpeg stream input function */ 89 JRESULT jd_prepare (JDEC *, UINT(*)(JDEC *, BYTE *, UINT), void *, UINT, void *); 90 JRESULT jd_decomp (JDEC *, UINT(*)(JDEC *, void *, JRECT *), BYTE);
|
/hal_espressif-3.6.0/components/esp_rom/include/esp32/rom/ |
D | tjpgd.h | 22 typedef unsigned int UINT; typedef 66 UINT dctr; /* Number of bytes available in the input buffer */ 75 UINT width, height; /* Size of the input image (pixel) */ 83 UINT sz_pool; /* Size of momory pool (bytes available) */ 84 UINT (*infunc)(JDEC*, BYTE*, UINT);/* Pointer to jpeg stream input function */ 91 JRESULT jd_prepare (JDEC*, UINT(*)(JDEC*,BYTE*,UINT), void*, UINT, void*); 92 JRESULT jd_decomp (JDEC*, UINT(*)(JDEC*,void*,JRECT*), BYTE);
|
/hal_espressif-3.6.0/components/esp_rom/include/esp32h2/rom/ |
D | tjpgd.h | 22 typedef unsigned int UINT; typedef 66 UINT dctr; /* Number of bytes available in the input buffer */ 75 UINT width, height; /* Size of the input image (pixel) */ 83 UINT sz_pool; /* Size of momory pool (bytes available) */ 84 UINT (*infunc)(JDEC *, BYTE *, UINT); /* Pointer to jpeg stream input function */ 91 JRESULT jd_prepare (JDEC *, UINT(*)(JDEC *, BYTE *, UINT), void *, UINT, void *); 92 JRESULT jd_decomp (JDEC *, UINT(*)(JDEC *, void *, JRECT *), BYTE);
|
/hal_espressif-3.6.0/components/fatfs/src/ |
D | ff.h | 45 typedef unsigned int UINT; /* int must be 16-bit or 32-bit */ 53 typedef unsigned int UINT; /* int must be 16-bit or 32-bit */ 188 UINT lockid; /* File lock ID origin from 1 (index of file semaphore table Files[]) */ 285 FRESULT f_read (FIL* fp, void* buff, UINT btr, UINT* br); /* Read data from the file */ 286 FRESULT f_write (FIL* fp, const void* buff, UINT btw, UINT* bw); /* Write data to the file */ 303 FRESULT f_getcwd (TCHAR* buff, UINT len); /* Get current directory */ 307 FRESULT f_forward (FIL* fp, UINT(*func)(const BYTE*,UINT), UINT btf, UINT* bf); /* Forward data to … 310 FRESULT f_mkfs (const TCHAR* path, BYTE opt, DWORD au, void* work, UINT len); /* Create a FAT volum… 349 void* ff_memalloc (UINT msize); /* Allocate memory block */
|
D | ff.c | 238 #define SS(fs) ((UINT)FF_MAX_SS) /* Fixed sector size */ 654 static void mem_cpy (void* dst, const void* src, UINT cnt) in mem_cpy() 668 static void mem_set (void* dst, int val, UINT cnt) in mem_set() 679 static int mem_cmp (const void* dst, const void* src, UINT cnt) /* ZR:same, NZ:different */ in mem_cmp() 821 UINT szb /* Size of the buffer */ in put_utf() 939 UINT i, be; in chk_lock() 963 UINT i; in enq_lock() 970 static UINT inc_lock ( /* Increment object open counter and returns its index (0:Internal error) */ in inc_lock() 975 UINT i; in inc_lock() 1002 UINT i /* Semaphore index (1..) */ in dec_lock() [all …]
|
D | diskio.h | 31 DRESULT disk_read (BYTE pdrv, BYTE* buff, DWORD sector, UINT count); 32 DRESULT disk_write (BYTE pdrv, const BYTE* buff, DWORD sector, UINT count);
|
D | ffunicode.c | 15286 UINT i = 0, n, li, hi; in ff_uni2oem() 15322 UINT i = 0, n, li, hi; in ff_oem2uni() 15369 UINT i, n, li, hi; in ff_uni2oem() 15421 UINT i, n, li, hi; in ff_oem2uni()
|
D | diskio.c | 103 UINT count /* Number of sectors to read */ in disk_read() 153 UINT count /* Number of sectors to write */ in disk_write()
|
D | ffsystem.c | 17 UINT msize /* Number of bytes to allocate */ in ff_memalloc()
|
/hal_espressif-3.6.0/components/fatfs/diskio/ |
D | diskio_rawflash.c | 38 DRESULT ff_raw_read (BYTE pdrv, BYTE *buff, DWORD sector, UINT count) in ff_raw_read() 52 DRESULT ff_raw_write (BYTE pdrv, const BYTE *buff, DWORD sector, UINT count) in ff_raw_write()
|
D | diskio.c | 68 DRESULT ff_disk_read (BYTE pdrv, BYTE* buff, DWORD sector, UINT count) in ff_disk_read() 72 DRESULT ff_disk_write (BYTE pdrv, const BYTE* buff, DWORD sector, UINT count) in ff_disk_write()
|
D | diskio_sdmmc.c | 46 DRESULT ff_sdmmc_read (BYTE pdrv, BYTE* buff, DWORD sector, UINT count) in ff_sdmmc_read() 58 DRESULT ff_sdmmc_write (BYTE pdrv, const BYTE* buff, DWORD sector, UINT count) in ff_sdmmc_write()
|
D | diskio_wl.c | 41 DRESULT ff_wl_read (BYTE pdrv, BYTE *buff, DWORD sector, UINT count) in ff_wl_read() 54 DRESULT ff_wl_write (BYTE pdrv, const BYTE *buff, DWORD sector, UINT count) in ff_wl_write()
|
D | diskio_impl.h | 22 typedef unsigned int UINT; typedef
|
/hal_espressif-3.6.0/examples/peripherals/usb/host/msc/components/msc/src/ |
D | diskio_usb.c | 30 static DRESULT usb_disk_read (BYTE pdrv, BYTE *buff, DWORD sector, UINT count) in usb_disk_read() 52 static DRESULT usb_disk_write (BYTE pdrv, const BYTE *buff, DWORD sector, UINT count) in usb_disk_write()
|
/hal_espressif-3.6.0/components/fatfs/port/linux/ |
D | ffsystem.c | 14 void* ff_memalloc(UINT msize) in ff_memalloc()
|
/hal_espressif-3.6.0/components/fatfs/test_fatfs_host/ |
D | test_fatfs.cpp | 22 UINT bw;
|