HomeSort by relevance Sort by last modified time
    Searched defs:key1 (Results 1 - 25 of 27) sorted by null

1 2

  /external/openssl/crypto/des/
des3s.cpp 39 des_key_schedule key1,key2,key3; local
48 des_encrypt3(&data[0],key1,key2,key3);
50 des_encrypt3(&data[0],key1,key2,key3);
51 des_encrypt3(&data[0],key1,key2,key3);
52 des_encrypt3(&data[0],key1,key2,key3);
55 des_encrypt3(&data[0],key1,key2,key3);
56 des_encrypt3(&data[0],key1,key2,key3);
57 des_encrypt3(&data[0],key1,key2,key3);
58 des_encrypt3(&data[0],key1,key2,key3);
60 des_encrypt3(&data[0],key1,key2,key3)
    [all...]
  /libcore/luni/src/test/java/libcore/java/text/
OldCollationKeyTest.java 31 CollationKey key1 = collator.getCollationKey("abc"); local
32 byte[] bytes = key1.toByteArray();
  /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)) { \
161 void dvmUpdateAtomicCache(u4 key1, u4 key2, u4 value, AtomicCacheEntry* pEntry,
  /external/chromium/net/base/
host_cache_unittest.cc 279 HostCache::Key key1("foobar.com", ADDRESS_FAMILY_UNSPECIFIED);
282 const HostCache::Entry* entry1 = NULL; // Entry for key1
288 EXPECT_TRUE(cache.Lookup(key1, base::TimeTicks()) == NULL);
289 cache.Set(key1, OK, AddressList(), now);
290 entry1 = cache.Lookup(key1, base::TimeTicks());
346 HostCache::Key key1; member in struct:net::__anon2532
350 // -1 means key1 is less than key2
351 // 0 means key1 equals key2
352 // 1 means key1 is greater than key2
390 const HostCache::Key& key1 = tests[i].key1 local
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
Contacts_SettingsTest.java 100 String key1 = "key 1"; local
104 Settings.setSetting(mContentResolver, "account", key1, value1);
106 assertEquals(value1, Settings.getSetting(mContentResolver, "account", key1));
110 Settings.setSetting(mContentResolver, "account", key1, value2);
111 assertEquals(value2, Settings.getSetting(mContentResolver, "account", key1));
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
X509NameElementList.java 21 private DERObjectIdentifier key1; field in class:X509NameElementList
90 key1 = key;
150 case 1: return key1;
  /external/openssl/crypto/rsa/
rsa_test.c 33 static int key1(RSA *key, unsigned char *c) function
237 clen = key1(key, ctext_ex);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
OrderedTable.java 25 private DERObjectIdentifier key1; field in class:OrderedTable
82 key1 = key;
194 case 1: return key1;
  /external/wpa_supplicant/tests/
test_sha1.c 187 static u8 key1[] = "Jefe"; variable
292 sha1_prf(key1, sizeof(key1) - 1, "prefix", data1, sizeof(data1) - 1,
  /external/wpa_supplicant_6/wpa_supplicant/tests/
test_sha1.c 206 static u8 key1[] = "Jefe"; variable
311 sha1_prf(key1, sizeof(key1) - 1, "prefix", data1, sizeof(data1) - 1,
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
ExemptionMechanismTest.java 167 Key key1 = new MyExemptionMechanismSpi().new tmpKey("Proba", local
169 assertFalse(em.isCryptoAllowed(key1));
171 em.init(key1);
  /cts/tests/tests/database/src/android/database/cts/
DatabaseUtilsTest.java 538 String key1 = DatabaseUtils.getCollationKey("abc"); local
542 assertTrue(key1.equals(key2));
543 assertFalse(key1.equals(key3));
545 key1 = DatabaseUtils.getHexCollationKey("abc");
549 assertTrue(key1.equals(key2));
550 assertFalse(key1.equals(key3));
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
SelectorTest.java 455 SelectionKey key1 = ssc.register(selector, SelectionKey.OP_ACCEPT); local
457 assertTrue(keys.contains(key1));
463 assertTrue(keys.contains(key1));
466 key1.cancel();
467 assertTrue(keys.contains(key1));
470 assertFalse(keys.contains(key1));
  /libcore/luni/src/main/java/org/apache/harmony/luni/util/
TwoKeyHashMap.java 124 * @param key1
128 public V remove(Object key1, Object key2) {
129 Entry<E, K, V> e = removeEntry(key1, key2);
136 * @param key1
141 public V put(E key1, K key2, V value) {
142 if (key1 == null && key2 == null) {
156 int hash = key1.hashCode() + key2.hashCode();
161 if (hash == e.hash && key1.equals(e.getKey1())
170 arr[index] = createEntry(hash, key1, key2, value, arr[index]);
217 * Returns true if this map contains a mapping for {@code key1} and {@code key2}
291 E key1; field in class:TwoKeyHashMap.Entry
    [all...]
  /external/chromium/third_party/icu/source/common/
uhash.c 916 const UHashTok key1 = elem1->key; local
922 const UHashElement* elem2 = _uhash_find(hash2, key1, hash2->keyHasher(key1));
936 uhash_compareUChars(const UHashTok key1, const UHashTok key2) {
937 const UChar *p1 = (const UChar*) key1.pointer;
953 uhash_compareChars(const UHashTok key1, const UHashTok key2) {
954 const char *p1 = (const char*) key1.pointer;
970 uhash_compareIChars(const UHashTok key1, const UHashTok key2) {
971 const char *p1 = (const char*) key1.pointer;
996 uhash_compareLong(const UHashTok key1, const UHashTok key2)
    [all...]
  /external/icu4c/common/
uhash.c 917 const UHashTok key1 = elem1->key; local
923 const UHashElement* elem2 = _uhash_find(hash2, key1, hash2->keyHasher(key1));
937 uhash_compareUChars(const UHashTok key1, const UHashTok key2) {
938 const UChar *p1 = (const UChar*) key1.pointer;
954 uhash_compareChars(const UHashTok key1, const UHashTok key2) {
955 const char *p1 = (const char*) key1.pointer;
971 uhash_compareIChars(const UHashTok key1, const UHashTok key2) {
972 const char *p1 = (const char*) key1.pointer;
997 uhash_compareLong(const UHashTok key1, const UHashTok key2)
    [all...]
normalizer2impl.cpp 627 uint16_t key1, firstUnit; local
631 key1=(uint16_t)(trail<<1);
632 while(key1>(firstUnit=*list)) {
635 if(key1==(firstUnit&COMP_1_TRAIL_MASK)) {
645 key1=(uint16_t)(COMP_1_TRAIL_LIMIT+
651 if(key1>(firstUnit=*list)) {
653 } else if(key1==(firstUnit&COMP_1_TRAIL_MASK)) {
    [all...]
  /external/icu4c/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 1126 CollationKey key1; local
    [all...]
  /external/bluetooth/glib/gobject/
gparam.c 873 const GParamSpec *key1 = key_spec_1; local
876 return (key1->owner_type == key2->owner_type &&
877 strcmp (key1->name, key2->name) == 0);
    [all...]
gsignal.c 759 const SignalKey *key1 = node1, *key2 = node2; local
761 if (key1->itype == key2->itype)
762 return G_BSEARCH_ARRAY_CMP (key1->quark, key2->quark);
764 return G_BSEARCH_ARRAY_CMP (key1->itype, key2->itype);
    [all...]
  /external/chromium/third_party/icu/source/i18n/
ucol_elm.cpp 63 UHashTok key1; local
64 key1.pointer = buf1;
74 return uhash_compareUChars(key1, key2);
    [all...]
  /external/icu4c/i18n/
ucol_elm.cpp 65 UHashTok key1; local
66 key1.pointer = buf1;
76 return uhash_compareUChars(key1, key2);
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
apicoll.cpp 1173 CollationKey key1; local
    [all...]
  /dalvik/tools/dmtracedump/
TraceDump.c 2729 char* key1; local
    [all...]

Completed in 1147 milliseconds

1 2