Searched defs:key (Results 151 - 175 of 3799) sorted by relevance

1234567891011>>

/external/openssl/crypto/evp/
H A De_bf.c67 static int bf_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
81 static int bf_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, argument
84 BF_set_key(&data(ctx)->ks,EVP_CIPHER_CTX_key_length(ctx),key);
H A De_cast.c68 static int cast_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
83 static int cast_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key, argument
86 CAST_set_key(&data(ctx)->ks,EVP_CIPHER_CTX_key_length(ctx),key);
/external/openssl/crypto/rsa/
H A Drsa_chk.c56 int RSA_check_key(const RSA *key) argument
63 if (!key->p || !key->q || !key->n || !key->e || !key->d)
84 r = BN_is_prime_ex(key->p, BN_prime_checks, NULL, NULL);
94 r = BN_is_prime_ex(key->q, BN_prime_checks, NULL, NULL);
104 r = BN_mul(i, key->p, key
[all...]
/external/qemu/android/utils/
H A Dintmap.h32 /* Returns TRUE if the map has a value for the 'key'. Necessary because
35 int aintmap_has( AIntMap* map, int key );
37 /* Get the value associated with a 'key', or NULL if not in map */
38 void* aintMap_get( AIntMap* map, int key );
40 /* Get the value associated with a 'key', or 'def' if not in map */
41 void* aintMap_getWithDefault( AIntMap* map, int key, void* def );
43 /* Set the value associated to a 'key', return the old value, if any, or NULL */
44 void* aintMap_set( AIntMap* map, int key, void* value );
46 /* Delete a given value associated to a 'key', return the old value, or NULL */
47 void* aintMap_del( AIntMap* map, int key );
65 int key; member in struct:AIntMapIterator
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/caca/
H A DSDL_cacaevents.c59 int key; local
62 case CACA_KEY_LEFT: key = SDLK_LEFT; break;
63 case CACA_KEY_RIGHT: key = SDLK_RIGHT; break;
64 case CACA_KEY_UP: key = SDLK_UP; break;
65 case CACA_KEY_DOWN: key = SDLK_DOWN; break;
66 default: key = event & 0xff; break;
69 /* printf("Key pressed: %d (%c)\n", key, key); */
70 keysym.scancode = key;
71 keysym.sym = key;
[all...]
/external/skia/include/core/
H A DSkAnnotation.h29 static SkAnnotation* Create(const char key[], SkData* value) { argument
30 return SkNEW_ARGS(SkAnnotation, (key, value));
38 * Return the data for the specified key, or NULL.
40 SkData* find(const char key[]) const;
45 SkAnnotation(const char key[], SkData* value);
60 * Returns the canonical key whose payload is a URL
65 * Returns the canonical key whose payload is the name of a destination to
71 * Returns the canonical key whose payload is the name of a destination to
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DFieldSection.java40 @Nonnull TypeKey getDefiningClass(@Nonnull FieldRefKey key); argument
41 @Nonnull TypeKey getFieldType(@Nonnull FieldRefKey key); argument
42 @Nonnull StringKey getName(@Nonnull FieldRefKey key); argument
43 int getFieldIndex(@Nonnull FieldKey key); argument
H A DIndexSection.java39 int getItemIndex(@Nonnull Key key); argument
H A DMethodSection.java40 @Nonnull TypeKey getDefiningClass(@Nonnull MethodRefKey key); argument
41 @Nonnull ProtoKey getPrototype(@Nonnull MethodRefKey key); argument
42 @Nonnull ProtoKey getPrototype(@Nonnull MethodKey key); argument
43 @Nonnull StringKey getName(@Nonnull MethodRefKey key); argument
44 int getMethodIndex(@Nonnull MethodKey key); argument
H A DOffsetSection.java39 int getItemOffset(@Nonnull Key key); argument
H A DProtoSection.java38 @Nonnull StringKey getShorty(@Nonnull ProtoKey key); argument
39 @Nonnull TypeKey getReturnType(@Nonnull ProtoKey key); argument
40 @Nullable TypeListKey getParameters(@Nonnull ProtoKey key); argument
H A DStringSection.java39 int getItemIndex(@Nonnull StringRef key); argument
H A DTypeListSection.java40 @Nonnull Collection<? extends TypeKey> getTypes(@Nullable TypeListKey key); argument
H A DTypeSection.java39 @Nonnull StringKey getString(@Nonnull TypeKey key); argument
40 int getItemIndex(@Nonnull TypeRef key); argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DBaseNullableOffsetPool.java41 @Override public int getNullableItemOffset(@Nullable Key key) { argument
42 if (key == null) {
45 return getItemOffset(key);
/external/smali/util/src/main/java/ds/tree/
H A DVisitor.java41 * when it finds a node matching the key given to it.
43 * @param key The key that matched the node
47 public void visit(String key, RadixTreeNode<T> parent, RadixTreeNode<T> node); argument
H A DVisitorImpl.java26 abstract public void visit(String key, RadixTreeNode<T> parent, RadixTreeNode<T> node); argument
/external/smali/util/src/main/java/org/jf/util/
H A DLinearSearch.java39 * Performs a linear search in a sorted list for key, starting at initialGuess
43 * @param key The key to search for
48 public static <T> int linearSearch(List<? extends T> list, Comparator<T> comparator, T key, int initialGuess) { argument
53 int comparison = comparator.compare(list.get(guess), key);
60 comparison = comparator.compare(list.get(guess), key);
73 comparison = comparator.compare(list.get(guess), key);
/external/smali/util/src/test/java/org/jf/util/
H A DLinearSearchTest.java96 private void doTest(List<Integer> list, int key, int guess) { argument
97 int expectedIndex = Ordering.natural().binarySearch(list, key);
99 Assert.assertEquals(expectedIndex, LinearSearch.linearSearch(list, Ordering.<Integer>natural(), key, guess));
/external/srtp/crypto/include/
H A Dprng.h25 aes_expanded_key_t key; /* secret key */ member in struct:__anon31205
/external/srtp/crypto/kernel/
H A Dkey.c2 * key.c
4 * key usage limits enforcement
45 #include "key.h"
50 key_limit_set(key_limit_t key, const xtd_seq_num_t s) { argument
58 key->num_left = s;
59 key->state = key_state_normal;
72 key_limit_check(const key_limit_t key) { argument
73 if (key->state == key_state_expired)
79 key_limit_update(key_limit_t key) { argument
81 if (low32(key
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dcrypto_none.c21 void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) argument
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dtlsv1_cred.h15 struct crypto_private_key *key; member in struct:tlsv1_credentials
/external/wpa_supplicant_8/src/crypto/
H A Dcrypto_none.c21 void des_encrypt(const u8 *clear, const u8 *key, u8 *cypher) argument
/external/wpa_supplicant_8/src/tls/
H A Dtlsv1_cred.h15 struct crypto_private_key *key; member in struct:tlsv1_credentials

Completed in 4037 milliseconds

1234567891011>>