Home
last modified time | relevance | path

Searched refs:xlen (Results 1 – 18 of 18) sorted by relevance

/external/wpa_supplicant_8/src/crypto/
Daes-gcm.c103 static void ghash(const u8 *h, const u8 *x, size_t xlen, u8 *y) in ghash() argument
109 m = xlen / 16; in ghash()
123 if (x + xlen > xpos) { in ghash()
125 size_t last = x + xlen - xpos; in ghash()
143 static void aes_gctr(void *aes, const u8 *icb, const u8 *x, size_t xlen, u8 *y) in aes_gctr() argument
150 if (xlen == 0) in aes_gctr()
153 n = xlen / 16; in aes_gctr()
165 last = x + xlen - xpos; in aes_gctr()
Dfips_prf_internal.c17 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) in fips186_2_prf() argument
39 m = xlen / 40; in fips186_2_prf()
Dfips_prf_openssl.c26 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) in fips186_2_prf() argument
48 m = xlen / 40; in fips186_2_prf()
Dfips_prf_gnutls.c16 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) in fips186_2_prf() argument
Dfips_prf_cryptoapi.c15 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) in fips186_2_prf() argument
Dfips_prf_nss.c16 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) in fips186_2_prf() argument
Dcrypto.h69 size_t xlen);
/external/linux-tools-perf/util/
Dxyarray.c4 struct xyarray *xyarray__new(int xlen, int ylen, size_t entry_size) in xyarray__new() argument
7 struct xyarray *xy = zalloc(sizeof(*xy) + xlen * row_size); in xyarray__new()
Dxyarray.h12 struct xyarray *xyarray__new(int xlen, int ylen, size_t entry_size);
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
Dcrypto_openssl.c105 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) in fips186_2_prf() argument
126 m = xlen / 40; in fips186_2_prf()
Dcrypto.h71 size_t xlen);
Dcrypto_gnutls.c95 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) in fips186_2_prf() argument
Dsha1.c417 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) in fips186_2_prf() argument
438 m = xlen / 40; in fips186_2_prf()
/external/speex/libspeex/
Dresample.c859 const spx_uint32_t xlen = st->mem_alloc_size - filt_offs; in speex_resampler_process_int() local
866 spx_uint32_t ichunk = (ilen > xlen) ? xlen : ilen; in speex_resampler_process_int()
901 const spx_uint32_t xlen = st->mem_alloc_size - (st->filt_len - 1); in speex_resampler_process_float() local
915 spx_uint32_t ichunk = (ilen > xlen) ? xlen : ilen; in speex_resampler_process_float()
/external/openssl/ssl/
Dd1_both.c359 int xlen; in dtls1_do_write() local
371 xlen = ret; in dtls1_do_write()
376 xlen = ret - DTLS1_HM_HEADER_LENGTH; in dtls1_do_write()
379 ssl3_finish_mac(s, p, xlen); in dtls1_do_write()
/external/llvm/lib/Support/
DAPInt.cpp325 static void mul(uint64_t dest[], uint64_t x[], unsigned xlen, uint64_t y[], in mul() argument
327 dest[xlen] = mul_1(dest, x, xlen, y[0]); in mul()
331 for (unsigned j = 0; j < xlen; ++j) { in mul()
351 dest[i+xlen] = carry; in mul()
/external/wpa_supplicant_8/src/eap_common/
Deap_sim_common.c22 static int eap_sim_prf(const u8 *key, u8 *x, size_t xlen) in eap_sim_prf() argument
24 return fips186_2_prf(key, EAP_SIM_MK_LEN, x, xlen); in eap_sim_prf()
/external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
Deap_sim_common.c27 static int eap_sim_prf(const u8 *key, u8 *x, size_t xlen) in eap_sim_prf() argument
29 return fips186_2_prf(key, EAP_SIM_MK_LEN, x, xlen); in eap_sim_prf()