Searched defs:ikey (Results 1 - 10 of 10) sorted by relevance

/external/mesa3d/src/mesa/program/
H A Dprog_cache.c60 const GLuint *ikey = (const GLuint *) key; local
67 for (i = 0; i < key_size / sizeof(*ikey); i++)
69 hash += ikey[i];
/external/openfst/src/include/fst/extensions/far/
H A Dextract.h113 string ikey = far_reader->GetKey(); local
114 if (end_key < ikey) break;
116 FarWriteFst(&fst, ikey, &okey, &nrep, generate_filenames, i,
/external/iproute2/ip/
H A Dlink_gre.c56 unsigned ikey = 0; local
101 ikey = rta_getattr_u32(greinfo[IFLA_GRE_IKEY]);
150 ikey = okey = uval;
151 } else if (!matches(*argv, "ikey")) {
160 fprintf(stderr, "invalid value of \"ikey\"\n");
165 ikey = uval;
241 if (!ikey && IN_MULTICAST(ntohl(daddr))) {
242 ikey = daddr;
254 addattr32(n, 1024, IFLA_GRE_IKEY, ikey);
336 fprintf(f, "ikey
[all...]
/external/mesa3d/src/gallium/auxiliary/cso_cache/
H A Dcso_cache.c50 unsigned *ikey = (unsigned *)key; local
58 hash ^= ikey[i];
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_state_cache.c56 GLuint *ikey = (GLuint *)item->key; local
64 hash ^= ikey[i];
/external/boringssl/src/crypto/x509/
H A Dx509_vfy.c1482 EVP_PKEY *ikey = NULL; local
1558 ikey = X509_get_pubkey(issuer);
1560 if(!ikey)
1569 rv = X509_CRL_check_suiteb(crl, ikey, ctx->param->flags);
1578 if(X509_CRL_verify(crl, ikey) <= 0)
1590 EVP_PKEY_free(ikey);
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dieee802_1x.c232 u8 *ikey; local
233 ikey = os_malloc(hapd->conf->individual_wep_key_len);
234 if (ikey == NULL ||
235 random_get_bytes(ikey, hapd->conf->individual_wep_key_len))
239 os_free(ikey);
244 ikey, hapd->conf->individual_wep_key_len);
246 ieee802_1x_tx_key_one(hapd, sta, 0, 0, ikey,
252 sta->addr, 0, 1, NULL, 0, ikey,
258 os_free(ikey);
/external/wpa_supplicant_8/src/ap/
H A Dieee802_1x.c232 u8 *ikey; local
233 ikey = os_malloc(hapd->conf->individual_wep_key_len);
234 if (ikey == NULL ||
235 random_get_bytes(ikey, hapd->conf->individual_wep_key_len))
239 os_free(ikey);
244 ikey, hapd->conf->individual_wep_key_len);
246 ieee802_1x_tx_key_one(hapd, sta, 0, 0, ikey,
252 sta->addr, 0, 1, NULL, 0, ikey,
258 os_free(ikey);
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dieee802_1x.c232 u8 *ikey; local
233 ikey = os_malloc(hapd->conf->individual_wep_key_len);
234 if (ikey == NULL ||
235 random_get_bytes(ikey, hapd->conf->individual_wep_key_len))
239 os_free(ikey);
244 ikey, hapd->conf->individual_wep_key_len);
246 ieee802_1x_tx_key_one(hapd, sta, 0, 0, ikey,
252 sta->addr, 0, 1, NULL, 0, ikey,
258 os_free(ikey);
/external/clang/lib/Serialization/
H A DASTReader.cpp1513 unsigned HeaderFileInfoTrait::ComputeHash(internal_key_ref ikey) { argument
1514 return llvm::hash_combine(ikey.Size, ikey.ModTime);
1519 internal_key_type ikey = { FE->getSize(), FE->getModificationTime(), local
1521 return ikey;
1559 internal_key_type ikey;
1560 ikey.Size = off_t(endian::readNext<uint64_t, little, unaligned>(d));
1561 ikey.ModTime = time_t(endian::readNext<uint64_t, little, unaligned>(d));
1562 ikey.Filename = (const char *)d;
1563 ikey
[all...]

Completed in 381 milliseconds