HomeSort by relevance Sort by last modified time
    Searched refs:xlen (Results 1 - 25 of 30) sorted by null

1 2

  /external/wpa_supplicant_8/src/crypto/
fips_prf_cryptoapi.c 15 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen)
fips_prf_gnutls.c 16 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen)
fips_prf_nss.c 16 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen)
fips_prf_internal.c 17 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen)
39 m = xlen / 40;
fips_prf_openssl.c 26 int fips186_2_prf(const u8 *seed, size_t seed_len, u8 *x, size_t xlen)
48 m = xlen / 40;
aes-gcm.c 103 static void ghash(const u8 *h, const u8 *x, size_t xlen, u8 *y)
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)
150 if (xlen == 0)
153 n = xlen / 16;
165 last = x + xlen - xpos;
crypto.h 61 * @xlen: Output length in bytes
69 size_t xlen);
  /external/linux-tools-perf/util/
xyarray.c 4 struct xyarray *xyarray__new(int xlen, int ylen, size_t entry_size)
7 struct xyarray *xy = zalloc(sizeof(*xy) + xlen * row_size);
xyarray.h 12 struct xyarray *xyarray__new(int xlen, int ylen, size_t entry_size);
  /external/iputils/ninfod/
ni_ifaddrs.c 319 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)) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
gzip.py 202 xlen = ord(self.fileobj.read(1))
203 xlen = xlen + 256*ord(self.fileobj.read(1))
204 self.fileobj.read(xlen)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
gzip.py 202 xlen = ord(self.fileobj.read(1))
203 xlen = xlen + 256*ord(self.fileobj.read(1))
204 self.fileobj.read(xlen)
  /external/speex/libspeex/
resample.c 859 const spx_uint32_t xlen = st->mem_alloc_size - filt_offs; local
901 const spx_uint32_t xlen = st->mem_alloc_size - (st->filt_len - 1); local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_replace/
iter_iter_pointer.pass.cpp 33 typename S::size_type xlen = last - first; local
35 assert(s.size() == old_size - xlen + rlen);
iter_iter_size_char.pass.cpp 34 typename S::size_type xlen = last - first; local
36 assert(s.size() == old_size - xlen + rlen);
iter_iter_string.pass.cpp 33 typename S::size_type xlen = last - first; local
35 assert(s.size() == old_size - xlen + rlen);
size_size_pointer.pass.cpp 37 typename S::size_type xlen = std::min(n1, old_size - pos); local
39 assert(s.size() == old_size - xlen + rlen);
size_size_size_char.pass.cpp 36 typename S::size_type xlen = std::min(n1, old_size - pos); local
38 assert(s.size() == old_size - xlen + rlen);
size_size_string.pass.cpp 34 typename S::size_type xlen = std::min(n1, old_size - pos1); local
36 assert(s.size() == old_size - xlen + rlen);
iter_iter_pointer_size.pass.cpp 34 typename S::size_type xlen = last - first; local
36 assert(s.size() == old_size - xlen + rlen);
    [all...]
  /bootable/recovery/applypatch/
imgdiff.c 234 int xlen = Read2(cd+30); // extra field len local
244 cd += 46 + nlen + xlen + mlen;
263 xlen = Read2(lh+28); // extra field len; might be different from CD entry?
265 temp_entries[entrycount].data_offset = hoffset+30+nlen+xlen;
    [all...]
  /external/chromium_org/third_party/openssl/openssl/ssl/
d1_both.c 359 int xlen; local
371 xlen = ret;
376 xlen = ret - DTLS1_HM_HEADER_LENGTH;
379 ssl3_finish_mac(s, p, xlen);
    [all...]
  /external/openssl/ssl/
d1_both.c 359 int xlen; local
371 xlen = ret;
376 xlen = ret - DTLS1_HM_HEADER_LENGTH;
379 ssl3_finish_mac(s, p, xlen);
    [all...]
  /external/wpa_supplicant_8/src/eap_common/
eap_sim_common.c 22 static int eap_sim_prf(const u8 *key, u8 *x, size_t xlen)
24 return fips186_2_prf(key, EAP_SIM_MK_LEN, x, xlen);
  /external/llvm/lib/Support/
APInt.cpp 323 /// 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[],
327 dest[xlen] = mul_1(dest, x, xlen, y[0]);
331 for (unsigned j = 0; j < xlen; ++j) {
351 dest[i+xlen] = carry;
    [all...]

Completed in 2133 milliseconds

1 2