HomeSort by relevance Sort by last modified time
    Searched refs:key1 (Results 126 - 150 of 232) sorted by null

1 2 3 4 56 7 8 910

  /external/openssl/crypto/modes/
modes_lcl.h 121 void *key1, *key2; member in struct:xts128_context
  /external/stlport/test/unit/
map_test.cpp 367 Key key1(1), key2(2), key3(3), key4(4);
368 cont.insert(value(&key1, 1));
416 Key key1(1), key2(2), key3(3), key4(4);
417 cont.insert(value(&key1, 1));
set_test.cpp 422 Key key1(1), key2(2), key3(3), key4(4);
423 keySet.insert(&key1);
469 Key key1(1), key2(2), key3(3), key4(4);
470 keySet.insert(&key1);
unordered_test.cpp 595 Key key1(1), key2(2), key3(3), key4(4);
596 cont.insert(&key1);
636 Key key1(1), key2(2), key3(3), key4(4);
637 cont.insert(&key1);
  /ndk/tests/device/test-gnustl-full/unit/
map_test.cpp 367 Key key1(1), key2(2), key3(3), key4(4);
368 cont.insert(value(&key1, 1));
416 Key key1(1), key2(2), key3(3), key4(4);
417 cont.insert(value(&key1, 1));
set_test.cpp 422 Key key1(1), key2(2), key3(3), key4(4);
423 keySet.insert(&key1);
469 Key key1(1), key2(2), key3(3), key4(4);
470 keySet.insert(&key1);
unordered_test.cpp 595 Key key1(1), key2(2), key3(3), key4(4);
596 cont.insert(&key1);
636 Key key1(1), key2(2), key3(3), key4(4);
637 cont.insert(&key1);
  /ndk/tests/device/test-stlport/unit/
map_test.cpp 367 Key key1(1), key2(2), key3(3), key4(4);
368 cont.insert(value(&key1, 1));
416 Key key1(1), key2(2), key3(3), key4(4);
417 cont.insert(value(&key1, 1));
set_test.cpp 422 Key key1(1), key2(2), key3(3), key4(4);
423 keySet.insert(&key1);
469 Key key1(1), key2(2), key3(3), key4(4);
470 keySet.insert(&key1);
unordered_test.cpp 595 Key key1(1), key2(2), key3(3), key4(4);
596 cont.insert(&key1);
636 Key key1(1), key2(2), key3(3), key4(4);
637 cont.insert(&key1);
  /cts/tests/tests/database/src/android/database/cts/
DatabaseUtilsTest.java 408 String key1 = DatabaseUtils.getCollationKey("abc"); local
412 assertTrue(key1.equals(key2));
413 assertFalse(key1.equals(key3));
415 key1 = DatabaseUtils.getHexCollationKey("abc");
419 assertTrue(key1.equals(key2));
420 assertFalse(key1.equals(key3));
  /external/chromium_org/third_party/icu/source/test/intltest/
regcoll.cpp 1136 uint8_t key1[100], key2[100]; local
1139 len1 = calcKeyIncremental(coll, text1[i], -1, key1, sizeof(key1), status);
1150 if (len1 == len2 && uprv_memcmp(key1, key2, len1) == 0) {
1151 errln(UnicodeString("Failed: Identical key\n") + " text1: " + text1[i] + "\n" + " text2: " + text2[i] + "\n" + " key : " + TestUtility::hex(key1, len1));
1153 logln(UnicodeString("Keys produced -\n") + " text1: " + text1[i] + "\n" + " key1 : " + TestUtility::hex(key1, len1) + "\n" + " text2: " + text2[i] + "\n" + " key2 : "
    [all...]
apicoll.cpp 1119 CollationKey key1; local
    [all...]
  /external/icu4c/test/intltest/
apicoll.cpp 1128 CollationKey key1; local
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/collections/
AbstractReferenceMap.java 428 * @param key1 the first key to compare passed in from outside
432 protected boolean isEqualKey(Object key1, Object key2) {
433 //if ((key1 == null) && (key2 != null) || (key1 != null) || (key2 == null)) {
438 return (key1 == key2 || key1.equals(key2));
    [all...]
AbstractHashedMap.java 376 * @param key1 the first key to compare passed in from outside
380 protected boolean isEqualKey(Object key1, Object key2) {
381 return (key1 == key2 || ((key1 != null) && key1.equals(key2)));
    [all...]
  /external/chromium_org/sync/tools/testserver/
chromiumsync_test.py 627 [key1] = self.model.GetKeystoreKeys()
629 self.assertTrue(len(key1))
630 self.assertEqual(key1, key2)
644 [key1, key3] = self.model.GetKeystoreKeys()
645 self.assertEquals(key1, key2)
646 self.assertNotEqual(key1, key3)
  /external/chromium_org/v8/src/
hydrogen-bce.cc 269 static bool BoundsCheckKeyMatch(void* key1, void* key2) {
270 BoundsCheckKey* k1 = static_cast<BoundsCheckKey*>(key1);
hashmap.h 41 typedef bool (*MatchFun) (void* key1, void* key2);
profile-generator.h 59 static bool StringsMatch(void* key1, void* key2);
  /external/v8/src/
hashmap.h 41 typedef bool (*MatchFun) (void* key1, void* key2);
  /external/chromium_org/third_party/icu/source/common/
normalizer2impl.cpp 653 uint16_t key1, firstUnit; local
657 key1=(uint16_t)(trail<<1);
658 while(key1>(firstUnit=*list)) {
661 if(key1==(firstUnit&COMP_1_TRAIL_MASK)) {
671 key1=(uint16_t)(COMP_1_TRAIL_LIMIT+
677 if(key1>(firstUnit=*list)) {
679 } else if(key1==(firstUnit&COMP_1_TRAIL_MASK)) {
    [all...]
  /external/icu4c/common/
normalizer2impl.cpp 728 uint16_t key1, firstUnit; local
732 key1=(uint16_t)(trail<<1);
733 while(key1>(firstUnit=*list)) {
736 if(key1==(firstUnit&COMP_1_TRAIL_MASK)) {
746 key1=(uint16_t)(COMP_1_TRAIL_LIMIT+
752 if(key1>(firstUnit=*list)) {
754 } else if(key1==(firstUnit&COMP_1_TRAIL_MASK)) {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
zipfile.py 459 self.key1 = 591751049
466 self.key1 = (self.key1 + (self.key0 & 255)) & 4294967295
467 self.key1 = (self.key1 * 134775813 + 1) & 4294967295
468 self.key2 = self._crc32(chr((self.key1 >> 24) & 255), self.key2)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
zipfile.py 459 self.key1 = 591751049
466 self.key1 = (self.key1 + (self.key0 & 255)) & 4294967295
467 self.key1 = (self.key1 * 134775813 + 1) & 4294967295
468 self.key2 = self._crc32(chr((self.key1 >> 24) & 255), self.key2)
    [all...]

Completed in 1071 milliseconds

1 2 3 4 56 7 8 910