Home
last modified time | relevance | path

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

/freebsd/usr.bin/sed/
H A Dcompile.c421 int hexlen; in compile_delimited() local
466 if (dohex(&p[2], d, &hexlen)) { in compile_delimited()
468 p += hexlen + 2; in compile_delimited()
490 int c, d, hexlen; in compile_ccl() local
519 if (dohex(&s[2], t, &hexlen)) in compile_ccl()
520 s += hexlen + 1; in compile_ccl()
562 int asize, hexlen, size; in compile_subst() local
636 if (dohex(&p[1], p, &hexlen)) { in compile_subst()
638 hexlen); in compile_subst()
/freebsd/contrib/wpa/wpa_supplicant/
H A Dwpas_glue.c1268 size_t hexlen; in wpa_supplicant_fils_hlp_rx() local
1270 hexlen = pkt_len * 2 + 1; in wpa_supplicant_fils_hlp_rx()
1271 hex = os_malloc(hexlen); in wpa_supplicant_fils_hlp_rx()
1274 wpa_snprintf_hex(hex, hexlen, pkt, pkt_len); in wpa_supplicant_fils_hlp_rx()
H A Ddpp_supplicant.c1696 size_t hexlen; in wpas_dpp_handle_config_obj() local
1698 hexlen = 2 * wpabuf_len(conf->c_sign_key) + 1; in wpas_dpp_handle_config_obj()
1699 hex = os_malloc(hexlen); in wpas_dpp_handle_config_obj()
1701 wpa_snprintf_hex(hex, hexlen, in wpas_dpp_handle_config_obj()
1711 size_t hexlen; in wpas_dpp_handle_config_obj() local
1713 hexlen = 2 * wpabuf_len(conf->pp_key) + 1; in wpas_dpp_handle_config_obj()
1714 hex = os_malloc(hexlen); in wpas_dpp_handle_config_obj()
1716 wpa_snprintf_hex(hex, hexlen, in wpas_dpp_handle_config_obj()
1725 size_t hexlen; in wpas_dpp_handle_config_obj() local
1727 hexlen = 2 * wpabuf_len(auth->net_access_key) + 1; in wpas_dpp_handle_config_obj()
[all …]
/freebsd/sbin/sysctl/
H A Dsysctl.c1072 int i, hexlen, sign, ctltype; in show_var() local
1227 hexlen = 2 + (intlen * CHAR_BIT + 3) / 4; in show_var()
1264 printf("%#0*jx", hexlen, umv); in show_var()
/freebsd/contrib/wpa/src/ap/
H A Ddpp_hostapd.c1175 size_t hexlen; in hostapd_dpp_handle_config_obj() local
1177 hexlen = 2 * wpabuf_len(conf->c_sign_key) + 1; in hostapd_dpp_handle_config_obj()
1178 hex = os_malloc(hexlen); in hostapd_dpp_handle_config_obj()
1180 wpa_snprintf_hex(hex, hexlen, in hostapd_dpp_handle_config_obj()
1190 size_t hexlen; in hostapd_dpp_handle_config_obj() local
1192 hexlen = 2 * wpabuf_len(auth->net_access_key) + 1; in hostapd_dpp_handle_config_obj()
1193 hex = os_malloc(hexlen); in hostapd_dpp_handle_config_obj()
1195 wpa_snprintf_hex(hex, hexlen, in hostapd_dpp_handle_config_obj()
/freebsd/sys/contrib/openzfs/lib/libzfs/
H A Dlibzfs_crypto.c152 hex_key_to_raw(char *hex, int hexlen, uint8_t *out) in hex_key_to_raw() argument
157 for (i = 0; i < hexlen; i += 2) { in hex_key_to_raw()
/freebsd/sys/kern/
H A Dkern_sysctl.c2692 int sign, ctltype, hexlen, xflag, error; in sysctl_old_ddb() local
2734 hexlen = 2 + (intlen * CHAR_BIT + 3) / 4; in sysctl_old_ddb()
2772 db_printf("%#0*jx", hexlen, umv); in sysctl_old_ddb()