| /external/mesa3d/src/gallium/auxiliary/util/ |
| u_cache.h | 63 int (*compare)(const void *key1, const void *key2),
|
| u_hash_table.h | 60 int (*compare)(void *key1, void *key2));
|
| /dalvik/vm/ |
| AtomicCache.h | 17 * Mutex-free cache for key1+key2=value. 35 u4 key1; member in struct:AtomicCacheEntry 107 if (pEntry->key1 == (u4)(_key1) && pEntry->key2 == (u4)(_key2)) { \ 163 void dvmUpdateAtomicCache(u4 key1, u4 key2, u4 value, AtomicCacheEntry* pEntry,
|
| /external/chromium/crypto/ |
| symmetric_key_unittest.cc | 34 scoped_ptr<crypto::SymmetricKey> key1( 36 ASSERT_TRUE(NULL != key1.get()); 38 EXPECT_TRUE(key1->GetRawKey(&raw_key1)); 51 scoped_ptr<crypto::SymmetricKey> key1( 54 ASSERT_TRUE(NULL != key1.get()); 56 EXPECT_TRUE(key1->GetRawKey(&raw_key1));
|
| /external/chromium_org/crypto/ |
| symmetric_key_unittest.cc | 34 scoped_ptr<crypto::SymmetricKey> key1( 36 ASSERT_TRUE(NULL != key1.get()); 38 EXPECT_TRUE(key1->GetRawKey(&raw_key1)); 51 scoped_ptr<crypto::SymmetricKey> key1( 54 ASSERT_TRUE(NULL != key1.get()); 56 EXPECT_TRUE(key1->GetRawKey(&raw_key1));
|
| /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/ |
| DESedeKeySpecTest.java | 121 byte[] key1 = {1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 124 ks = new DESedeKeySpec(key1, 2); 131 + "as specified in a constructor.", key1, res); 133 System.arraycopy(key1, 2, exp, 0, 24);
|
| /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
| u_hash_table.h | 60 int (*compare)(void *key1, void *key2));
|
| /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/ |
| DESedeKeySpecTest.java | 121 byte[] key1 = {1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 124 ks = new DESedeKeySpec(key1, 2); 131 + "as specified in a constructor.", key1, res); 133 System.arraycopy(key1, 2, exp, 0, 24);
|
| /external/chromium_org/third_party/mesa/src/src/gallium/tests/unit/ |
| u_cache_test.c | 61 cache_test_compare(const void *key1, const void *key2) { 62 return !(key1 == key2);
|
| /external/mesa3d/src/gallium/tests/unit/ |
| u_cache_test.c | 61 cache_test_compare(const void *key1, const void *key2) { 62 return !(key1 == key2);
|
| /libcore/luni/src/test/java/libcore/java/text/ |
| OldCollationKeyTest.java | 31 CollationKey key1 = collator.getCollationKey("abc"); local 32 byte[] bytes = key1.toByteArray();
|
| /external/chromium/net/base/ |
| host_cache_unittest.cc | 280 HostCache::Key key1("foobar.com", ADDRESS_FAMILY_UNSPECIFIED, 0); 283 const HostCache::Entry* entry1 = NULL; // Entry for key1 289 EXPECT_TRUE(cache.Lookup(key1, base::TimeTicks()) == NULL); 290 cache.Set(key1, OK, AddressList(), now); 291 entry1 = cache.Lookup(key1, base::TimeTicks()); 315 HostCache::Key key1("foobar.com", ADDRESS_FAMILY_IPV4, 0); 321 const HostCache::Entry* entry1 = NULL; // Entry for key1 328 EXPECT_TRUE(cache.Lookup(key1, base::TimeTicks()) == NULL); 329 cache.Set(key1, OK, AddressList(), now); 330 entry1 = cache.Lookup(key1, base::TimeTicks()) 395 HostCache::Key key1; member in struct:net::__anon2655 458 const HostCache::Key& key1 = tests[i].key1; local [all...] |
| /external/chromium_org/content/test/data/indexeddb/ |
| key_types_test.js | 154 var key1 = valid_keys[i]; 157 shouldBe("indexedDB.cmp(" + key1 + "," + key2 + ")", "-1"); 158 shouldBe("indexedDB.cmp(" + key2 + "," + key1 + ")", "1"); 159 shouldBe("indexedDB.cmp(" + key1 + "," + key1 + ")", "0");
|
| /external/chromium_org/chrome/browser/chromeos/drive/ |
| resource_metadata_storage_unittest.cc | 77 const std::string key1 = "abcdefg"; local 83 // key1 not found. 85 EXPECT_FALSE(storage_->GetEntry(key1, &result)); 89 entry1.set_local_id(key1); 92 // key1 found. 93 EXPECT_TRUE(storage_->GetEntry(key1, &result)); 101 entry2.set_parent_local_id(key1); 107 EXPECT_EQ(key2, storage_->GetChild(key1, name2)); 121 entry3.set_parent_local_id(key1); 126 EXPECT_EQ(key3, storage_->GetChild(key1, name3)) 189 const std::string key1 = "abcdefg"; local 450 const std::string key1 = "abcd"; local 531 const std::string key1 = "foo"; local [all...] |
| /external/chromium_org/third_party/icu/source/common/ |
| uhash.h | 114 * @param key1 A key stored in a hashtable 118 typedef UBool U_CALLCONV UKeyComparator(const UHashTok key1, 599 * @param key1 The string for comparison 601 * @return true if key1 and key2 are equal, return false otherwise. 604 uhash_compareUChars(const UHashTok key1, const UHashTok key2); 609 * @param key1 The string for comparison 611 * @return true if key1 and key2 are equal, return false otherwise. 614 uhash_compareChars(const UHashTok key1, const UHashTok key2); 619 * @param key1 The string for comparison 621 * @return true if key1 and key2 are equal, return false otherwise [all...] |
| /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/ |
| ExemptionMechanismTest.java | 125 Key key1 = new MyExemptionMechanismSpi().new tmpKey("Proba", local 127 assertFalse(em.isCryptoAllowed(key1)); 129 em.init(key1);
|
| /build/tools/signapk/test/ |
| run | 25 cert := out/key1.pem
|
| /external/chromium_org/third_party/mesa/src/src/mesa/program/ |
| hash_table.h | 50 typedef int (*hash_compare_func_t)(const void *key1, const void *key2); 182 hash_table_pointer_compare(const void *key1, const void *key2);
|
| /external/libsepol/include/sepol/policydb/ |
| hashtab.h | 38 int (*keycmp) (struct hashtab_val * h, hashtab_key_t key1, hashtab_key_t key2); /* key comparison function */ 53 const hashtab_key_t key1,
|
| /external/mesa3d/src/mesa/program/ |
| hash_table.h | 50 typedef int (*hash_compare_func_t)(const void *key1, const void *key2); 182 hash_table_pointer_compare(const void *key1, const void *key2);
|
| /external/openssh/ |
| roaming_client.c | 61 static u_int64_t key1, key2, oldkey1, oldkey2; variable 73 key1 = oldkey1 = packet_get_int64(); 102 key1 = oldkey1; 116 packet_put_int64(key1 ^ get_recv_bytes()); 120 oldkey1 = key1; 122 calculate_new_key(&key1, cookie, chall);
|
| /external/pixman/test/ |
| glyph-test.c | 212 #define KEY1(p) ((void *)(((uintptr_t)p) ^ (0xa7e23dfaUL))) 250 void *key1 = KEY1 (glyph_img); local 254 if (!(glyph = pixman_glyph_cache_lookup (cache, key1, key2))) 257 pixman_glyph_cache_insert (cache, key1, key2, 5, 8, glyph_img); 307 void *key1, *key2; local 309 key1 = KEY1 (img); 312 pixman_glyph_cache_remove (cache, key1, key2);
|
| /external/chromium_org/net/cert/ |
| multi_threaded_cert_verifier_unittest.cc | 327 MultiThreadedCertVerifier::RequestParams key1; member in struct:net::__anon8943 331 // -1 means key1 is less than key2 332 // 0 means key1 equals key2 333 // 1 means key1 is greater than key2 389 const MultiThreadedCertVerifier::RequestParams& key1 = tests[i].key1; local 394 EXPECT_TRUE(key1 < key2); 395 EXPECT_FALSE(key2 < key1); 398 EXPECT_FALSE(key1 < key2); 399 EXPECT_FALSE(key2 < key1); [all...] |
| /external/chromium_org/third_party/icu/source/test/intltest/ |
| uvectest.cpp | 70 UVectorTest_compareInt32(UHashTok key1, UHashTok key2) { 71 if (key1.integer > key2.integer) { 74 else if (key1.integer < key2.integer) { 82 UVectorTest_compareCstrings(const UHashTok key1, const UHashTok key2) { 83 return !strcmp((const char *)key1.pointer, (const char *)key2.pointer); 164 static UBool U_CALLCONV neverTRUE(const UHashTok /*key1*/, const UHashTok /*key2*/) {
|
| /external/icu4c/test/intltest/ |
| uvectest.cpp | 70 UVectorTest_compareInt32(UElement key1, UElement key2) { 71 if (key1.integer > key2.integer) { 74 else if (key1.integer < key2.integer) { 82 UVectorTest_compareCstrings(const UElement key1, const UElement key2) { 83 return !strcmp((const char *)key1.pointer, (const char *)key2.pointer); 164 static UBool U_CALLCONV neverTRUE(const UElement /*key1*/, const UElement /*key2*/) {
|