Home
last modified time | relevance | path

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

/openbmc/qemu/qga/
H A Dcommands-linux.c2113 unsigned int hex_int = *(unsigned int *)hex_value; in hex_to_ip_address() local
2114 unsigned int byte1 = (hex_int >> 24) & 0xFF; in hex_to_ip_address()
2115 unsigned int byte2 = (hex_int >> 16) & 0xFF; in hex_to_ip_address()
2116 unsigned int byte3 = (hex_int >> 8) & 0xFF; in hex_to_ip_address()
2117 unsigned int byte4 = hex_int & 0xFF; in hex_to_ip_address()