HomeSort by relevance Sort by last modified time
    Searched defs:key (Results 51 - 75 of 6968) sorted by null

1 23 4 5 6 7 8 91011>>

  /device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/include/
key.h 42 * One instance of this structure must be created for each key, usually in an
47 int id; /* Key id */
48 const char *desc; /* Key description (debug purposes) */
49 char *fn; /* Filename to load/store the key */
50 EVP_PKEY *key; /* Key container */ member in struct:key_s
53 int key_new(key_t *key);
54 int key_load(key_t *key);
55 int key_store(key_t *key);
  /external/boringssl/src/crypto/aes/
aes_test.cc 29 std::vector<uint8_t> key, plaintext, ciphertext; local
30 if (!t->GetBytes(&key, "Key") ||
43 if (AES_set_encrypt_key(key.data(), 8 * key.size(), &aes_key) != 0) {
66 if (AES_set_decrypt_key(key.data(), 8 * key.size(), &aes_key) != 0) {
100 std::vector<uint8_t> key, plaintext, ciphertext; local
101 if (!t->GetBytes(&key, "Key") ||
    [all...]
  /external/boringssl/src/crypto/poly1305/
poly1305_test.cc 28 const std::vector<uint8_t> &key,
32 CRYPTO_poly1305_init(&state, key.data());
76 std::vector<uint8_t> key, in, mac; local
77 if (!t->GetBytes(&key, "Key") ||
82 if (key.size() != 32 || mac.size() != 16) {
89 CRYPTO_poly1305_init(&state, key.data());
100 CRYPTO_poly1305_init(&state, key.data());
112 if (!TestSIMD(t, 0, key, in, mac) ||
113 !TestSIMD(t, 16, key, in, mac) |
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
KeyParameter.java 8 private byte[] key; field in class:KeyParameter
11 byte[] key)
13 this(key, 0, key.length);
17 byte[] key,
21 this.key = new byte[keyLen];
23 System.arraycopy(key, keyOff, this.key, 0, keyLen);
28 return key;
  /external/cmockery/cmockery_0_1_2/src/example/
key_value.c 21 unsigned int key; member in struct:KeyValue
34 // Compare two key members of KeyValue structures.
36 return (int)((KeyValue*)a)->key - (int)((KeyValue*)b)->key;
39 // Search an array of key value pairs for the item with the specified value.
50 // Sort an array of key value pairs by key.
  /external/curl/lib/
splay.h 29 struct Curl_tree *same; /* points to a node with identical key */
30 struct timeval key; /* this node's "sort" key */ member in struct:Curl_tree
37 struct Curl_tree *Curl_splayinsert(struct timeval key,
42 struct Curl_tree *Curl_splayremove(struct timeval key,
47 struct Curl_tree *Curl_splaygetbest(struct timeval key,
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
BindingKey.java 21 * A value object that pairs a {@link Key} with the style of its binding (i.e., whether it's a
29 /** The style of binding that makes a {@link Key} available. */
34 static BindingKey create(Kind kind, Key key) {
35 return new AutoValue_BindingKey(kind, key);
39 abstract Key key(); method in class:BindingKey
  /external/deqp/framework/delibs/depool/
dePoolSet.c 86 deInt16 key = deTestSetIter_getKey(&iter); local
87 DE_TEST_ASSERT(deInBounds32(key, 1000, 5000) || deInBounds32(key, 10000, 12000));
88 DE_TEST_ASSERT(deTestSet_exists(set, key));
  /external/deqp/framework/delibs/dethread/unix/
deThreadLocalUnix.c 38 DE_INLINE deThreadLocal keyToThreadLocal (pthread_key_t key)
40 return (deThreadLocal)(key + 1);
51 pthread_key_t key = (pthread_key_t)0; local
52 if (pthread_key_create(&key, DE_NULL) != 0)
54 return keyToThreadLocal(key);
  /external/guava/guava-gwt/src/com/google/common/collect/
SingletonImmutableBiMap_CustomFieldSerializer.java 38 Object key = checkNotNull(reader.readObject()); local
40 return new SingletonImmutableBiMap<Object, Object>(key, value);
  /external/guice/core/src/com/google/inject/name/
Names.java 20 import com.google.inject.Key;
43 * Creates a constant binding to {@code @Named(key)} for each entry in
49 String key = entry.getKey(); local
51 binder.bind(Key.get(String.class, new NamedImpl(key))).toInstance(value);
56 * Creates a constant binding to {@code @Named(key)} for each property. This
67 binder.bind(Key.get(String.class, new NamedImpl(propertyName))).toInstance(value);
  /external/icu/icu4c/source/common/
ucat.c 21 /* Maximum length of a set_num/msg_num key, incl. terminating zero.
22 * Longest possible key is "-2147483648%-2147483648" */
26 * Fill in buffer with a set_num/msg_num key string, given the numeric
54 char key[MAX_KEY_LEN]; local
62 _catkey(key, set_num, msg_num),
  /external/icu/icu4c/source/tools/gentest/
genres32.c 19 * number of key characters and number of items both exceed 64k.
29 incKey(char *key, char *limit) {
32 while(limit>key) {
46 * key string, gets incremented binary numbers
52 char key[20]="ooooooooooooooooo"; local
72 /* find the limit of the key string */
73 for(limit=key; *limit!=0; ++limit) {
88 fprintf(out, "%s{\"\\U%08x\"}\n", key, i);
91 fprintf(out, "%s:int{%d}\n", key, i);
94 incKey(key, limit)
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/
HeaderProperty.java 5 * HeaderProperty is a key - value pojo for storing http header properties.
8 private String key; field in class:HeaderProperty
11 public HeaderProperty(String key, String value) {
12 this.key = key;
17 return key;
20 public void setKey(String key) {
21 this.key = key;
  /external/libchrome/crypto/
symmetric_key.h 28 // Wraps a platform-specific symmetric key and allows it to be held in a
32 // Defines the algorithm that a key will be used with. See also
41 // Generates a random key suitable to be used with |algorithm| and of
48 // Derives a key from the supplied password and salt using PBKDF2, suitable
50 // used to derive the key from the password. |key_size_in_bits| must be a
60 // Imports an array of key bytes in |raw_key|. This key may have been
62 // GetRawKey, or via another compatible method. The key must be of suitable
67 HCRYPTKEY key() const { return key_.get(); } function in class:crypto::SymmetricKey
69 const std::string& key() { return key_; function in class:crypto::SymmetricKey
71 PK11SymKey* key() const { return key_.get(); } function in class:crypto::SymmetricKey
    [all...]
  /external/libevent/include/event2/
keyvalq_struct.h 55 * Key-Value pairs. Can be used for HTTP headers but also for
61 char *key; member in struct:evkeyval
  /external/ltp/testcases/kernel/mem/shmt/
shmt02.c 60 key_t key; local
63 key = (key_t) getpid();
67 if ((shmid = shmget(key, 16 * K_1, IPC_CREAT | 0666)) < 0) {
shmt05.c 52 key_t key[2]; variable
65 key[0] = (key_t) lrand48();
66 key[1] = (key_t) lrand48();
73 if ((shmid = shmget(key[0], SIZE, IPC_CREAT | 0666)) < 0) {
91 if ((shmid1 = shmget(key[1], SIZE, IPC_CREAT | 0666)) < 0) {
shmt07.c 64 key_t key; local
66 key = (key_t) getpid();
72 if ((shmid = shmget(key, SIZE, IPC_CREAT | 0666)) < 0) {
shmt08.c 52 key_t key; variable
61 key = (key_t) getpid();
65 if ((shmid = shmget(key, 24 * K_1, IPC_CREAT | 0666)) < 0) {
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setspecific/
1-2.c 10 * shall acssociate a thread-specific value with a key obtained via a previouse call to
11 * pthread_key_create. Different threads may bind different values to the same key.
12 * Calling pthread_setspecific with a key value not obtiained from pthread_key_create of after
13 * the key has been deleted with pthread_key_delete is undefined.
16 * 1. Create a key
17 * 2. Bind a value from the main thread to this key
18 * 3. Create a thread and bind another value to this key
19 * 4. Compare the values bound to the key between the main thread and the newly created thread,
33 pthread_key_t key; variable
39 /* Bind a value to key for this thread (this will be different from the valu
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_surface.h 47 struct svga_host_surface_cache_key key; member in struct:svga_surface
73 struct svga_host_surface_cache_key *key); /* OUT */
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
HelpCommandHandler.java 46 String key = StringUtil.join(parameters, " "); local
47 String help = getServerConfiguration().getHelpText(key);
49 sendReply(session, ReplyCodes.HELP_OK, "help.noHelpTextDefined", list(key));
  /external/strace/
ipc_msg.c 47 const int key = (int) tcp->u_arg[0]; local
48 if (key)
49 tprintf("%#x", key);
  /external/syslinux/com32/libutil/
keyname.c 31 * Conversion between strings and get_key() key numbers.
46 int key; member in struct:keyname
102 return name->key; /* KEY_NONE at end of array */
105 const char *key_code_to_name(int key)
110 if (key < 0)
113 if (key > ' ' && key < 0x100) {
114 if (key & 0x60) {
115 buf[0] = key;
119 buf[1] = key | 0x40
    [all...]

Completed in 708 milliseconds

1 23 4 5 6 7 8 91011>>