HomeSort by relevance Sort by last modified time
    Searched defs:key (Results 126 - 150 of 6954) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ADT/
DenseMapInfo.h 190 uint64_t key = (uint64_t)FirstInfo::getHashValue(PairVal.first) << 32 local
192 key += ~(key << 32);
193 key ^= (key >> 22);
194 key += ~(key << 13);
195 key ^= (key >> 8);
196 key += (key << 3)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ADT/
DenseMapInfo.h 190 uint64_t key = (uint64_t)FirstInfo::getHashValue(PairVal.first) << 32 local
192 key += ~(key << 32);
193 key ^= (key >> 22);
194 key += ~(key << 13);
195 key ^= (key >> 8);
196 key += (key << 3)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/
DenseMapInfo.h 190 uint64_t key = (uint64_t)FirstInfo::getHashValue(PairVal.first) << 32 local
192 key += ~(key << 32);
193 key ^= (key >> 22);
194 key += ~(key << 13);
195 key ^= (key >> 8);
196 key += (key << 3)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
DenseMapInfo.h 190 uint64_t key = (uint64_t)FirstInfo::getHashValue(PairVal.first) << 32 local
192 key += ~(key << 32);
193 key ^= (key >> 22);
194 key += ~(key << 13);
195 key ^= (key >> 8);
196 key += (key << 3)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
DenseMapInfo.h 190 uint64_t key = (uint64_t)FirstInfo::getHashValue(PairVal.first) << 32 local
192 key += ~(key << 32);
193 key ^= (key >> 22);
194 key += ~(key << 13);
195 key ^= (key >> 8);
196 key += (key << 3)
    [all...]
  /system/bt/btif/src/
btif_config_transcode.cc 54 const char* key = k->Attribute("Tag"); local
56 if (section && key && value)
57 config_set_string(config.get(), section, key, value);
  /system/bt/osi/include/
config.h 9 // - Key/value pairs that are not within a section are assumed to be under
13 // - Empty sections with no key/value pairs will be treated as if they do
24 // The default section name to use if a key/value pair is not defined within
29 std::string key; member in struct:entry_t
60 // the section has no key/value pairs in it, this function will return false.
63 // Returns true if the config file has a key named |key| under |section|.
66 const std::string& key);
68 // Returns the integral value for a given |key| in |section|. If |section|
69 // or |key| do not exist, or the value cannot be fully converted to an integer
    [all...]
  /system/bt/osi/include/socket_utils/
sockets.h 38 char key[64]; local
39 snprintf(key, sizeof(key), ANDROID_SOCKET_ENV_PREFIX "%s", name);
41 const char* val = getenv(key);
  /system/core/libcutils/tests/
android_get_control_socket_test.cpp 36 static const char key[] = ANDROID_SOCKET_ENV_PREFIX "SocketsTest_android_get_control_socket"; local
37 static const char* name = key + strlen(ANDROID_SOCKET_ENV_PREFIX);
39 EXPECT_EQ(unsetenv(key), 0);
62 EXPECT_EQ(setenv(key, val, true), 0);
69 EXPECT_EQ(unsetenv(key), 0);
  /system/keymaster/include/keymaster/km_openssl/
ec_key.h 39 EC_KEY* key() const { return ec_key_.get(); } function in class:keymaster::EcKey
rsa_key.h 42 RSA* key() const { return rsa_key_.get(); } function in class:keymaster::RsaKey
  /system/keymaster/tests/
hmac_test.cpp 32 const char* key; member in struct:keymaster::test::HmacTest
38 "Test Using Larger Than Block-Size Key - Hash Key First",
66 const string key = hex2str(test.key); local
67 Buffer key_buffer(key.data(), key.size());
kdf_test.cpp 33 uint8_t key[128]; local
35 ASSERT_TRUE(kdf.Init(KM_DIGEST_SHA1, key, 128, salt, 128));
36 ASSERT_TRUE(kdf.Init(KM_DIGEST_SHA_2_256, key, 128, salt, 128));
37 ASSERT_TRUE(kdf.Init(KM_DIGEST_SHA1, key, 128, nullptr, 0));
38 ASSERT_FALSE(kdf.Init(KM_DIGEST_MD5, key, 128, salt, 128));
41 ASSERT_FALSE(kdf.Init(KM_DIGEST_SHA1, key, 0, salt, 128));
  /toolchain/binutils/binutils-2.27/opcodes/
