/device/board/hisilicon/hispark_taurus/uboot/secureboot_release/ddr_init/drv/cmd_bin/ |
H A 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/ |
H A D | Makefile | 34 @echo "Create $(BUILD_DIR)/$(TARGET).hex" 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/ |
H A D | efuse_cfg_gen.py | 28 return ' '.join([hex(ord(c)).replace('0x', '') for c in s])
32 c = bytes.hex()
35 c = bytes.encode('hex')
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/components/at/src/ |
H A 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() 356 * at_hexstr2bin - Convert ASCII hex string into binary data 357 * @hex: ASCII hex string (e.g., "01ab") 359 * @len: Length of the text to convert in bytes (of buf); hex will be double 361 * Returns: 0 on success, -1 on failure (invalid hex string) 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() [all...] |
/device/board/hisilicon/hispark_aries/uboot/secureboot_release/ddr_init/drv/ |
H A D | ddr_training_boot.c | 23 extern void uart_early_put_hex(int hex);
|
H A D | ddr_training_impl.h | 356 extern void uart_early_put_hex(int hex);
|
/device/board/hisilicon/hispark_taurus/uboot/secureboot_release/ddr_init/drv/ |
H A D | ddr_training_boot.c | 23 extern void uart_early_put_hex(int hex);
|
H A D | ddr_training_impl.h | 357 extern void uart_early_put_hex(int hex);
|
/device/board/hisilicon/hispark_aries/uboot/secureboot_release/ddr_init/boot/ |
H A D | uart.S | 63 @ void uart_early_put_hex(int hex);
|
/device/board/hisilicon/hispark_taurus/uboot/secureboot_release/ddr_init/boot/ |
H A D | uart.S | 63 @ void uart_early_put_hex(int hex);
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/build/win_scripts/tools/nvtool/ |
H A 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)
540 #cmd_line = (os.path.join(nv_bin_dir, ''.join([hex(SEC_NV_ID),'.bin'])))
|
/device/soc/hisilicon/hi3861v100/sdk_liteos/tools/nvtool/ |
H A 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)
540 #cmd_line = (os.path.join(nv_bin_dir, ''.join([hex(SEC_NV_ID),'.bin'])))
|
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/ |
H A D | wl_android.c | 3251 char hex[] = "XX"; in wl_android_set_ibss_beacon_ouidata() local 3278 hex[0] = *pcmd++; in wl_android_set_ibss_beacon_ouidata() 3279 hex[1] = *pcmd++; in wl_android_set_ibss_beacon_ouidata() 3280 ie_buf[idx] = (uint8)simple_strtoul(hex, NULL, 16); in wl_android_set_ibss_beacon_ouidata() 3284 hex[0] = *pcmd++; in wl_android_set_ibss_beacon_ouidata() 3285 hex[1] = *pcmd++; in wl_android_set_ibss_beacon_ouidata() 3286 ie_buf[idx++] = (uint8)simple_strtoul(hex, NULL, 16); in wl_android_set_ibss_beacon_ouidata() 3376 char hex[] = "XX"; in wl_android_set_roampref() local 3403 hex[0] = *pcmd++; in wl_android_set_roampref() 3404 hex[ in wl_android_set_roampref() [all...] |
H A D | bcmutils.c | 240 /* pretty hex print a pkt buffer chain */ 1600 static const char hex[] = in bcm_ether_ntoa() local 1610 *p++ = hex[(*octet >> 4) & 0xf]; in bcm_ether_ntoa() 1611 *p++ = hex[*octet & 0xf]; in bcm_ether_ntoa() 3293 /* print bytes formatted as hex to a string. return the resulting string length */ 3308 /* pretty hex print a contiguous buffer */
|
H A D | wl_android_ext.c | 1501 char hex[] = "XX"; in wl_ext_parse_wep() local 1528 strncpy(hex, keystr, 2); in wl_ext_parse_wep() 1529 *data++ = (char) strtoul(hex, NULL, 16); in wl_ext_parse_wep()
|
/device/board/hisilicon/hispark_taurus/uboot/secureboot_release/ |
H A 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
|
/device/board/hisilicon/hispark_aries/uboot/secureboot_release/ |
H A 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/soc/hisilicon/hi3861v100/sdk_liteos/build/scripts/ |
H A D | make_upg_file.py | 294 second_key = vk.to_string().hex()
|