Home
last modified time | relevance | path

Searched refs:xlen (Results 1 – 20 of 20) 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.c48 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) in fips186_2_prf() argument
70 m = xlen / 40; in fips186_2_prf()
Dcrypto.h69 size_t xlen);
/external/okhttp/okio/okio/src/main/java/okio/
DGzipSource.java130 int xlen = source.buffer().readShortLe(); in consumeHeader() local
131 source.require(xlen); in consumeHeader()
132 if (fhcrc) updateCrc(source.buffer(), 0, xlen); in consumeHeader() local
133 source.skip(xlen); in consumeHeader()
/external/iputils/ninfod/
Dni_ifaddrs.c319 size_t dlen, xlen; in ni_ifaddrs() local
329 icnt = dlen = xlen = 0; in ni_ifaddrs()
362 + dlen + xlen); in ni_ifaddrs()
378 ifflist = xdata + xlen; in ni_ifaddrs()
475 xlen += NLMSG_ALIGN(rtapayload); in ni_ifaddrs()
523 if (icnt == 0 && (dlen + xlen == 0)) { in ni_ifaddrs()
/external/boringssl/src/crypto/poly1305/
Dpoly1305_arm.c134 unsigned long long xlen) { in fe1305x2_frombytearray() argument
138 for (i = 0; (i < 16) && (i < xlen); i++) { in fe1305x2_frombytearray()
141 xlen -= i; in fe1305x2_frombytearray()
154 if (xlen) { in fe1305x2_frombytearray()
155 for (i = 0; (i < 16) && (i < xlen); i++) { in fe1305x2_frombytearray()
/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/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/
Diter_iter_size_char.pass.cpp31 typename S::size_type xlen = last - first; in test() local
36 assert(s.size() == old_size - xlen + rlen); in test()
Diter_iter_pointer.pass.cpp30 typename S::size_type xlen = last - first; in test() local
35 assert(s.size() == old_size - xlen + rlen); in test()
Dsize_size_pointer.pass.cpp37 typename S::size_type xlen = std::min(n1, old_size - pos); in test() local
39 assert(s.size() == old_size - xlen + rlen); in test()
Diter_iter_string.pass.cpp30 typename S::size_type xlen = last - first; in test() local
35 assert(s.size() == old_size - xlen + rlen); in test()
Dsize_size_size_char.pass.cpp36 typename S::size_type xlen = std::min(n1, old_size - pos); in test() local
38 assert(s.size() == old_size - xlen + rlen); in test()
Dsize_size_string.pass.cpp34 typename S::size_type xlen = std::min(n1, old_size - pos1); in test() local
36 assert(s.size() == old_size - xlen + rlen); in test()
Diter_iter_pointer_size.pass.cpp31 typename S::size_type xlen = last - first; in test() local
36 assert(s.size() == old_size - xlen + rlen); in test()
Dsize_size_pointer_size.pass.cpp38 typename S::size_type xlen = std::min(n1, old_size - pos); in test() local
40 assert(s.size() == old_size - xlen + rlen); in test()
Diter_iter_iter_iter.pass.cpp29 typename S::size_type xlen = last - first; in test() local
34 assert(s.size() == old_size - xlen + rlen); in test()
Dsize_size_string_size_size.pass.cpp38 typename S::size_type xlen = std::min(n1, old_size - pos1); in test() local
40 assert(s.size() == old_size - xlen + rlen); in test()
63 typename S::size_type xlen = std::min(n1, old_size - pos1); in test_npos() local
65 assert(s.size() == old_size - xlen + rlen); in test_npos()
/external/llvm/lib/Support/
DAPInt.cpp326 static void mul(uint64_t dest[], uint64_t x[], unsigned xlen, uint64_t y[], in mul() argument
328 dest[xlen] = mul_1(dest, x, xlen, y[0]); in mul()
332 for (unsigned j = 0; j < xlen; ++j) { in mul()
352 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()