Home
last modified time | relevance | path

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

/freebsd-14-stable/usr.bin/sed/
HDcompile.c424 int hexlen; in compile_delimited() local
469 if (dohex(&p[2], d, &hexlen)) { in compile_delimited()
471 p += hexlen + 2; in compile_delimited()
493 int c, d, hexlen; in compile_ccl() local
522 if (dohex(&s[2], t, &hexlen)) in compile_ccl()
523 s += hexlen + 1; in compile_ccl()
565 int asize, hexlen, size; in compile_subst() local
639 if (dohex(&p[1], p, &hexlen)) { in compile_subst()
641 hexlen); in compile_subst()
/freebsd-14-stable/contrib/wpa/wpa_supplicant/
HDwpas_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()
HDdpp_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-14-stable/sbin/sysctl/
HDsysctl.c1073 int i, hexlen, sign, ctltype; in show_var() local
1228 hexlen = 2 + (intlen * CHAR_BIT + 3) / 4; in show_var()
1265 printf("%#0*jx", hexlen, umv); in show_var()
/freebsd-14-stable/contrib/wpa/src/ap/
HDdpp_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-14-stable/sys/contrib/openzfs/lib/libzfs/
HDlibzfs_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-14-stable/sys/kern/
HDkern_sysctl.c2592 int sign, ctltype, hexlen, xflag, error; in sysctl_old_ddb() local
2634 hexlen = 2 + (intlen * CHAR_BIT + 3) / 4; in sysctl_old_ddb()
2672 db_printf("%#0*jx", hexlen, umv); in sysctl_old_ddb()