aarch64-dis-2.c 9938 int key = opcode - aarch64_opcode_table; local
10154 int key = opcode - aarch64_opcode_table; local
10264 int key = opcode - aarch64_opcode_table; local
10402 int key = self - aarch64_operands; local
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
MultiMapTest.java 32 multiMap.put("key", "value1");
33 multiMap.put("key", "value2");
38 // key's for value1, value2 and collisionKeyvalue might be one of three possible values,
48 * Helper method testGetUniqueMap() for that will check that the given value's key matches
53 * @return <code>true</code> if key matched one of the expected values
58 String key = entry.getKey(); local
59 return key.equals("key") || key.equals("key2") || key.equals("key2X")
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue139/
UniqueKeyTest.java 33 String data = "{key: 1, key: 2}";
37 fail("The same key must be rejected");
39 assertEquals("The key is not unique key", e.getMessage());
51 Object key = constructObject(keyNode); local
52 if (key != null) {
53 key.hashCode();// check circular dependencies
56 Object old = mapping.put(key, value);
58 throw new YAMLException("The key is not unique " + key)
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
ParcelUtil.java 40 * Write a PrivateKey object |key| to the specified Parcel |dest|.
44 * |endcodedKey| -> byte[] of key data
51 * @param key PrivateKey object to read from.
53 public static void writePrivateKey(Parcel dest, PrivateKey key) {
54 if (key == null) {
59 dest.writeString(key.getAlgorithm());
60 dest.writeByteArray(key.getEncoded());
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
GroupedLinkedMap.java 21 public void put(K key, V value) {
22 LinkedEntry<K, V> entry = keyToEntry.get(key);
25 entry = new LinkedEntry<K, V>(key);
27 keyToEntry.put(key, entry);
29 key.offer();
35 public V get(K key) {
36 LinkedEntry<K, V> entry = keyToEntry.get(key);
38 entry = new LinkedEntry<K, V>(key);
39 keyToEntry.put(key, entry);
41 key.offer()
115 private final K key; field in class:GroupedLinkedMap.LinkedEntry
    [all...]
  /external/turbine/javatests/com/google/turbine/binder/lookup/
TopLevelIndexTest.java 107 LookupKey key = new LookupKey(ImmutableList.of("java", "util", "List")); local
108 key = key.rest();
109 key = key.rest();
111 key.rest();
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherWrapThread.java 19 import java.security.Key;
34 Key key = kg.generateKey(); local
39 cip.init(Cipher.WRAP_MODE, key);
40 byte[] output = cip.wrap(key);
41 cip.init(Cipher.UNWRAP_MODE, key);
42 Key decrypted = cip.unwrap(output, getAlgName(), Cipher.SECRET_KEY);
44 checkEncodedData(key.getFormat().getBytes(), decrypted.getFormat().getBytes());
45 checkEncodedData(key.getEncoded(), decrypted.getEncoded());
  /libcore/ojluni/src/main/java/sun/security/x509/
CertificateX509Key.java 48 public static final String IDENT = "x509.info.key";
52 public static final String NAME = "key";
53 public static final String KEY = "value";
56 private PublicKey key; field in class:CertificateX509Key
61 * @param key the X509Key
63 public CertificateX509Key(PublicKey key) {
64 this.key = key;
75 key = X509Key.parse(val);
86 key = X509Key.parse(val)
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
Romkan.java 177 StringBuffer key = new StringBuffer(); local
180 key.append(str[i].string);
182 boolean upper = Character.isUpperCase(key.charAt(key.length() - 1));
183 String match = Romkan.romkanTable.get(key.toString().toLowerCase());
204 key.delete(0, key.length());
RomkanFullKatakana.java 181 StringBuffer key = new StringBuffer(); local
184 key.append(str[i].string);
186 boolean upper = Character.isUpperCase(key.charAt(key.length() - 1));
187 String match = table.get(key.toString().toLowerCase());
208 key.delete(0, key.length());
  /bionic/libc/include/
search.h 21 char* key; member in struct:entry
  /bionic/libc/kernel/uapi/asm-generic/
ipcbuf.h 22 __kernel_key_t key; member in struct:ipc64_perm

Completed in 577 milliseconds

1 2 3 4 56 7 8 91011>>