/external/wpa_supplicant_8/src/crypto/ |
D | aes-gcm.c | 103 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()
|
D | fips_prf_internal.c | 17 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()
|
D | fips_prf_openssl.c | 48 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()
|
D | crypto.h | 69 size_t xlen);
|
/external/okhttp/okio/okio/src/main/java/okio/ |
D | GzipSource.java | 130 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/ |
D | ni_ifaddrs.c | 319 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/ |
D | poly1305_arm.c | 134 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/ |
D | resample.c | 859 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/ |
D | iter_iter_size_char.pass.cpp | 31 typename S::size_type xlen = last - first; in test() local 36 assert(s.size() == old_size - xlen + rlen); in test()
|
D | iter_iter_pointer.pass.cpp | 30 typename S::size_type xlen = last - first; in test() local 35 assert(s.size() == old_size - xlen + rlen); in test()
|
D | size_size_pointer.pass.cpp | 37 typename S::size_type xlen = std::min(n1, old_size - pos); in test() local 39 assert(s.size() == old_size - xlen + rlen); in test()
|
D | iter_iter_string.pass.cpp | 30 typename S::size_type xlen = last - first; in test() local 35 assert(s.size() == old_size - xlen + rlen); in test()
|
D | size_size_size_char.pass.cpp | 36 typename S::size_type xlen = std::min(n1, old_size - pos); in test() local 38 assert(s.size() == old_size - xlen + rlen); in test()
|
D | size_size_string.pass.cpp | 34 typename S::size_type xlen = std::min(n1, old_size - pos1); in test() local 36 assert(s.size() == old_size - xlen + rlen); in test()
|
D | iter_iter_pointer_size.pass.cpp | 31 typename S::size_type xlen = last - first; in test() local 36 assert(s.size() == old_size - xlen + rlen); in test()
|
D | size_size_pointer_size.pass.cpp | 38 typename S::size_type xlen = std::min(n1, old_size - pos); in test() local 40 assert(s.size() == old_size - xlen + rlen); in test()
|
D | iter_iter_iter_iter.pass.cpp | 29 typename S::size_type xlen = last - first; in test() local 34 assert(s.size() == old_size - xlen + rlen); in test()
|
D | size_size_string_size_size.pass.cpp | 38 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/ |
D | APInt.cpp | 326 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/ |
D | eap_sim_common.c | 22 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()
|