HomeSort by relevance Sort by last modified time
    Searched refs:_key (Results 1 - 15 of 15) sorted by null

  /libcore/luni/src/main/java/java/io/
SerializationHandleMap.java 96 Object _key = key; local
99 int index = findIndex(_key, keys);
102 if (keys[index] != _key) {
105 index = findIndex(_key, keys);
108 keys[index] = _key;
  /external/clang/test/Analysis/
cfref_PR2519.c 32 CFStringRef _key = ((CFStringRef) __builtin___CFStringMakeConstantString ("" "Process identifier" "")); local
36 CFDictionaryRef userInfo = CFDictionaryCreate(kCFAllocatorDefault, (const void **)&_key, (const void **)&_value, 1, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
  /external/bluetooth/glib/tests/
hash-test.c 223 const char *_key = (const char *) key; local
228 g_assert (_key != NULL);
229 g_assert (*_key != 0);
233 i = atoi (_key);
247 const char *_key = (const char *) key; local
252 g_assert (_key != NULL);
253 g_assert (*_key != 0);
257 i = atoi (_key);
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_pk.h 48 #define rsa_encrypt_key(_in, _inlen, _out, _outlen, _lparam, _lparamlen, _prng, _prng_idx, _hash_idx, _key) \
49 rsa_encrypt_key_ex(_in, _inlen, _out, _outlen, _lparam, _lparamlen, _prng, _prng_idx, _hash_idx, LTC_PKCS_1_OAEP, _key)
51 #define rsa_decrypt_key(_in, _inlen, _out, _outlen, _lparam, _lparamlen, _hash_idx, _stat, _key) \
52 rsa_decrypt_key_ex(_in, _inlen, _out, _outlen, _lparam, _lparamlen, _hash_idx, LTC_PKCS_1_OAEP, _stat, _key)
54 #define rsa_sign_hash(_in, _inlen, _out, _outlen, _prng, _prng_idx, _hash_idx, _saltlen, _key) \
55 rsa_sign_hash_ex(_in, _inlen, _out, _outlen, LTC_PKCS_1_PSS, _prng, _prng_idx, _hash_idx, _saltlen, _key)
57 #define rsa_verify_hash(_sig, _siglen, _hash, _hashlen, _hash_idx, _saltlen, _stat, _key) \
58 rsa_verify_hash_ex(_sig, _siglen, _hash, _hashlen, LTC_PKCS_1_PSS, _hash_idx, _saltlen, _stat, _key)
  /external/webkit/Source/WebKit/mac/WebView/
WebPreferences.mm 417 NSString *_key = KEY(key);
418 id o = [_private->values objectForKey:_key];
421 o = [[NSUserDefaults standardUserDefaults] objectForKey:_key];
422 if (!o && key != _key)
437 NSString *_key = KEY(key);
438 [_private->values setObject:value forKey:_key];
440 [[NSUserDefaults standardUserDefaults] setObject:value forKey:_key];
454 NSString *_key = KEY(key);
455 [_private->values _webkit_setInt:value forKey:_key];
457 [[NSUserDefaults standardUserDefaults] setInteger:value forKey:_key];
    [all...]
  /libcore/luni/src/main/java/java/util/
IdentityHashMap.java 460 Object _key = key;
462 if (_key == null) {
463 _key = NULL_OBJECT;
470 int index = findIndex(_key, elementData);
473 if (elementData[index] != _key) {
477 index = findIndex(_key, elementData);
481 elementData[index] = _key;
  /external/javasqlite/src/main/java/SQLite/
Database.java 815 _key(ekey);
837 _key(ekey);
841 private native void _key(byte[] ekey); method in class:Database
  /external/protobuf/python/
mox.py 953 self._key = key
965 return self._key in rhs
968 return '<sequence or map containing \'%s\'>' % self._key
986 self._key = key
997 return rhs[self._key] == self._value
1002 return '<map containing the entry \'%s: %s\'>' % (self._key, self._value)
    [all...]
  /libcore/luni/src/main/java/java/security/
Provider.java 638 Object _key; local
649 _key = entry.getKey();
651 if (_key == null || _value == null || !(_key instanceof String)
655 String key = (String) _key;
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
peerkey.c 834 const u8 *_key; local
881 _key = (u8 *) peerkey->stk.tk1;
884 os_memcpy(key_buf, _key, 16);
887 _key = key_buf;
894 rsc, sizeof(rsc), _key, key_len) < 0) {
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
peerkey.c 837 const u8 *_key; local
884 _key = (u8 *) peerkey->stk.tk1;
887 os_memcpy(key_buf, _key, 16);
890 _key = key_buf;
897 rsc, sizeof(rsc), _key, key_len) < 0) {
    [all...]
  /external/openssl/crypto/aes/asm/
aes-586.pl     [all...]
aes-x86_64.pl     [all...]
  /external/wpa_supplicant/
wpa.c 2871 const u8 *_key; local
    [all...]
  /external/dropbear/libtomcrypt/
crypt.tex 360 Certain functions such as \textit{rsa\_make\_key()} require a Pseudo Random Number Generator (PRNG). These functions do not setup
366 \index{register\_prng()} \index{rsa\_make\_key()}
409 All ciphers store their scheduled keys in a single data type called \textit{symmetric\_key}. This allows all ciphers to
588 Where \textit{name} is the lower case ASCII version of the name. The fields \textit{min\_key\_length} and \textit{max\_key\_length}
    [all...]

Completed in 1002 milliseconds