/hal_espressif-3.5.0/components/esp_rom/include/esp32s3/rom/ |
D | tjpgd.h | 27 typedef unsigned char BYTE; typedef 67 BYTE *dptr; /* Current data read ptr */ 68 BYTE *inbuf; /* Bit stream input buffer */ 69 BYTE dmsk; /* Current bit in the current read byte */ 70 BYTE scale; /* Output scaling ratio */ 71 BYTE msx, msy; /* MCU size in unit of block (width, height) */ 72 BYTE qtid[3]; /* Quantization table ID of each component */ 76 BYTE *huffbits[2][2]; /* Huffman bit distribution tables [id][dcac] */ 78 BYTE *huffdata[2][2]; /* Huffman decoded data tables [id][dcac] */ 81 BYTE *mcubuf; /* Working buffer for the MCU */ [all …]
|
/hal_espressif-3.5.0/components/esp_rom/include/esp32/rom/ |
D | tjpgd.h | 27 typedef unsigned char BYTE; typedef 67 BYTE* dptr; /* Current data read ptr */ 68 BYTE* inbuf; /* Bit stream input buffer */ 69 BYTE dmsk; /* Current bit in the current read byte */ 70 BYTE scale; /* Output scaling ratio */ 71 BYTE msx, msy; /* MCU size in unit of block (width, height) */ 72 BYTE qtid[3]; /* Quantization table ID of each component */ 76 BYTE* huffbits[2][2]; /* Huffman bit distribution tables [id][dcac] */ 78 BYTE* huffdata[2][2]; /* Huffman decoded data tables [id][dcac] */ 81 BYTE* mcubuf; /* Working buffer for the MCU */ [all …]
|
/hal_espressif-3.5.0/components/esp_rom/include/esp32c3/rom/ |
D | tjpgd.h | 27 typedef unsigned char BYTE; typedef 67 BYTE *dptr; /* Current data read ptr */ 68 BYTE *inbuf; /* Bit stream input buffer */ 69 BYTE dmsk; /* Current bit in the current read byte */ 70 BYTE scale; /* Output scaling ratio */ 71 BYTE msx, msy; /* MCU size in unit of block (width, height) */ 72 BYTE qtid[3]; /* Quantization table ID of each component */ 76 BYTE *huffbits[2][2]; /* Huffman bit distribution tables [id][dcac] */ 78 BYTE *huffdata[2][2]; /* Huffman decoded data tables [id][dcac] */ 81 BYTE *mcubuf; /* Working buffer for the MCU */ [all …]
|
/hal_espressif-3.5.0/components/esp_rom/include/esp32h2/rom/ |
D | tjpgd.h | 27 typedef unsigned char BYTE; typedef 67 BYTE *dptr; /* Current data read ptr */ 68 BYTE *inbuf; /* Bit stream input buffer */ 69 BYTE dmsk; /* Current bit in the current read byte */ 70 BYTE scale; /* Output scaling ratio */ 71 BYTE msx, msy; /* MCU size in unit of block (width, height) */ 72 BYTE qtid[3]; /* Quantization table ID of each component */ 76 BYTE *huffbits[2][2]; /* Huffman bit distribution tables [id][dcac] */ 78 BYTE *huffdata[2][2]; /* Huffman decoded data tables [id][dcac] */ 81 BYTE *mcubuf; /* Working buffer for the MCU */ [all …]
|
/hal_espressif-3.5.0/components/fatfs/src/ |
D | ff.h | 46 typedef unsigned char BYTE; /* char must be 8-bit */ 54 typedef unsigned char BYTE; /* char must be 8-bit */ 65 BYTE pd; /* Physical drive number */ 66 BYTE pt; /* Partition: 0:Auto detect, 1-4:Forced partition) */ 124 BYTE fs_type; /* Filesystem type (0:not mounted) */ 125 BYTE pdrv; /* Associated physical drive */ 126 BYTE n_fats; /* Number of FATs (1 or 2) */ 127 BYTE wflag; /* win[] flag (b0:dirty) */ 128 BYTE fsi_flag; /* FSINFO flags (b7:disabled, b0:dirty) */ 139 BYTE* dirbuf; /* Directory entry block scratchpad buffer for exFAT */ [all …]
|
D | diskio.h | 13 typedef BYTE DSTATUS; 29 DSTATUS disk_initialize (BYTE pdrv); 30 DSTATUS disk_status (BYTE pdrv); 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); 33 DRESULT disk_ioctl (BYTE pdrv, BYTE cmd, void* buff);
|
D | ff.c | 209 #define ABORT(fs, res) { fp->err = (BYTE)(res); LEAVE_FF(fs, res); } 228 #define LD2PD(vol) (BYTE)(vol) /* Each logical drive is bound to the same physical drive number */ 442 static BYTE CurrVol; /* Current drive */ 479 static const BYTE LfnOfs[] = {1,3,5,7,9,14,16,18,20,22,24,28,30}; /* FAT: Offset of LFN characters … 484 static BYTE DirBuf[MAXDIRB(FF_MAX_LFN)]; /* Directory entry block scratchpad buffer */ 494 #define DEF_NAMBUF WCHAR lbuf[FF_MAX_LFN+1]; BYTE dbuf[MAXDIRB(FF_MAX_LFN)]; /* LFN working buffer… 507 …fn) LEAVE_FF(fs, FR_NOT_ENOUGH_CORE); (fs)->lfnbuf = lfn; (fs)->dirbuf = (BYTE*)(lfn+FF_MAX_LFN+1)… 532 static const BYTE *ExCvt, *DbcTbl; /* Pointer to current SBCS up-case table and DBCS code range tab… 534 static const BYTE Ct437[] = TBL_CT437; 535 static const BYTE Ct720[] = TBL_CT720; [all …]
|
D | diskio.c | 24 BYTE pdrv /* Physical drive nmuber to identify the drive */ in disk_status() 62 BYTE pdrv /* Physical drive nmuber to identify the drive */ in disk_initialize() 100 BYTE pdrv, /* Physical drive nmuber to identify the drive */ in disk_read() 101 BYTE *buff, /* Data buffer to store read data */ in disk_read() 150 BYTE pdrv, /* Physical drive nmuber to identify the drive */ in disk_write() 151 const BYTE *buff, /* Data to be written */ in disk_write() 199 BYTE pdrv, /* Physical drive nmuber (0..) */ in disk_ioctl() 200 BYTE cmd, /* Control code */ in disk_ioctl()
|
D | ffsystem.c | 53 BYTE vol, /* Corresponding volume (logical drive number) */ in ff_cre_syncobj()
|
/hal_espressif-3.5.0/components/fatfs/diskio/ |
D | diskio.c | 28 esp_err_t ff_diskio_get_drive(BYTE* out_pdrv) in ff_diskio_get_drive() 30 BYTE i; in ff_diskio_get_drive() 40 void ff_diskio_register(BYTE pdrv, const ff_diskio_impl_t* discio_impl) in ff_diskio_register() 60 DSTATUS ff_disk_initialize (BYTE pdrv) in ff_disk_initialize() 64 DSTATUS ff_disk_status (BYTE pdrv) in ff_disk_status() 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() 76 DRESULT ff_disk_ioctl (BYTE pdrv, BYTE cmd, void* buff) in ff_disk_ioctl()
|
D | diskio_sdmmc.c | 19 static DSTATUS ff_sdmmc_card_available(BYTE pdrv) in ff_sdmmc_card_available() 36 DSTATUS ff_sdmmc_initialize (BYTE pdrv) in ff_sdmmc_initialize() 41 DSTATUS ff_sdmmc_status (BYTE pdrv) in ff_sdmmc_status() 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() 70 DRESULT ff_sdmmc_ioctl (BYTE pdrv, BYTE cmd, void* buff) in ff_sdmmc_ioctl() 89 void ff_diskio_register_sdmmc(BYTE pdrv, sdmmc_card_t* card) in ff_diskio_register_sdmmc() 102 BYTE ff_diskio_get_pdrv_card(const sdmmc_card_t* card) in ff_diskio_get_pdrv_card()
|
D | diskio_rawflash.c | 28 DSTATUS ff_raw_initialize (BYTE pdrv) in ff_raw_initialize() 33 DSTATUS ff_raw_status (BYTE pdrv) in ff_raw_status() 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() 57 DRESULT ff_raw_ioctl (BYTE pdrv, BYTE cmd, void *buff) in ff_raw_ioctl() 78 esp_err_t ff_diskio_register_raw_partition(BYTE pdrv, const esp_partition_t* part_handle) in ff_diskio_register_raw_partition() 97 BYTE ff_diskio_get_pdrv_raw(const esp_partition_t* part_handle) in ff_diskio_get_pdrv_raw()
|
D | diskio_wl.c | 31 DSTATUS ff_wl_initialize (BYTE pdrv) in ff_wl_initialize() 36 DSTATUS ff_wl_status (BYTE pdrv) in ff_wl_status() 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() 72 DRESULT ff_wl_ioctl (BYTE pdrv, BYTE cmd, void *buff) in ff_wl_ioctl() 93 esp_err_t ff_diskio_register_wl_partition(BYTE pdrv, wl_handle_t flash_handle) in ff_diskio_register_wl_partition() 110 BYTE ff_diskio_get_pdrv_wl(wl_handle_t flash_handle) in ff_diskio_get_pdrv_wl()
|
D | diskio_impl.h | 23 typedef unsigned char BYTE; typedef 54 void ff_diskio_register(BYTE pdrv, const ff_diskio_impl_t* discio_impl); 67 esp_err_t ff_diskio_get_drive(BYTE* out_pdrv);
|
D | diskio_sdmmc.h | 38 BYTE ff_diskio_get_pdrv_card(const sdmmc_card_t* card);
|
/hal_espressif-3.5.0/examples/peripherals/usb/host/msc/components/msc/src/ |
D | diskio_usb.c | 20 static DSTATUS usb_disk_initialize (BYTE pdrv) in usb_disk_initialize() 25 static DSTATUS usb_disk_status (BYTE pdrv) in usb_disk_status() 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() 73 static DRESULT usb_disk_ioctl (BYTE pdrv, BYTE cmd, void *buff) in usb_disk_ioctl() 95 void ff_diskio_register_msc(BYTE pdrv, usb_disk_t *disk) in ff_diskio_register_msc() 110 BYTE ff_diskio_get_pdrv_disk(const usb_disk_t *disk) in ff_diskio_get_pdrv_disk()
|
D | msc_host_vfs.c | 65 BYTE pdrv; in msc_host_vfs_register()
|
/hal_espressif-3.5.0/components/fatfs/vfs/ |
D | vfs_fat_sdmmc.c | 46 const char *drv, sdmmc_card_t *card, BYTE pdrv); 49 BYTE *out_pdrv, in mount_prepare_mem() 58 BYTE pdrv = FF_DRV_NOT_USED; in mount_prepare_mem() 143 const char *drv, sdmmc_card_t *card, BYTE pdrv) in partition_card() 203 BYTE pdrv = FF_DRV_NOT_USED; in esp_vfs_fat_sdmmc_mount() 287 BYTE pdrv = FF_DRV_NOT_USED; in esp_vfs_fat_sdspi_mount() 367 BYTE pdrv = ff_diskio_get_pdrv_card(card); in unmount_card_core()
|
D | vfs_fat_spiflash.c | 53 BYTE pdrv = 0xFF; in esp_vfs_fat_spiflash_mount() 120 BYTE pdrv = ff_diskio_get_pdrv_wl(wl_handle); in esp_vfs_fat_spiflash_unmount() 150 BYTE pdrv = 0xFF; in esp_vfs_fat_rawflash_mount() 199 BYTE pdrv = ff_diskio_get_pdrv_raw(data_partition); in esp_vfs_fat_rawflash_unmount()
|
/hal_espressif-3.5.0/components/fatfs/test_fatfs_host/ |
D | test_fatfs.cpp | 19 BYTE pdrv; 42 BYTE work_area[FF_MAX_SS];
|
/hal_espressif-3.5.0/components/fatfs/port/linux/ |
D | ffsystem.c | 25 int ff_cre_syncobj(BYTE vol, FF_SYNC_t* sobj) in ff_cre_syncobj()
|
/hal_espressif-3.5.0/components/fatfs/port/freertos/ |
D | ffsystem.c | 54 BYTE vol, /* Corresponding volume (logical drive number) */ in ff_cre_syncobj()
|
/hal_espressif-3.5.0/components/bootloader/subproject/components/micro-ecc/micro-ecc/ |
D | platform-specific.inc | 25 CryptGenRandom(prov, size, (BYTE *)dest);
|