Searched refs:key (Results 26 - 50 of 6813) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/smhasher/src/
H A DHashes.h12 void sumhash ( const void * key, int len, uint32_t seed, void * out );
13 void sumhash32 ( const void * key, int len, uint32_t seed, void * out );
15 void DoNothingHash ( const void * key, int len, uint32_t seed, void * out );
16 void crc32 ( const void * key, int len, uint32_t seed, void * out );
18 void randhash_32 ( const void * key, int len, uint32_t seed, void * out );
19 void randhash_64 ( const void * key, int len, uint32_t seed, void * out );
20 void randhash_128 ( const void * key, int len, uint32_t seed, void * out );
25 void md5_32 ( const void * key, int len, uint32_t seed, void * out );
26 void sha1_32a ( const void * key, int len, uint32_t seed, void * out );
31 void FNV ( const void * key, in
55 MurmurHash1_test( const void * key, int len, uint32_t seed, void * out ) argument
60 MurmurHash2_test( const void * key, int len, uint32_t seed, void * out ) argument
65 MurmurHash2A_test( const void * key, int len, uint32_t seed, void * out ) argument
70 MurmurHash64A_test( const void * key, int len, uint32_t seed, void * out ) argument
75 MurmurHash64B_test( const void * key, int len, uint32_t seed, void * out ) argument
[all...]
H A DCityTest.cpp3 void CityHash64_test ( const void * key, int len, uint32_t seed, void * out ) argument
5 *(uint64*)out = CityHash64WithSeed((const char *)key,len,seed);
8 void CityHash128_test ( const void * key, int len, uint32_t seed, void * out ) argument
14 *(uint128*)out = CityHash128WithSeed((const char*)key,len,s);
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/object/
H A Dobject.js33 for (var key in obj) {
34 f.call(opt_obj, obj[key], key, obj);
57 for (var key in obj) {
58 if (f.call(opt_obj, obj[key], key, obj)) {
59 res[key] = obj[key];
82 for (var key in obj) {
83 res[key]
[all...]
/external/chromium_org/components/ownership/
H A Downer_key_util.cc23 PrivateKey::PrivateKey(crypto::RSAPrivateKey* key) : key_(key) { argument
/external/chromium_org/third_party/libaddressinput/chromium/
H A Dfallback_data_store.cc11 bool FallbackDataStore::Get(const std::string& key, std::string* data) { argument
12 if (key != "data/US")
21 "e\": \"Louisiana\", \"zip\": \"70|71[0-5]\", \"key\": \"LA\", \"id\":"
23 "0,05999\", \"name\": \"Vermont\", \"zip\": \"05\", \"key\": \"VT\", \""
28 "0[78]\", \"key\": \"NJ\", \"id\": \"data/US/NJ\"}, \"data/US/NH\": {\""
30 ", \"zip\": \"03[0-8]\", \"key\": \"NH\", \"id\": \"data/US/NH\"}, \"d"
32 " \"North Dakota\", \"zip\": \"58\", \"key\": \"ND\", \"id\": \"data/US"
34 " \"name\": \"Nebraska\", \"zip\": \"6[89]\", \"key\": \"NE\", \"id\":"
36 "0,28999\", \"name\": \"North Carolina\", \"zip\": \"2[78]\", \"key\":"
39 "p\": \"00[679]\", \"key\"
[all...]
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DDataSource.java23 AddressVerificationNodeData getDefaultData(String key); argument
24 AddressVerificationNodeData get(String key); argument
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-284.js32 for (var key in [0]) {
43 for (var key in [0]) {
H A Dregress-119925.js32 for (var key in [(1.2)]) { }
/external/openssl/crypto/des/
H A Ddes_old2.c79 void _ossl_096_des_random_seed(DES_cblock *key) argument
81 RAND_seed(key, sizeof(DES_cblock));
/external/chromium_org/third_party/markdown/extensions/
H A D__init__.py51 def getConfig(self, key, default=''):
52 """ Return a setting for the given key or an empty string. """
53 if key in self.config:
54 return self.config[key][0]
60 return dict([(key, self.getConfig(key)) for key in self.config.keys()])
64 return [(key, self.config[key][1]) for key i
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/content/
H A DTestSharedPreferences.java33 public String getString(String key, String defValue) { argument
34 return (String) getValue(key, defValue);
37 private Object getValue(String key, Object defValue) { argument
40 Object value = fileHash.get(key);
49 public int getInt(String key, int defValue) { argument
50 return (Integer) getValue(key, defValue);
54 public long getLong(String key, long defValue) { argument
55 return (Long) getValue(key, defValue);
59 public float getFloat(String key, float defValue) { argument
60 return (Float) getValue(key, defValu
64 getBoolean(String key, boolean defValue) argument
69 contains(String key) argument
103 putString(String key, String value) argument
110 putInt(String key, int value) argument
117 putLong(String key, long value) argument
124 putFloat(String key, float value) argument
131 putBoolean(String key, boolean value) argument
138 remove(String key) argument
176 putStringSet(String key, Set<String> values) argument
182 getStringSet(String key, Set<String> defValues) argument
[all...]
/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dasync_slice.js31 var key = keys[i];
32 if (typeof this[key] == 'function')
34 if (key == 'startThread' || key == 'endThread') {
35 obj[key] = this[key].guid;
38 obj[key] = this[key];
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dmetadata_db_migration_util.cc46 std::string key = itr->key().ToString(); local
49 if (StartsWithASCII(key, kServiceMetadataKey, true) ||
50 StartsWithASCII(key, kFileMetadataKeyPrefix, true) ||
51 StartsWithASCII(key, kFileTrackerKeyPrefix, true)) {
56 if (StartsWithASCII(key, kAppRootIDByAppIDKeyPrefix, true) ||
57 StartsWithASCII(key, kActiveTrackerIDByFileIDKeyPrefix, true) ||
58 StartsWithASCII(key, kTrackerIDByFileIDKeyPrefix, true) ||
59 StartsWithASCII(key, kMultiTrackerByFileIDKeyPrefix, true) ||
60 StartsWithASCII(key, kActiveTrackerIDByParentAndTitleKeyPrefi
[all...]
/external/chromium_org/chrome/common/net/
H A Dnet_resource_provider.h13 base::StringPiece NetResourceProvider(int key);
/external/chromium_org/components/policy/core/common/
H A Dpreferences_mac.cc11 CFPropertyListRef MacPreferences::CopyAppValue(CFStringRef key, argument
13 return CFPreferencesCopyAppValue(key, applicationID);
16 Boolean MacPreferences::AppValueIsForced(CFStringRef key, argument
18 return CFPreferencesAppValueIsForced(key, applicationID);
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_getspecific.c42 pthread_getspecific (pthread_key_t key) argument
46 * This function returns the current value of key in the
47 * calling thread. If no value has been set for 'key' in
51 * key
56 * This function returns the current value of key in the
57 * calling thread. If no value has been set for 'key' in
61 * key value or NULL on failure
68 if (key == NULL)
78 ptr = TlsGetValue (key->key);
[all...]
/external/chromium_org/third_party/npapi/npspy/include/
H A Dprofile.h47 virtual BOOL getBool(char * key, BOOL * value) = 0;
48 virtual BOOL setBool(char * key, BOOL value) = 0;
50 virtual BOOL getString(char * key, char * string, int size) = 0;
51 virtual BOOL setString(char * key, char * string) = 0;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
H A DSwitchLabelElement.java37 public final int key; field in class:SwitchLabelElement
40 public SwitchLabelElement(int key, @Nonnull Label target) { argument
41 this.key = key;
/external/wpa_supplicant_8/hostapd/src/tls/
H A Drsa.c18 int private_key; /* whether private key is set */
56 * crypto_rsa_import_public_key - Import an RSA public key
57 * @buf: Key buffer (DER encoded RSA public key)
59 * Returns: Pointer to the public key or %NULL on failure
64 struct crypto_rsa_key *key; local
68 key = os_zalloc(sizeof(*key));
69 if (key == NULL)
72 key->n = bignum_init();
73 key
123 struct crypto_rsa_key *key; local
151 struct crypto_rsa_key *key; local
249 crypto_rsa_get_modulus_len(struct crypto_rsa_key *key) argument
265 crypto_rsa_exptmod(const u8 *in, size_t inlen, u8 *out, size_t *outlen, struct crypto_rsa_key *key, int use_private) argument
362 crypto_rsa_free(struct crypto_rsa_key *key) argument
[all...]
/external/wpa_supplicant_8/src/tls/
H A Drsa.c18 int private_key; /* whether private key is set */
56 * crypto_rsa_import_public_key - Import an RSA public key
57 * @buf: Key buffer (DER encoded RSA public key)
59 * Returns: Pointer to the public key or %NULL on failure
64 struct crypto_rsa_key *key; local
68 key = os_zalloc(sizeof(*key));
69 if (key == NULL)
72 key->n = bignum_init();
73 key
123 struct crypto_rsa_key *key; local
151 struct crypto_rsa_key *key; local
249 crypto_rsa_get_modulus_len(struct crypto_rsa_key *key) argument
265 crypto_rsa_exptmod(const u8 *in, size_t inlen, u8 *out, size_t *outlen, struct crypto_rsa_key *key, int use_private) argument
362 crypto_rsa_free(struct crypto_rsa_key *key) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Drsa.c18 int private_key; /* whether private key is set */
56 * crypto_rsa_import_public_key - Import an RSA public key
57 * @buf: Key buffer (DER encoded RSA public key)
59 * Returns: Pointer to the public key or %NULL on failure
64 struct crypto_rsa_key *key; local
68 key = os_zalloc(sizeof(*key));
69 if (key == NULL)
72 key->n = bignum_init();
73 key
123 struct crypto_rsa_key *key; local
151 struct crypto_rsa_key *key; local
249 crypto_rsa_get_modulus_len(struct crypto_rsa_key *key) argument
265 crypto_rsa_exptmod(const u8 *in, size_t inlen, u8 *out, size_t *outlen, struct crypto_rsa_key *key, int use_private) argument
362 crypto_rsa_free(struct crypto_rsa_key *key) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DAEADParameters.java10 private KeyParameter key; field in class:AEADParameters
16 * @param key key to be used by underlying cipher
20 public AEADParameters(KeyParameter key, int macSize, byte[] nonce) argument
22 this(key, macSize, nonce, null);
28 * @param key key to be used by underlying cipher
33 public AEADParameters(KeyParameter key, int macSize, byte[] nonce, byte[] associatedText) argument
35 this.key = key;
[all...]
/external/chromium_org/chrome/browser/chromeos/login/screens/
H A Dscreen_context.h22 // ScreenContext is a key-value storage for values that are shared
32 // ScreenContext memorizes changed key-value pairs and returns them
43 bool SetBoolean(const KeyType& key, bool value);
44 bool SetInteger(const KeyType& key, int value);
45 bool SetDouble(const KeyType& key, double value);
46 bool SetString(const KeyType& key, const std::string& value);
47 bool SetString(const KeyType& key, const base::string16& value);
48 bool SetStringList(const KeyType& key, const StringList& value);
49 bool SetString16List(const KeyType& key, const String16List& value);
51 bool GetBoolean(const KeyType& key) cons
108 Get(const KeyType& key, const T& default_value) const argument
[all...]
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dobject_store.py11 def Get(self, key):
12 '''Gets a |Future| with the value of |key| in the object store, or None
13 if |key| is not in the object store.
15 return self.GetMulti((key,)).Then(lambda keys: keys.get(key))
23 def Set(self, key, value):
24 '''Sets key -> value in the object store.
26 self.SetMulti({ key: value })
33 def Del(self, key):
34 '''Deletes a key fro
[all...]
/external/chromium_org/media/base/
H A Dscoped_histogram_timer.h17 #define SCOPED_UMA_HISTOGRAM_TIMER_EXPANDER(name, key) \
18 SCOPED_UMA_HISTOGRAM_TIMER_UNIQUE(name, key)
20 #define SCOPED_UMA_HISTOGRAM_TIMER_UNIQUE(name, key) \
21 class ScopedHistogramTimer##key { \
23 ScopedHistogramTimer##key() : constructed_(base::TimeTicks::Now()) {} \
24 ~ScopedHistogramTimer##key() { \
30 } scoped_histogram_timer_##key

Completed in 595 milliseconds

1234567891011>>