Searched defs:key (Results 1 - 25 of 36) sorted by relevance

12

/system/core/libmincrypt/tools/
H A DDumpPublicKey.java36 * @param key to perform sanity checks on
37 * @throws Exception if the key has the wrong size or public exponent
39 static void check(RSAPublicKey key) throws Exception { argument
40 BigInteger pubexp = key.getPublicExponent();
41 BigInteger modulus = key.getModulus();
53 * @param key to output
54 * @return a C initializer representing this public key.
56 static String print(RSAPublicKey key) throws Exception { argument
57 check(key);
59 BigInteger N = key
[all...]
/system/media/wilhelm/src/autogen/
H A DIID_to_MPH.c249 unsigned key = asso_values[((unsigned char *)iid)[8]] + local
251 if (key <= MAX_HASH_VALUE) {
252 int MPH = hash_to_MPH[key];
/system/core/include/cutils/
H A Dsockets.h49 char key[64] = ANDROID_SOCKET_ENV_PREFIX; local
55 strlcpy(key + sizeof(ANDROID_SOCKET_ENV_PREFIX) - 1,
57 sizeof(key) - sizeof(ANDROID_SOCKET_ENV_PREFIX));
59 strncpy(key + sizeof(ANDROID_SOCKET_ENV_PREFIX) - 1,
61 sizeof(key) - sizeof(ANDROID_SOCKET_ENV_PREFIX));
62 key[sizeof(key)-1] = '\0';
65 val = getenv(key);
/system/core/toolbox/
H A Dgetprop.c9 static void record_prop(const char* key, const char* name, void* opaque) argument
13 snprintf(temp, sizeof temp, "[%s]: [%s]", key, name);
H A Dreadtty.c11 char key; member in struct:__anon446
26 char next_char(char key, char current) argument
31 if(key == map[i].key) {
38 return key;
41 char prev_char(char key, char current) argument
46 if(key == map[i].key) {
53 return key;
/system/media/mca/filterfw/java/android/filterfw/core/
H A DKeyValueMap.java36 throw new RuntimeException("Key-value argument " + i + " must be a key of type "
39 String key = (String)keyValues[i];
41 put(key, value);
51 public String getString(String key) { argument
52 Object result = get(key);
56 public int getInt(String key) { argument
57 Object result = get(key);
61 public float getFloat(String key) { argument
62 Object result = get(key);
H A DFilterContext.java72 public synchronized void storeFrame(String key, Frame frame) { argument
73 Frame storedFrame = fetchFrame(key);
78 mStoredFrames.put(key, frame.retain());
81 public synchronized Frame fetchFrame(String key) { argument
82 Frame frame = mStoredFrames.get(key);
89 public synchronized void removeFrame(String key) { argument
90 Frame frame = mStoredFrames.get(key);
92 mStoredFrames.remove(key);
H A DMutableFrameFormat.java89 public void setMetaValue(String key, Object value) { argument
93 mMetaData.put(key, value);
H A DNativeProgram.java171 private native boolean callNativeSetValue(String key, String value); argument
172 private native String callNativeGetValue(String key); argument
/system/core/libpixelflinger/tests/codegen/
H A Dcodegen.cpp28 const AssemblyKey<needs_t>& key() const { return mKey; } function in class:ScanlineAssembly
/system/core/libmincrypt/
H A Drsa.c32 static void subM(const RSAPublicKey *key, uint32_t *a) { argument
35 for (i = 0; i < key->len; ++i) {
36 A += (uint64_t)a[i] - key->n[i];
43 static int geM(const RSAPublicKey *key, const uint32_t *a) { argument
45 for (i = key->len; i;) {
47 if (a[i] < key->n[i]) return 0;
48 if (a[i] > key->n[i]) return 1;
54 static void montMulAdd(const RSAPublicKey *key, argument
59 uint32_t d0 = (uint32_t)A * key->n0inv;
60 uint64_t B = (uint64_t)d0 * key
79 montMul(const RSAPublicKey *key, uint32_t* c, const uint32_t* a, const uint32_t* b) argument
95 modpow3(const RSAPublicKey *key, uint8_t* inout) argument
162 RSA_verify(const RSAPublicKey *key, const uint8_t *signature, const int len, const uint8_t *sha) argument
[all...]
/system/media/mca/filterfw/native/base/
H A Dutilities.h58 // Given an STL container consisting of (key, value) pairs, STLDeleteValues
71 // If the key is present a const pointer to the associated value is returned,
76 const typename Collection::value_type::first_type& key) {
77 typename Collection::const_iterator it = collection.find(key);
123 // If the key is present a const pointer to the associated value is returned,
125 // This function does not distinguish between a missing key and a key mapped
130 const typename Collection::value_type::first_type& key) {
131 typename Collection::const_iterator it = collection.find(key);
138 // Test to see if a set, map, hash_set or hash_map contains a particular key
75 FindOrNull(const Collection& collection, const typename Collection::value_type::first_type& key) argument
129 FindPtrOrNull(const Collection& collection, const typename Collection::value_type::first_type& key) argument
141 ContainsKey(const Collection& collection, const Key& key) argument
150 InsertIfNotPresent(Collection * const collection, const Key& key, const Value& value) argument
[all...]
/system/media/mca/filterfw/native/core/
H A Dnative_program.cpp126 bool NativeProgram::CallSetValue(const std::string& key, const std::string& value) { argument
128 setvalue_function_(key.c_str(), value.c_str(), user_data_);
134 std::string NativeProgram::CallGetValue(const std::string& key) { argument
139 getvalue_function_(key.c_str(), result, buffer_size, user_data_);
H A Dgl_env.cpp384 void GLEnv::AttachShader(int key, ShaderProgram* shader) { argument
385 ShaderProgram* existingShader = ShaderWithKey(key);
388 attached_shaders_[key] = shader;
391 void GLEnv::AttachVertexFrame(int key, VertexFrame* frame) { argument
392 VertexFrame* existingFrame = VertexFrameWithKey(key);
395 attached_vframes_[key] = frame;
398 ShaderProgram* GLEnv::ShaderWithKey(int key) { argument
399 return FindPtrOrNull(attached_shaders_, key);
402 VertexFrame* GLEnv::VertexFrameWithKey(int key) { argument
403 return FindPtrOrNull(attached_vframes_, key);
[all...]
/system/media/mca/filterpacks/base/native/
H A Dutilities.h58 // Given an STL container consisting of (key, value) pairs, STLDeleteValues
71 // If the key is present a const pointer to the associated value is returned,
76 const typename Collection::value_type::first_type& key) {
77 typename Collection::const_iterator it = collection.find(key);
123 // If the key is present a const pointer to the associated value is returned,
125 // This function does not distinguish between a missing key and a key mapped
130 const typename Collection::value_type::first_type& key) {
131 typename Collection::const_iterator it = collection.find(key);
138 // Test to see if a set, map, hash_set or hash_map contains a particular key
75 FindOrNull(const Collection& collection, const typename Collection::value_type::first_type& key) argument
129 FindPtrOrNull(const Collection& collection, const typename Collection::value_type::first_type& key) argument
141 ContainsKey(const Collection& collection, const Key& key) argument
150 InsertIfNotPresent(Collection * const collection, const Key& key, const Value& value) argument
[all...]
/system/media/mca/filterpacks/imageproc/native/
H A Dbrightness.c41 void brightness_setvalue(const char* key, const char* value, void* user_data) { argument
42 if (strcmp(key, "brightness") == 0)
45 LOGE("Unknown parameter: %s!", key);
H A Dcontrast.c36 void contrast_setvalue(const char* key, const char* value, void* user_data) { argument
37 if (strcmp(key, "contrast") == 0)
40 LOGE("Unknown parameter: %s!", key);
/system/core/libcutils/
H A Dproperties.c34 int property_set(const char *key, const char *value) argument
36 return __system_property_set(key, value);
39 int property_get(const char *key, char *value, const char *default_value) argument
43 len = __system_property_get(key, value);
55 int property_list(void (*propfn)(const char *key, const char *value, void *cookie), argument
137 int property_get(const char *key, char *value, const char *default_value) argument
143 //LOGV("PROPERTY GET [%s]\n", key);
155 if (strlen(key) >= PROPERTY_KEY_MAX) return -1;
160 strcpy(sendBuf+1, key);
198 // recvBuf[0], default_value, len, key, valu
204 property_set(const char *key, const char *value) argument
241 property_list(void (*propfn)(const char *key, const char *value, void *cookie), void *cookie) argument
260 property_get(const char *key, char *value, const char *default_value) argument
294 property_set(const char *key, const char *value) argument
324 property_list(void (*propfn)(const char *key, const char *value, void *cookie), void *cookie) argument
[all...]
H A Dhashmap.c28 void* key; member in struct:Entry
37 int (*hash)(void* key);
44 int (*hash)(void* key), bool (*equals)(void* keyA, void* keyB)) {
78 * Hashes the given key.
80 static inline int hashKey(Hashmap* map, void* key) { argument
81 int h = map->hash(key);
155 int hashmapHash(void* key, size_t keySize) { argument
157 char* data = (char*) key;
166 static Entry* createEntry(void* key, int hash, void* value) { argument
171 entry->key
43 hashmapCreate(size_t initialCapacity, int (*hash)(void* key), bool (*equals)(void* keyA, void* keyB)) argument
189 hashmapPut(Hashmap* map, void* key, void* value) argument
221 hashmapGet(Hashmap* map, void* key) argument
236 hashmapContainsKey(Hashmap* map, void* key) argument
251 hashmapMemoize(Hashmap* map, void* key, void* (*initialValue)(void* key, void* context), void* context) argument
284 hashmapRemove(Hashmap* map, void* key) argument
306 hashmapForEach(Hashmap* map, bool (*callback)(void* key, void* value, void* context), void* context) argument
342 hashmapIntHash(void* key) argument
[all...]
H A Dstr_parms.c73 static bool remove_pair(void *key, void *value, void *context) argument
77 hashmapRemove(str_parms->map, key);
78 free(key);
112 char *key; local
119 key = strndup(kvpair, eq - kvpair);
125 key = strdup(kvpair);
130 old_val = hashmapPut(str_parms->map, key, value);
152 void str_parms_del(struct str_parms *str_parms, const char *key) argument
154 hashmapRemove(str_parms->map, (void *)key);
157 int str_parms_add_str(struct str_parms *str_parms, const char *key, argument
175 str_parms_add_int(struct str_parms *str_parms, const char *key, int value) argument
188 str_parms_add_float(struct str_parms *str_parms, const char *key, float value) argument
202 str_parms_get_str(struct str_parms *str_parms, const char *key, char *val, int len) argument
214 str_parms_get_int(struct str_parms *str_parms, const char *key, int *val) argument
230 str_parms_get_float(struct str_parms *str_parms, const char *key, float *val) argument
248 combine_strings(void *key, void *value, void *context) argument
282 dump_entry(void *key, void *value, void *context) argument
[all...]
/system/core/libpixelflinger/tinyutils/
H A DKeyedVector.h55 const VALUE& valueFor(const KEY& key) const;
58 ssize_t indexOfKey(const KEY& key) const;
64 VALUE& editValueFor(const KEY& key);
71 ssize_t add(const KEY& key, const VALUE& item);
72 ssize_t replaceValueFor(const KEY& key, const VALUE& item);
79 ssize_t removeItem(const KEY& key);
90 * valueFor() is called with a key that doesn't exist.
97 const VALUE& valueFor(const KEY& key) const;
111 ssize_t KeyedVector<KEY,VALUE>::indexOfKey(const KEY& key) const {
112 return mVector.indexOf( key_value_pair_t<KEY,VALUE>(key) );
133 editValueFor(const KEY& key) argument
145 add(const KEY& key, const VALUE& value) argument
150 replaceValueFor(const KEY& key, const VALUE& value) argument
166 removeItem(const KEY& key) argument
[all...]
H A DTypeHelpers.h206 * a key/value pair
211 KEY key; member in struct:android::key_value_pair_t
214 key_value_pair_t(const key_value_pair_t& o) : key(o.key), value(o.value) { }
215 key_value_pair_t(const KEY& k, const VALUE& v) : key(k), value(v) { }
216 key_value_pair_t(const KEY& k) : key(k) { }
218 return strictly_order_type(key, o.key);
/system/media/mca/filterfw/jni/
H A Djni_native_program.cpp107 jstring key,
110 LOGE("Native Program: Attempting to set null value for key %s!",
111 ToCppString(env, key).c_str());
115 const std::string c_key = ToCppString(env, key);
121 jstring key) {
123 const std::string c_key = ToCppString(env, key);
105 Java_android_filterfw_core_NativeProgram_callNativeSetValue(JNIEnv* env, jobject thiz, jstring key, jstring value) argument
119 Java_android_filterfw_core_NativeProgram_callNativeGetValue(JNIEnv* env, jobject thiz, jstring key) argument
/system/vold/
H A DDevmapper.cpp166 int Devmapper::create(const char *name, const char *loopFile, const char *key, argument
236 "twofish %s 0 %s 0", key, loopFile);
/system/extras/showslab/
H A Dshowslab.c243 * set_sort_func - return the slab_sort_func that matches the given key.
244 * On unrecognizable key, the call returns NULL.
246 static void * set_sort_func(char key) argument
248 switch (tolower(key)) {

Completed in 245 milliseconds

12