Lines Matching defs:hex
171 const uint8_t hex[] = "0123456789ABCDEF";
191 *result++ = hex[(*data & 0xf0) >> 4];
192 *result++ = hex[*data & 0x0f];
413 const char hex[] = "0123456789ABCDEF";
425 *p++ = hex[(addr->addr.u8[i] & 0xf0) >> 4];
426 *p++ = hex[(addr->addr.u8[i] & 0x0f)];
427 *p++ = hex[(addr->addr.u8[i+1] & 0xf0) >> 4];
428 *p++ = hex[(addr->addr.u8[i+1] & 0x0f)];
986 * Output hex dump of binary data as a continuous entry
1006 * hex value of the character output above to help binary debugging