Searched refs:xlen (Results 1 - 25 of 32) sorted by relevance

12

/external/linux-tools-perf/src/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);
H A Dxyarray.h12 struct xyarray *xyarray__new(int xlen, int ylen, size_t entry_size);
/external/wpa_supplicant_8/hostapd/src/crypto/
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 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;
H A Dfips_prf_openssl.c34 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
56 m = xlen / 40;
H A Dcrypto.h61 * @xlen: Output length in bytes
69 size_t xlen);
/external/wpa_supplicant_8/src/crypto/
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 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;
H A Dfips_prf_openssl.c34 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
56 m = xlen / 40;
H A Dcrypto.h61 * @xlen: Output length in bytes
69 size_t xlen);
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
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 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;
H A Dfips_prf_openssl.c34 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen) argument
56 m = xlen / 40;
H A Dcrypto.h61 * @xlen: Output length in bytes
69 size_t xlen);
/external/okhttp/okio/okio/src/main/java/okio/
H A DGzipSource.java130 int xlen = source.buffer().readShortLe();
131 source.require(xlen);
132 if (fhcrc) updateCrc(source.buffer(), 0, xlen);
133 source.skip(xlen);
/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/boringssl/src/crypto/poly1305/
H A Dpoly1305_arm.c134 unsigned long long xlen) {
138 for (i = 0; (i < 16) && (i < xlen); i++) {
141 xlen -= i;
154 if (xlen) {
155 for (i = 0; (i < 16) && (i < xlen); i++) {
133 fe1305x2_frombytearray(fe1305x2 *r, const uint8_t *x, unsigned long long xlen) argument
/external/speex/libspeex/
H A Dresample.c859 const spx_uint32_t xlen = st->mem_alloc_size - filt_offs; local
866 spx_uint32_t ichunk = (ilen > xlen) ? xlen : ilen;
901 const spx_uint32_t xlen = st->mem_alloc_size - (st->filt_len - 1); local
915 spx_uint32_t ichunk = (ilen > xlen) ? xlen : ilen;
/external/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/
H A Diter_iter_pointer.pass.cpp30 typename S::size_type xlen = last - first; local
35 assert(s.size() == old_size - xlen + rlen);
H A Diter_iter_size_char.pass.cpp31 typename S::size_type xlen = last - first; local
36 assert(s.size() == old_size - xlen + rlen);
H A Diter_iter_string.pass.cpp30 typename S::size_type xlen = last - first; local
35 assert(s.size() == old_size - xlen + rlen);
H A Dsize_size_pointer.pass.cpp37 typename S::size_type xlen = std::min(n1, old_size - pos); local
39 assert(s.size() == old_size - xlen + rlen);
H A Dsize_size_size_char.pass.cpp36 typename S::size_type xlen = std::min(n1, old_size - pos); local
38 assert(s.size() == old_size - xlen + rlen);
H A Dsize_size_string.pass.cpp34 typename S::size_type xlen = std::min(n1, old_size - pos1); local
36 assert(s.size() == old_size - xlen + rlen);
/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);

Completed in 432 milliseconds

12