Home
last modified time | relevance | path

Searched refs:hexValue (Results 1 – 2 of 2) sorted by relevance

/openbmc/u-boot/common/
H A Dkgdb.c163 int hexValue; in hex2mem() local
176 hexValue = hex(*tmp_hex--); in hex2mem()
177 if (hexValue < 0) in hex2mem()
179 *tmp_raw = hexValue; in hex2mem()
180 hexValue = hex(*tmp_hex--); in hex2mem()
181 if (hexValue < 0) in hex2mem()
183 *tmp_raw |= hexValue << 4; in hex2mem()
203 int hexValue; in hexToInt() local
209 hexValue = hex(**ptr); in hexToInt()
210 if (hexValue < 0) in hexToInt()
[all …]
/openbmc/qemu/qga/
H A Dcommands-linux.c2097 static char *hexToIPAddress(const void *hexValue, int is_ipv6) in hexToIPAddress() argument
2102 const char *hexStr = (const char *)hexValue; in hexToIPAddress()
2112 unsigned int hexInt = *(unsigned int *)hexValue; in hexToIPAddress()