/freebsd/sys/contrib/dev/athk/ath10k/ |
H A D | hw.c | 1030 u32 base_len = 0; in ath10k_hw_diag_fast_download() local 1081 base_len = __le32_to_cpu(metadata->length); in ath10k_hw_diag_fast_download() 1085 switch (base_len) { in ath10k_hw_diag_fast_download() 1089 base_len = 0; in ath10k_hw_diag_fast_download() 1093 base_len = 0; in ath10k_hw_diag_fast_download() 1101 base_len); in ath10k_hw_diag_fast_download() 1105 if (base_len > left) { in ath10k_hw_diag_fast_download() 1109 base_len, left); in ath10k_hw_diag_fast_download() 1117 base_len); in ath10k_hw_diag_fast_download() 1130 metadata = (struct bmi_segmented_metadata *)(buf + base_len); in ath10k_hw_diag_fast_download() [all …]
|
/freebsd/contrib/wpa/src/crypto/ |
H A D | crypto_internal-modexp.c | 89 int crypto_mod_exp(const u8 *base, size_t base_len, in crypto_mod_exp() argument 106 if (bignum_set_unsigned_bin(bn_base, base, base_len) < 0 || in crypto_mod_exp()
|
H A D | crypto_nettle.c | 375 int crypto_mod_exp(const u8 *base, size_t base_len, in crypto_mod_exp() argument 385 mpz_import(bn_base, base_len, 1, 1, 1, 0, base); in crypto_mod_exp()
|
H A D | crypto_gnutls.c | 361 int crypto_mod_exp(const u8 *base, size_t base_len, in crypto_mod_exp() argument 370 if (gcry_mpi_scan(&bn_base, GCRYMPI_FMT_USG, base, base_len, NULL) != in crypto_mod_exp()
|
H A D | crypto_libtomcrypt.c | 738 int crypto_mod_exp(const u8 *base, size_t base_len, in crypto_mod_exp() argument 748 if (mp_read_unsigned_bin(b, (u8 *) base, base_len) != CRYPT_OK || in crypto_mod_exp()
|
H A D | crypto.h | 468 int __must_check crypto_mod_exp(const u8 *base, size_t base_len,
|
H A D | crypto_openssl.c | 809 int crypto_mod_exp(const u8 *base, size_t base_len, in crypto_mod_exp() argument 822 bn_base = BN_bin2bn(base, base_len, NULL); in crypto_mod_exp()
|
/freebsd/contrib/diff/lib/ |
H A D | dirname.h | 38 size_t base_len (char const *path);
|
H A D | basename.c | 71 base_len (char const *name) in base_len() function
|
/freebsd/contrib/ntp/sntp/libevent/ |
H A D | evdns.c | 3211 const size_t base_len = strlen(base_name); in search_make_new() local 3215 if (!base_len) return NULL; in search_make_new() 3216 need_to_append_dot = base_name[base_len - 1] == '.' ? 0 : 1; in search_make_new() 3224 char *const newname = (char *) mm_malloc(base_len + need_to_append_dot + postfix_len + 1); in search_make_new() 3226 memcpy(newname, base_name, base_len); in search_make_new() 3227 if (need_to_append_dot) newname[base_len] = '.'; in search_make_new() 3228 memcpy(newname + base_len + need_to_append_dot, postfix, postfix_len); in search_make_new() 3229 newname[base_len + need_to_append_dot + postfix_len] = 0; in search_make_new()
|
/freebsd/contrib/libevent/ |
H A D | evdns.c | 3211 const size_t base_len = strlen(base_name); in search_make_new() local 3215 if (!base_len) return NULL; in search_make_new() 3216 need_to_append_dot = base_name[base_len - 1] == '.' ? 0 : 1; in search_make_new() 3224 char *const newname = (char *) mm_malloc(base_len + need_to_append_dot + postfix_len + 1); in search_make_new() 3226 memcpy(newname, base_name, base_len); in search_make_new() 3227 if (need_to_append_dot) newname[base_len] = '.'; in search_make_new() 3228 memcpy(newname + base_len + need_to_append_dot, postfix, postfix_len); in search_make_new() 3229 newname[base_len + need_to_append_dot + postfix_len] = 0; in search_make_new()
|
/freebsd/sys/contrib/dev/iwlwifi/mvm/ |
H A D | tx.c | 725 int base_len = (u8 *)mgmt->u.probe_resp.variable - (u8 *)mgmt; in iwl_mvm_probe_resp_set_noa() local 747 skb->len - base_len, in iwl_mvm_probe_resp_set_noa()
|