Searched defs:xlen (Results 1 - 25 of 27) sorted by relevance

12

/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dfips_prf_cryptoapi.c15 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
H A Dfips_prf_gnutls.c16 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
H A Dfips_prf_nss.c16 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
H A Dfips_prf_internal.c17 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
39 m = xlen / 40;
H A Dfips_prf_openssl.c26 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
48 m = xlen / 40;
H A Daes-gcm.c103 static void ghash(const u8 *h, const u8 *x, size_t xlen, u8 *y) argument
109 m = xlen / 16;
123 if (x + xlen > xpos) {
125 size_t last = x + xlen - xpos;
143 static void aes_gctr(void *aes, const u8 *icb, const u8 *x, size_t xlen, u8 *y) argument
150 if (xlen == 0)
153 n = xlen / 16;
165 last = x + xlen - xpos;
/external/wpa_supplicant_8/src/crypto/
H A Dfips_prf_cryptoapi.c15 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
H A Dfips_prf_gnutls.c16 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
H A Dfips_prf_nss.c16 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
H A Dfips_prf_internal.c17 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
39 m = xlen / 40;
H A Dfips_prf_openssl.c26 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
48 m = xlen / 40;
H A Daes-gcm.c103 static void ghash(const u8 *h, const u8 *x, size_t xlen, u8 *y) argument
109 m = xlen / 16;
123 if (x + xlen > xpos) {
125 size_t last = x + xlen - xpos;
143 static void aes_gctr(void *aes, const u8 *icb, const u8 *x, size_t xlen, u8 *y) argument
150 if (xlen == 0)
153 n = xlen / 16;
165 last = x + xlen - xpos;
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dfips_prf_cryptoapi.c15 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
H A Dfips_prf_gnutls.c16 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
H A Dfips_prf_nss.c16 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
H A Dfips_prf_internal.c17 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
39 m = xlen / 40;
H A Dfips_prf_openssl.c26 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
48 m = xlen / 40;
H A Daes-gcm.c103 static void ghash(const u8 *h, const u8 *x, size_t xlen, u8 *y) argument
109 m = xlen / 16;
123 if (x + xlen > xpos) {
125 size_t last = x + xlen - xpos;
143 static void aes_gctr(void *aes, const u8 *icb, const u8 *x, size_t xlen, u8 *y) argument
150 if (xlen == 0)
153 n = xlen / 16;
165 last = x + xlen - xpos;
/external/linux-tools-perf/util/
H A Dxyarray.c4 struct xyarray *xyarray__new(int xlen, int ylen, size_t entry_size) argument
7 struct xyarray *xy = zalloc(sizeof(*xy) + xlen * row_size);
/external/iputils/ninfod/
H A Dni_ifaddrs.c319 size_t dlen, xlen; local
329 icnt = dlen = xlen = 0;
362 + dlen + xlen);
378 ifflist = xdata + xlen;
475 xlen += NLMSG_ALIGN(rtapayload);
523 if (icnt == 0 && (dlen + xlen == 0)) {
/external/llvm/lib/Support/
H A DAPInt.cpp323 /// the integer array dest. Note that dest's size must be >= xlen + ylen.
325 static void mul(uint64_t dest[], uint64_t x[], unsigned xlen, uint64_t y[], argument
327 dest[xlen] = mul_1(dest, x, xlen, y[0]);
331 for (unsigned j = 0; j < xlen; ++j) {
351 dest[i+xlen] = carry;
/external/chromium_org/third_party/openssl/openssl/ssl/
H A Dd1_both.c359 int xlen; local
371 xlen = ret;
376 xlen = ret - DTLS1_HM_HEADER_LENGTH;
379 ssl3_finish_mac(s, p, xlen);
/external/openssl/ssl/
H A Dd1_both.c359 int xlen; local
371 xlen = ret;
376 xlen = ret - DTLS1_HM_HEADER_LENGTH;
379 ssl3_finish_mac(s, p, xlen);
/external/wpa_supplicant_8/hostapd/src/eap_common/
H A Deap_sim_common.c22 static int eap_sim_prf(const u8 *key, u8 *x, size_t xlen) argument
24 return fips186_2_prf(key, EAP_SIM_MK_LEN, x, xlen);
/external/wpa_supplicant_8/src/eap_common/
H A Deap_sim_common.c22 static int eap_sim_prf(const u8 *key, u8 *x, size_t xlen) argument
24 return fips186_2_prf(key, EAP_SIM_MK_LEN, x, xlen);

Completed in 327 milliseconds

12