HomeSort by relevance Sort by last modified time
    Searched refs:key2 (Results 26 - 50 of 256) sorted by null

12 3 4 5 6 7 8 91011

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
DESedeEngine.java 59 byte[] key2 = new byte[8];
60 System.arraycopy(keyMaster, 8, key2, 0, key2.length);
61 workingKey2 = generateWorkingKey(!encrypting, key2);
  /external/chromium_org/third_party/mesa/src/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));
  /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.
36 u4 key2; 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,
AtomicCache.cpp 88 void dvmUpdateAtomicCache(u4 key1, u4 key2, u4 value, AtomicCacheEntry* pEntry,
146 pEntry->key2 = key2;
  /external/chromium_org/chrome/browser/chromeos/drive/
resource_metadata_storage_unittest.cc 76 const std::string key2 = "abcd"; local
95 // key2 not found.
96 EXPECT_FALSE(storage_->GetEntry(key2, &result));
101 entry2.set_resource_id(key2);
105 // key2 found.
106 EXPECT_TRUE(storage_->GetEntry(key2, &result));
107 EXPECT_EQ(key2, storage_->GetChild(key1, name2));
111 entry3.set_parent_resource_id(key2);
118 EXPECT_EQ(key3, storage_->GetChild(key2, name3));
125 EXPECT_TRUE(storage_->GetChild(key2, name3).empty())
192 const std::string key2 = "abcd"; local
384 const std::string key2 = "bar"; local
    [all...]
  /external/chromium/chrome/browser/rlz/
rlz_unittest.cc 45 RegKey key2; local
46 EXPECT_EQ(ERROR_SUCCESS, key2.Open(HKEY_CURRENT_USER, kKeyName, KEY_READ));
48 EXPECT_EQ(ERROR_SUCCESS, key2.ReadValueDW(kEvent2, &recorded_value));
  /pdk/apps/CameraITS/service/src/com/android/camera2/its/
ItsSerializer.java 65 CameraMetadata.Key<Rational> key2 = (CameraMetadata.Key<Rational>)keyObj; local
67 ratObj.put("numerator", md.get(key2).getNumerator());
68 ratObj.put("denominator", md.get(key2).getDenominator());
71 CameraMetadata.Key<android.hardware.camera2.Size> key2 = local
74 sizeObj.put("width", md.get(key2).getWidth());
75 sizeObj.put("height", md.get(key2).getHeight());
78 CameraMetadata.Key<android.graphics.Rect> key2 = local
81 rectObj.put("left", md.get(key2).left);
82 rectObj.put("right", md.get(key2).right);
83 rectObj.put("top", md.get(key2).top)
108 CameraMetadata.Key<Rational[]> key2 = (CameraMetadata.Key<Rational[]>)keyObj; local
118 CameraMetadata.Key<android.hardware.camera2.Size[]> key2 = local
129 CameraMetadata.Key<android.graphics.Rect[]> key2 = local
142 CameraMetadata.Key<android.hardware.camera2.Face[]> key2 = local
    [all...]
  /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);
  /external/chromium/net/base/
host_cache_unittest.cc 281 HostCache::Key key2("foobar.com", ADDRESS_FAMILY_IPV4, 0);
284 const HostCache::Entry* entry2 = NULL; // Entry for key2
296 EXPECT_TRUE(cache.Lookup(key2, base::TimeTicks()) == NULL);
297 cache.Set(key2, OK, AddressList(), now);
298 entry2 = cache.Lookup(key2, base::TimeTicks());
316 HostCache::Key key2("foobar.com", ADDRESS_FAMILY_IPV4,
322 const HostCache::Entry* entry2 = NULL; // Entry for key2
335 EXPECT_TRUE(cache.Lookup(key2, base::TimeTicks()) == NULL);
336 cache.Set(key2, OK, AddressList(), now);
337 entry2 = cache.Lookup(key2, base::TimeTicks())
396 HostCache::Key key2; member in struct:net::__anon5368
459 const HostCache::Key& key2 = tests[i].key2; local
    [all...]
  /external/chromium_org/content/test/data/indexeddb/
key_types_test.js 155 var key2 = valid_keys[i + 1];
157 shouldBe("indexedDB.cmp(" + key1 + "," + key2 + ")", "-1");
158 shouldBe("indexedDB.cmp(" + key2 + "," + key1 + ")", "1");
160 shouldBe("indexedDB.cmp(" + key2 + "," + key2 + ")", "0");
  /external/chromium_org/third_party/icu/source/common/
uhash.h 115 * @param key2 A key stored in a hashtable
119 const UHashTok key2);
600 * @param key2 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);
610 * @param key2 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);
620 * @param key2 The string for comparison
621 * @return true if key1 and key2 are equal, return false otherwise
    [all...]
  /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 */
54 const hashtab_key_t key2),
  /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);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
ic.py 141 key2 = key[:string.index(key, '\245')+1]
143 key2 = key
144 if key2 in _decoder_table:
145 decoder = _decoder_table[key2][0]
154 key2 = key[:string.index(key, '\245')+1]
156 key2 = key
157 if key2 in _decoder_table:
158 coder = _decoder_table[key2][1]
  /external/chromium_org/third_party/smhasher/src/
KeysetTest.cpp 105 uint8_t * key2 = &buffer2[pad+offset]; local
110 memcpy(key2,key1,len);
118 flipbit(key2,len,bit);
119 hash(key2,len,0,hash2);
128 flipbit(key2,len,bit);
129 hash(key2,len,0,hash2);
  /external/pixman/test/
glyph-test.c 213 #define KEY2(p) ((void *)(((uintptr_t)p) ^ (0xabcd9876UL)))
251 void *key2 = KEY2 (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
310 key2 = KEY2 (img);
312 pixman_glyph_cache_remove (cache, key1, key2);
  /external/chromium_org/net/cert/
multi_threaded_cert_verifier_unittest.cc 322 MultiThreadedCertVerifier::RequestParams key2; member in struct:net::__anon10991
325 // -1 means key1 is less than key2
326 // 0 means key1 equals key2
327 // 1 means key1 is greater than key2
384 const MultiThreadedCertVerifier::RequestParams& key2 = tests[i].key2; local
388 EXPECT_TRUE(key1 < key2);
389 EXPECT_FALSE(key2 < key1);
392 EXPECT_FALSE(key1 < key2);
393 EXPECT_FALSE(key2 < key1)
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
RuleBasedCollatorTest.java 108 CollationKey key2 = coll.getCollationKey(source2); local
109 assertEquals(source2, key2.getSourceString());
110 assertTrue(key1.compareTo(key2) > 0);
265 CollationKey key2 = coll.getCollationKey("abc"); local
267 assertEquals(0, key.compareTo(key2));
  /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*/) {

Completed in 1302 milliseconds

12 3 4 5 6 7 8 91011