/external/chromium_org/third_party/leveldatabase/src/db/ |
write_batch_test.cc | 24 ParsedInternalKey ikey; local 25 ASSERT_TRUE(ParseInternalKey(iter->key(), &ikey)); 26 switch (ikey.type) { 29 state.append(ikey.user_key.ToString()); 37 state.append(ikey.user_key.ToString()); 43 state.append(NumberToString(ikey.sequence));
|
db_iter.cc | 120 inline bool DBIter::ParseKey(ParsedInternalKey* ikey) { 121 if (!ParseInternalKey(iter_->key(), ikey)) { 160 ParsedInternalKey ikey; local 161 if (ParseKey(&ikey) && ikey.sequence <= sequence_) { 162 switch (ikey.type) { 166 SaveKey(ikey.user_key, skip); 171 user_comparator_->Compare(ikey.user_key, *skip) <= 0) { 220 ParsedInternalKey ikey; local 221 if (ParseKey(&ikey) && ikey.sequence <= sequence_) [all...] |
db_impl.cc | 877 ParsedInternalKey ikey; local 905 if (!ParseInternalKey(key, &ikey)) { 912 user_comparator()->Compare(ikey.user_key, 915 current_user_key.assign(ikey.user_key.data(), ikey.user_key.size()); 923 } else if (ikey.type == kTypeDeletion && 924 ikey.sequence <= compact->smallest_snapshot && 925 compact->compaction->IsBaseLevelForKey(ikey.user_key)) { 936 last_sequence_for_key = ikey.sequence; 942 ikey.user_key.ToString().c_str() [all...] |
version_set.cc | 273 static void SaveValue(void* arg, const Slice& ikey, const Slice& v) { 276 if (!ParseInternalKey(ikey, &parsed_key)) { 296 Slice ikey = k.internal_key(); local 334 // Binary search to find earliest index whose largest key >= ikey. 335 uint32_t index = FindFile(vset_->icmp_, files_[level], ikey); 369 ikey, &saver, SaveValue); [all...] |
db_test.cc | 348 ParsedInternalKey ikey; local 349 if (!ParseInternalKey(iter->key(), &ikey)) { 352 if (last_options_.comparator->Compare(ikey.user_key, user_key) != 0) { 359 switch (ikey.type) { [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/ocsp/ |
ocsp_lib.c | 80 ASN1_BIT_STRING *ikey; local 94 ikey = X509_get0_pubkey_bitstr(issuer); 95 return OCSP_cert_id_new(dgst, iname, ikey, serial);
|
/external/openfst/src/include/fst/extensions/far/ |
extract.h | 113 string ikey = far_reader->GetKey(); local 114 if (end_key < ikey) break; 116 FarWriteFst(&fst, ikey, &okey, &nrep, generate_filenames, i,
|
/external/openssl/crypto/ocsp/ |
ocsp_lib.c | 80 ASN1_BIT_STRING *ikey; local 94 ikey = X509_get0_pubkey_bitstr(issuer); 95 return OCSP_cert_id_new(dgst, iname, ikey, serial);
|
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
prog_cache.c | 60 const GLuint *ikey = (const GLuint *) key; local 67 for (i = 0; i < key_size / sizeof(*ikey); i++) 69 hash += ikey[i];
|
/external/mesa3d/src/mesa/program/ |
prog_cache.c | 60 const GLuint *ikey = (const GLuint *) key; local 67 for (i = 0; i < key_size / sizeof(*ikey); i++) 69 hash += ikey[i];
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/ |
cso_cache.c | 50 unsigned *ikey = (unsigned *)key; local 58 hash ^= ikey[i];
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_state_cache.c | 56 GLuint *ikey = (GLuint *)item->key; local 64 hash ^= ikey[i];
|
/external/iproute2/ip/ |
link_gre.c | 56 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 %s ", s2) [all...] |
/external/mesa3d/src/gallium/auxiliary/cso_cache/ |
cso_cache.c | 50 unsigned *ikey = (unsigned *)key; local 58 hash ^= ikey[i];
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_state_cache.c | 56 GLuint *ikey = (GLuint *)item->key; local 64 hash ^= ikey[i];
|
/external/chromium_org/third_party/openssl/openssl/apps/ |
ocsp.c | 959 ASN1_BIT_STRING *ikey; local 969 ikey = X509_get0_pubkey_bitstr(issuer); 976 id = OCSP_cert_id_new(cert_id_md, iname, ikey, sno); [all...] |
/external/openssl/apps/ |
ocsp.c | 959 ASN1_BIT_STRING *ikey; local 969 ikey = X509_get0_pubkey_bitstr(issuer); 976 id = OCSP_cert_id_new(cert_id_md, iname, ikey, sno); [all...] |
/external/wpa_supplicant_8/src/ap/ |
ieee802_1x.c | 214 u8 *ikey; local 215 ikey = os_malloc(hapd->conf->individual_wep_key_len); 216 if (ikey == NULL || 217 random_get_bytes(ikey, hapd->conf->individual_wep_key_len)) 221 os_free(ikey); 226 ikey, hapd->conf->individual_wep_key_len); 228 ieee802_1x_tx_key_one(hapd, sta, 0, 0, ikey, 234 sta->addr, 0, 1, NULL, 0, ikey, 240 os_free(ikey); [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/x509/ |
x509_vfy.c | 1341 EVP_PKEY *ikey = NULL; local [all...] |
/external/openssl/crypto/x509/ |
x509_vfy.c | 1341 EVP_PKEY *ikey = NULL; local [all...] |
/system/vold/ |
cryptfs.c | 868 static void pbkdf2(char *passwd, unsigned char *salt, unsigned char *ikey, void *params) { 871 HASH_COUNT, KEY_LEN_BYTES+IV_LEN_BYTES, ikey); 874 static void scrypt(char *passwd, unsigned char *salt, unsigned char *ikey, void *params) { 882 crypto_scrypt((unsigned char *) passwd, strlen(passwd), salt, SALT_LEN, N, r, p, ikey, 891 unsigned char ikey[32+32] = { 0 }; /* Big enough to hold a 256 bit key and 256 bit IV */ local 897 scrypt(passwd, salt, ikey, crypt_ftr); 900 if (! EVP_EncryptInit(&e_ctx, EVP_aes_128_cbc(), ikey, ikey+KEY_LEN_BYTES)) { 930 unsigned char ikey[32+32] = { 0 }; /* Big enough to hold a 256 bit key and 256 bit IV */ local 935 kdf(passwd, salt, ikey, kdf_params) [all...] |
/external/clang/lib/Serialization/ |
ASTReader.cpp | 1244 internal_key_type ikey = { FE->getSize(), FE->getModificationTime(), local 1272 internal_key_type ikey; local [all...] |