Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/gdb/gdb/
H A Dsparc-stub.c527 int hexValue; in hexToInt() local
533 hexValue = hex(**ptr); in hexToInt()
534 if (hexValue < 0) in hexToInt()
537 *intValue = (*intValue << 4) | hexValue; in hexToInt()
H A Di386-stub.c719 int hexValue; in hexToInt() local
725 hexValue = hex (**ptr); in hexToInt()
726 if (hexValue >= 0) in hexToInt()
728 *intValue = (*intValue << 4) | hexValue; in hexToInt()
/freebsd-12.1/sys/contrib/octeon-sdk/
H A Dcvmx-debug.c575 long hexValue; in cvmx_debug_hexToLong() local
580 hexValue = cvmx_debug_hex(**ptr); in cvmx_debug_hexToLong()
581 if (hexValue < 0) in cvmx_debug_hexToLong()
584 *intValue = (*intValue << 4) | hexValue; in cvmx_debug_hexToLong()