/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/smp/include/ |
D | p_256_multprecision.h | 29 typedef unsigned long DWORD; typedef 39 int multiprecision_compare(DWORD *a, DWORD *b, uint32_t keyLength); 40 int multiprecision_iszero(DWORD *a, uint32_t keyLength); 41 void multiprecision_init(DWORD *c, uint32_t keyLength); 42 void multiprecision_copy(DWORD *c, DWORD *a, uint32_t keyLength); 43 UINT32 multiprecision_dword_bits (DWORD a); 44 UINT32 multiprecision_most_signdwords(DWORD *a, uint32_t keyLength); 45 UINT32 multiprecision_most_signbits(DWORD *a, uint32_t keyLength); 46 void multiprecision_inv_mod(DWORD *aminus, DWORD *a, uint32_t keyLength); 47 DWORD multiprecision_add(DWORD *c, DWORD *a, DWORD *b, uint32_t keyLength); // c=a+b [all …]
|
D | p_256_ecc_pp.h | 30 typedef unsigned long DWORD; typedef 33 DWORD x[KEY_LENGTH_DWORDS_P256]; 34 DWORD y[KEY_LENGTH_DWORDS_P256]; 35 DWORD z[KEY_LENGTH_DWORDS_P256]; 40 DWORD a[KEY_LENGTH_DWORDS_P256]; 41 DWORD b[KEY_LENGTH_DWORDS_P256]; 47 DWORD p[KEY_LENGTH_DWORDS_P256]; 50 DWORD omega[KEY_LENGTH_DWORDS_P256]; 68 void ECC_PointMult_Bin_NAF(Point *q, Point *p, DWORD *n, uint32_t keyLength);
|
/hal_espressif-3.6.0/components/bt/host/bluedroid/stack/smp/ |
D | p_256_multprecision.c | 30 void multiprecision_init(DWORD *c, uint32_t keyLength) in multiprecision_init() 37 void multiprecision_copy(DWORD *c, DWORD *a, uint32_t keyLength) in multiprecision_copy() 44 int multiprecision_compare(DWORD *a, DWORD *b, uint32_t keyLength) in multiprecision_compare() 57 int multiprecision_iszero(DWORD *a, uint32_t keyLength) in multiprecision_iszero() 67 UINT32 multiprecision_dword_bits(DWORD a) in multiprecision_dword_bits() 78 UINT32 multiprecision_most_signdwords(DWORD *a, uint32_t keyLength) in multiprecision_most_signdwords() 88 UINT32 multiprecision_most_signbits(DWORD *a, uint32_t keyLength) in multiprecision_most_signbits() 101 DWORD multiprecision_add(DWORD *c, DWORD *a, DWORD *b, uint32_t keyLength) in multiprecision_add() 103 DWORD carrier; in multiprecision_add() 104 DWORD temp; in multiprecision_add() [all …]
|
D | p_256_ecc_pp.c | 52 DWORD t1[KEY_LENGTH_DWORDS_P256]; in ECC_Double() 53 DWORD t2[KEY_LENGTH_DWORDS_P256]; in ECC_Double() 54 DWORD t3[KEY_LENGTH_DWORDS_P256]; in ECC_Double() 55 DWORD *x1; in ECC_Double() 56 DWORD *x3; in ECC_Double() 57 DWORD *y1; in ECC_Double() 58 DWORD *y3; in ECC_Double() 59 DWORD *z1; in ECC_Double() 60 DWORD *z3; in ECC_Double() 98 DWORD t1[KEY_LENGTH_DWORDS_P256]; in ECC_Add() [all …]
|
D | smp_keys.c | 1089 ECC_PointMult(&public_key, &(curve_p256.G), (DWORD *) private_key, KEY_LENGTH_DWORDS_P256); in smp_process_private_key() 1126 ECC_PointMult(&new_publ_key, &peer_publ_key, (DWORD *) private_key, KEY_LENGTH_DWORDS_P256); in smp_compute_dhkey()
|
/hal_espressif-3.6.0/components/fatfs/src/ |
D | ff.h | 49 typedef uint32_t DWORD; /* 32-bit unsigned integer */ 57 typedef unsigned long DWORD; /* 32-bit unsigned integer */ 93 typedef DWORD TCHAR; 116 typedef DWORD FSIZE_t; 145 DWORD last_clst; /* Last allocated cluster */ 146 DWORD free_clst; /* Number of free clusters */ 149 DWORD cdir; /* Current directory start cluster (0:root) */ 151 DWORD cdc_scl; /* Containing directory start cluster (invalid when cdir is 0) */ 152 DWORD cdc_size; /* b31-b8:Size of containing directory, b7-b0: Chain status */ 153 DWORD cdc_ofs; /* Offset in the containing directory (invalid when cdir is 0) */ [all …]
|
D | ff.c | 249 #define GET_FATTIME() ((DWORD)(FF_NORTC_YEAR - 1980) << 25 | (DWORD)FF_NORTC_MON << 21 | (DWORD)FF_… 262 DWORD clu; /* Object ID 2, containing directory (0:root) */ 263 DWORD ofs; /* Object ID 3, offset in the directory */ 589 static DWORD ld_dword (const BYTE* ptr) /* Load a 4-byte little-endian word */ in ld_dword() 591 DWORD rv; in ld_dword() 624 static void st_dword (BYTE* ptr, DWORD val) /* Store a 4-byte word in little-endian */ in st_dword() 745 static DWORD tchar2uni ( /* Returns character in UTF-16 encoding (>=0x10000 on double encoding unit… in tchar2uni() 749 DWORD uc; in tchar2uni() 819 DWORD chr, /* UTF-16 encoded character (Double encoding unit char if >=0x10000) */ in put_utf() 840 DWORD hc; in put_utf() [all …]
|
D | ffunicode.c | 15227 DWORD uni, /* UTF-16 encoded character to be converted */ in ff_uni2oem() 15280 DWORD uni, /* UTF-16 encoded character to be converted */ in ff_uni2oem() 15363 DWORD uni, /* UTF-16 encoded character to be converted */ in ff_uni2oem() 15468 DWORD ff_wtoupper ( /* Returns up-converted code point */ in ff_wtoupper() 15469 DWORD uni /* Unicode code point to be up-converted */ in ff_wtoupper()
|
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 | diskio.c | 102 DWORD sector, /* Start sector in LBA */ in disk_read() 152 DWORD sector, /* Start sector in LBA */ in disk_write()
|
/hal_espressif-3.6.0/components/bt/test/ |
D | test_smp.c | 33 typedef unsigned long DWORD; typedef 37 DWORD x[KEY_LENGTH_DWORDS_P256]; 38 DWORD y[KEY_LENGTH_DWORDS_P256]; 39 DWORD z[KEY_LENGTH_DWORDS_P256]; 44 DWORD a[KEY_LENGTH_DWORDS_P256]; 45 DWORD b[KEY_LENGTH_DWORDS_P256]; 51 DWORD p[KEY_LENGTH_DWORDS_P256]; 54 DWORD omega[KEY_LENGTH_DWORDS_P256]; 61 extern void ECC_PointMult_Bin_NAF(Point *q, Point *p, DWORD *n, uint32_t keyLength); 87 DWORD private_key[KEY_LENGTH_DWORDS_P256] = {[0 ... (KEY_LENGTH_DWORDS_P256 - 1)] = 0x12345678}; [all …]
|
/hal_espressif-3.6.0/components/fatfs/diskio/ |
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() 81 DWORD get_fattime(void) in get_fattime() 87 return ((DWORD)(year) << 25) in get_fattime() 88 | ((DWORD)(tmr.tm_mon + 1) << 21) in get_fattime() 89 | ((DWORD)tmr.tm_mday << 16) in get_fattime()
|
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() 66 *((DWORD *) buff) = part->size / SPI_FLASH_SEC_SIZE; in ff_raw_ioctl()
|
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() 78 *((DWORD*) buff) = card->csd.capacity; in ff_sdmmc_ioctl()
|
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() 81 *((DWORD *) buff) = wl_size(wl_handle) / wl_sector_size(wl_handle); in ff_wl_ioctl()
|
D | diskio_impl.h | 24 typedef uint32_t DWORD; 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() 84 *((DWORD *) buff) = disk->block_count; in usb_disk_ioctl()
|
/hal_espressif-3.6.0/components/esp_rom/include/esp32c3/rom/ |
D | tjpgd.h | 38 typedef unsigned long DWORD; typedef
|
/hal_espressif-3.6.0/components/esp_rom/include/esp32s3/rom/ |
D | tjpgd.h | 38 typedef unsigned long DWORD; typedef
|
/hal_espressif-3.6.0/components/esp_rom/include/esp32/rom/ |
D | tjpgd.h | 38 typedef unsigned long DWORD; typedef
|
/hal_espressif-3.6.0/components/esp_rom/include/esp32h2/rom/ |
D | tjpgd.h | 38 typedef unsigned long DWORD; typedef
|
/hal_espressif-3.6.0/components/fatfs/test_fatfs_host/ |
D | test_fatfs.cpp | 41 DWORD part_list[] = {100, 0, 0, 0};
|
/hal_espressif-3.6.0/components/fatfs/vfs/ |
D | vfs_fat_sdmmc.c | 156 DWORD plist[] = {100, 0, 0, 0}; in partition_card()
|
D | vfs_fat.c | 325 DWORD *clmt_mem = ff_memalloc(sizeof(DWORD) * CONFIG_FATFS_FAST_SEEK_BUFFER_SIZE); in vfs_fat_open()
|
/hal_espressif-3.6.0/components/bt/esp_ble_mesh/mesh_core/bluedroid_host/ |
D | mesh_bearer_adapt.c | 1819 ECC_PointMult(&public_key, &(curve_p256.G), (DWORD *)private_key, KEY_LENGTH_DWORDS_P256); in bt_mesh_pub_key_get() 1859 ECC_PointMult(&new_pub_key, &peer_pub_key, (DWORD *)private_key, KEY_LENGTH_DWORDS_P256); in bt_mesh_dh_key_gen()
|