/device/soc/winnermicro/wm800/board/platform/common/utils/ |
D | utils.c | 287 int hex; in atohex() local 289 hex = -1; in atohex() 292 hex = ch - '0'; in atohex() 294 hex = ch - 'a' + 0xa; in atohex() 296 hex = ch - 'A' + 0xa; in atohex() 299 return hex; in atohex() 302 int strtohex(u32 *hex, char *str) in strtohex() argument 324 *hex = dd; in strtohex() 338 int hex = atohex(*str_tmp++); in strtohexarray() local 339 if (hex < 0) { in strtohexarray() [all …]
|
/device/soc/beken/bk7235/liteos_m/bk_sdk_armino/components/bk_cli/ |
D | cli_reg.c | 60 static int hex2byte(const char *hex) in hex2byte() argument 63 a = hex2num(*hex++); in hex2byte() 66 b = hex2num(*hex++); in hex2byte() 80 static int cli_hexstr2bin(const char *hex, u8 *buf, size_t len) in cli_hexstr2bin() argument 84 const char *ipos = hex; in cli_hexstr2bin()
|
D | cli.h | 120 extern int hexstr2bin(const char *hex, u8 *buf, size_t len);
|
/device/board/hisilicon/hispark_taurus/uboot/secureboot_release/ddr_init/drv/cmd_bin/ |
D | ddr_training_uart.c | 45 void uart_early_put_hex(const unsigned int hex) in uart_early_put_hex() argument 51 c = (hex >> (unsigned int)i) & 0x0F; in uart_early_put_hex()
|
/device/soc/rockchip/rk2206/sdk_liteos/image/ |
D | Makefile | 35 rm -rf $(BUILD_DIR)/$(TARGET).hex 36 $(HEX) $(BUILD_DIR)/$(TARGET).elf $(BUILD_DIR)/$(TARGET).hex
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/tools/efuse_tool/ |
D | efuse_cfg_gen.py | 28 return ' '.join([hex(ord(c)).replace('0x', '') for c in s]) 32 c = bytes.hex()
|
/device/soc/chipsea/cst85/ |
D | Makefile | 84 all: $(BUILD_DIR)/$(TARGET).elf $(BUILD_DIR)/$(TARGET).hex $(BUILD_DIR)/$(TARGET).bin 94 $(BUILD_DIR)/%.hex: $(BUILD_DIR)/%.elf | $(BUILD_DIR)
|
/device/board/openvalley/niobeu4/liteos_m/hals/drivers/wifi_lite/ |
D | esp_wifi_wpa.c | 110 int hexstr2bin(const char *hex, unsigned char *buf, size_t len) in hexstr2bin() argument 115 unsigned char c = hex[i]; in hexstr2bin()
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/components/at/src/ |
D | at.c | 341 int at_hex2byte(const char *hex) in at_hex2byte() argument 344 a = at_hex2num(*hex++); in at_hex2byte() 348 b = at_hex2num(*hex++); in at_hex2byte() 363 int at_hexstr2bin(const char *hex, hi_u8 *buf, size_t len) in at_hexstr2bin() argument 366 const char *ipos = hex; in at_hexstr2bin()
|
/device/board/talkweb/niobe407/liteos_m/bootloader/ |
D | Makefile | 140 all: $(BUILD_DIR)/$(TARGET).elf $(BUILD_DIR)/$(TARGET).hex $(BUILD_DIR)/$(TARGET).bin 163 $(BUILD_DIR)/%.hex: $(BUILD_DIR)/%.elf | $(BUILD_DIR)
|
/device/board/hisilicon/hispark_aries/uboot/secureboot_release/ddr_init/drv/ |
D | ddr_training_boot.c | 23 extern void uart_early_put_hex(int hex);
|
/device/board/hisilicon/hispark_taurus/uboot/secureboot_release/ddr_init/drv/ |
D | ddr_training_boot.c | 23 extern void uart_early_put_hex(int hex);
|
/device/soc/winnermicro/wm800/board/platform/inc/ |
D | utils.h | 38 int strtohex(u32 *hex, char *str);
|
/device/soc/chipsea/cst85/liteos_m/sdk/modules/wifi/console/ |
D | wifi_host_console.c | 893 long int hex = strtol(ptr, &next, 16); in fhost_nw_parse_mac_addr() local 894 if (((unsigned)hex > 255) || ((hex == 0) && (next == ptr)) || in fhost_nw_parse_mac_addr() 899 ((uint8_t *)addr)[i] = (uint8_t)hex; in fhost_nw_parse_mac_addr()
|
/device/board/hisilicon/hispark_taurus/uboot/secureboot_release/ddr_init/boot/ |
D | uart.S | 63 @ void uart_early_put_hex(int hex);
|
/device/board/hisilicon/hispark_aries/uboot/secureboot_release/ddr_init/boot/ |
D | uart.S | 63 @ void uart_early_put_hex(int hex);
|
/device/soc/bestechnic/ |
D | .gitignore | 78 *.hex
|
/device/soc/winnermicro/wm800/board/src/bt/blehost/nimble/host/mesh/src/ |
D | glue.c | 44 static const char hex[] = "0123456789abcdef"; in bt_hex() local 55 str[i * 2] = hex[b[i] >> 4]; // 2:byte alignment, 4:byte alignment in bt_hex() 56 str[i * 2 + 1] = hex[b[i] & 0xf]; // 2:byte alignment in bt_hex()
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/build/win_scripts/tools/nvtool/ |
D | build_nv.py | 124 src_bin = src_bin_dic[hex(nv_id)] 319 str_id=hex(int_id) 473 str_id=hex(int_id)
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/tools/nvtool/ |
D | build_nv.py | 124 src_bin = src_bin_dic[hex(nv_id)] 319 str_id=hex(int_id) 473 str_id=hex(int_id)
|
/device/soc/esp/esp32/components/app_update/ |
D | Kconfig.projbuild | 44 …At startup, the app will read this many hex characters from the embedded APP ELF SHA-256 hash value
|
/device/soc/winnermicro/tools/ |
D | wm_tool.c | 2979 int hex; 2981 hex = -1; 2984 hex = ch - '0'; 2986 hex = ch - 'a' + 0xa; 2988 hex = ch - 'A' + 0xa; 2991 return hex; 2996 int hex; 3003 hex = wm_tool_char_to_hex(*str++); 3004 if (hex < 0) { 3007 tmp = (hex << 4) & 0xf0; [all …]
|
/device/board/hisilicon/hispark_aries/uboot/secureboot_release/ |
D | create_secure_boot.sh | 245 openssl dgst -sha256 -r -hex rsa2048pem/rsa_pub_2048.bin >rsa2048pem/rsa_pub_2048_sha256.txt 439 openssl dgst -sha256 -r -hex rsa4096pem/rsa_pub_4096.bin >rsa4096pem/rsa_pub_4096_sha256.txt
|
/device/board/isoftstone/zhiyuan/kernel/driver/drivers/net/wireless/bcmdhd/ |
D | wl_android.c | 2944 char hex[] = "XX"; in wl_android_set_ibss_beacon_ouidata() local 2972 hex[0] = *pcmd++; in wl_android_set_ibss_beacon_ouidata() 2973 hex[1] = *pcmd++; in wl_android_set_ibss_beacon_ouidata() 2974 ie_buf[idx] = (uint8)simple_strtoul(hex, NULL, 16); in wl_android_set_ibss_beacon_ouidata() 2978 hex[0] = *pcmd++; in wl_android_set_ibss_beacon_ouidata() 2979 hex[1] = *pcmd++; in wl_android_set_ibss_beacon_ouidata() 2980 ie_buf[idx++] = (uint8)simple_strtoul(hex, NULL, 16); in wl_android_set_ibss_beacon_ouidata() 3072 char hex[] = "XX"; in wl_android_set_roampref() local 3099 hex[0] = *pcmd++; in wl_android_set_roampref() 3100 hex[1] = *pcmd++; in wl_android_set_roampref() [all …]
|
/device/board/hisilicon/hispark_taurus/uboot/secureboot_release/ |
D | create_secure_boot.sh | 287 openssl dgst -sha256 -r -hex rsa2048pem/rsa_pub_2048.bin >rsa2048pem/rsa_pub_2048_sha256.txt 486 openssl dgst -sha256 -r -hex rsa4096pem/rsa_pub_4096.bin >rsa4096pem/rsa_pub_4096_sha256.txt
|