Home
last modified time | relevance | path

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

/f-stack/tools/sysctl/
H A Dsysctl.c1140 int i, hexlen, sign, ctltype; local
1302 hexlen = 2 + (intlen * CHAR_BIT + 3) / 4;
1339 printf("%#0*jx", hexlen, umv);
/f-stack/freebsd/contrib/openzfs/lib/libzfs/
H A Dlibzfs_crypto.c143 hex_key_to_raw(char *hex, int hexlen, uint8_t *out) in hex_key_to_raw() argument
148 for (i = 0; i < hexlen; i += 2) { in hex_key_to_raw()
/f-stack/freebsd/kern/
H A Dkern_sysctl.c2541 int sign, ctltype, hexlen, xflag, error; in sysctl_old_ddb() local
2583 hexlen = 2 + (intlen * CHAR_BIT + 3) / 4; in sysctl_old_ddb()
2621 db_printf("%#0*jx", hexlen, umv); in sysctl_old_ddb()
/f-stack/dpdk/app/test-pmd/
H A Dcmdline_flow.c6447 unsigned int hexlen = len; in parse_hex() local
6474 hexlen -= 2; in parse_hex()
6476 if (hexlen > length) in parse_hex()
6478 ret = parse_hex_string(str, hex_tmp, &hexlen); in parse_hex()
6482 ret = snprintf(tmp, sizeof(tmp), "%u", hexlen); in parse_hex()
6493 memcpy(buf, hex_tmp, hexlen); in parse_hex()
6494 memset((uint8_t *)buf + hexlen, 0x00, size - hexlen); in parse_hex()
6497 0xff, hexlen); in parse_hex()