hex
local unsigned char *h2b(const char *hex, unsigned *len)
in = malloc((strlen(hex) + 1) >> 1);
if (*hex >= '0' && *hex <= '9')
val = (val << 4) + *hex - '0';
else if (*hex >= 'A' && *hex <= 'F')
val = (val << 4) + *hex - 'A' + 10;
else if (*hex >= 'a' && *hex <= 'f')
val = (val << 4) + *hex - 'a' + 10;
} while (*hex++); /* go through the loop with the terminating null */
local void inf(char *hex, char *what, unsigned step, int win, unsigned len,
in = h2b(hex, &have); assert(in != NULL);
local int try(char *hex, char *id, int err)
in = h2b(hex, &len);
eay_hex2asn1dn(const char *hex, int len)
len = strlen(hex);
if (BN_hex2bn(&bn, hex) != len) {
static const char hex[] = "0123456789abcdef";
buf[i + i] = hex[s->pf_chksum[i] >> 4];
buf[i + i + 1] = hex[s->pf_chksum[i] & 0x0f];
static const char hex[]="0123456789abcdef";
buf[i+i] = hex[(u_int32_t)digest[i] >> 4];
buf[i+i+1] = hex[digest[i] & 0x0f];
static const char hex[]="0123456789abcdef";
buf[i+i] = hex[(u_int32_t)digest[i] >> 4];
buf[i+i+1] = hex[digest[i] & 0x0f];
goto hex;
hex:
goto hex;
hex: _uquad = UARG();
const wchar_t hex[] = L"0123456789ABCDEF";
h = wcschr(hex, *p++);
c = (c << 4) | ((int)(h - hex));
int hex = 0;
hex = 1;
if (!hex) {
const char *hex = "0123456789abcdef";
*s++ = hex[u & 0xfu];
const char hex[] = "0123456789ABCDEF";
msg[i*3] = hex[v];
msg[i*3+1] = hex[v];
unsigned int u, l, hex;
hex = (u < '9') ? l : l + 9;
ether[i] = ((u < '9') ? l : l + 9) | (hex << 4);
unsigned int u, l, hex;
hex = (u < '9') ? l : l + 9;
ether[i] = ((u < '9') ? l : l + 9) | (hex << 4);
int m, d, p, f, hex = 0, curdiff;
hex = 0x4000 + (d << 7) + m;
hex = 0x4800 + (d << 7) + m;
hex = 0x5000 + (d << 7) + m;
hex = 0x6000 + (d << 7) + m;
*pll = hex;
*pll = hex;
char hex[9*sizeof(PE->CapabilityStructure)/4];
snprintf(hex + 9*i, sizeof(hex) - 9*i, "%08"PRIx32" ",
hex[sizeof(hex) - 1] = '\0';
ctx, hex);
char hex[9*sizeof(PE->AERInfo)/4];
snprintf(hex + 9*i, sizeof(hex) - 9*i, "%08"PRIx32" ",
hex[sizeof(hex) - 1] = '\0';
device_printf(sc->sc_dev, "%s: AERInfo={%s}\n", ctx, hex);
char hex[3];
(void)memcpy(hex, ptr, 2);
hex[2] = '\0';
if (HEXCHAR(hex[0]) == 0 || HEXCHAR(hex[1]) == 0)
bin[i] = strtoul(hex, NULL, 16) & 0xFF;
len = hex(line + 2, 2);
sum += hex(p, 2);
addr = hex(line + 8, 4);
data = hex(p, 4);
goto hex;
hex: _uquad = UARG();
char *hex = gethexdump(buf, size);
log(LOG_DEBUG, "%s: %s\n", func, hex);
puthexdump(hex, buf, size);
char *hex = gethexdump(hash, size);
log(LOG_DEBUG, "%s: %s: %s\n", func, name, hex);
puthexdump(hex, hash, size);
char *hex = gethexdump(pubkey, pubkey_len);
pubkey, pubkey_len, hex);
puthexdump(hex, pubkey, pubkey_len);
char *hex = gethexdump(privkey, privkey_len);
privkey, privkey_len, hex);
puthexdump(hex, privkey, privkey_len);
double hex = 0x1.0p34;
pf("%s %a\n", "hex", hex);
const char hex[] = "0123456789abcdef";
bp[(l ^ bswap) * bsize] = hex[c >> 4];
bp[(l ^ bswap) * bsize + 1] = hex[c & 0xf];
_qp_cfromhex(char const *hex)
if ((i1 = (unsigned char)hex[0] - '0') >= __arraycount(atoi16) ||
(i2 = (unsigned char)hex[1] - '0') >= __arraycount(atoi16))