Searched refs:key (Results 51 - 75 of 2503) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/compile/
H A Dpr21532.c4 bar (unsigned char key) argument
11 buf_[b] = key >> b;
H A Dinit-1.c3 char *key; member in struct:__anon3690
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/wind/
H A Dcombining.c43 translation_cmp(const void *key, const void *data) argument
45 const struct translation *t1 = (const struct translation *)key;
48 return t1->key - t2->key;
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/aes/
H A Daes_ecb.c63 const AES_KEY *key, const int enc) {
65 assert(in && out && key);
69 AES_encrypt(in, out, key);
71 AES_decrypt(in, out, key);
62 AES_ecb_encrypt(const unsigned char *in, unsigned char *out, const AES_KEY *key, const int enc) argument
H A Daes_misc.c70 AES_KEY *key)
75 return private_AES_set_encrypt_key(userKey, bits, key);
79 AES_KEY *key)
84 return private_AES_set_decrypt_key(userKey, bits, key);
69 AES_set_encrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
78 AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
H A Daes_cbc.c56 size_t len, const AES_KEY *key,
60 CRYPTO_cbc128_encrypt(in,out,len,key,ivec,(block128_f)AES_encrypt);
62 CRYPTO_cbc128_decrypt(in,out,len,key,ivec,(block128_f)AES_decrypt);
55 AES_cbc_encrypt(const unsigned char *in, unsigned char *out, size_t len, const AES_KEY *key, unsigned char *ivec, const int enc) argument
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/camellia/
H A Dcmll_ecb.c63 const CAMELLIA_KEY *key, const int enc)
66 assert(in && out && key);
70 Camellia_encrypt(in, out, key);
72 Camellia_decrypt(in, out, key);
62 Camellia_ecb_encrypt(const unsigned char *in, unsigned char *out, const CAMELLIA_KEY *key, const int enc) argument
H A Dcmll_cbc.c56 size_t len, const CAMELLIA_KEY *key,
61 CRYPTO_cbc128_encrypt(in,out,len,key,ivec,(block128_f)Camellia_encrypt);
63 CRYPTO_cbc128_decrypt(in,out,len,key,ivec,(block128_f)Camellia_decrypt);
55 Camellia_cbc_encrypt(const unsigned char *in, unsigned char *out, size_t len, const CAMELLIA_KEY *key, unsigned char *ivec, const int enc) argument
H A Dcamellia.h93 CAMELLIA_KEY *key);
96 CAMELLIA_KEY *key);
99 const CAMELLIA_KEY *key);
101 const CAMELLIA_KEY *key);
104 const CAMELLIA_KEY *key, const int enc);
106 size_t length, const CAMELLIA_KEY *key,
109 size_t length, const CAMELLIA_KEY *key,
112 size_t length, const CAMELLIA_KEY *key,
115 size_t length, const CAMELLIA_KEY *key,
118 size_t length, const CAMELLIA_KEY *key,
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A Dinit-1.c3 char *key; member in struct:__anon5334
/netbsd-6-1-5-RELEASE/lib/libc/db/hash/
H A Dhash_func.c62 * Assume that we've already split the bucket to which this key hashes,
74 const uint8_t *key;
78 for (key = keyarg, h = 0; len--;)
79 h = h * PRIME1 ^ (*key++ - ' ');
92 const uint8_t *e, *key;
96 key = keyarg;
97 e = key + len;
98 for (h = 0; key != e;) {
99 c = *key++;
100 if (!c && key >
166 const uint8_t *key; local
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/
H A Dgthr-rtems.h59 extern int rtems_gxx_key_create (__gthread_key_t *key, void (*dtor) (void *));
60 extern int rtems_gxx_key_delete (__gthread_key_t key);
61 extern void *rtems_gxx_getspecific (__gthread_key_t key);
62 extern int rtems_gxx_setspecific (__gthread_key_t key, const void *ptr);
91 __gthread_key_create (__gthread_key_t *key, void (*dtor) (void *)) argument
93 return rtems_gxx_key_create( key, dtor );
97 __gthread_key_delete (__gthread_key_t key) argument
99 return rtems_gxx_key_delete (key);
103 __gthread_getspecific (__gthread_key_t key) argument
105 return rtems_gxx_getspecific (key);
109 __gthread_setspecific(__gthread_key_t key, const void *ptr) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/crypto/cast128/
H A Dcast128.h19 void cast128_setkey(cast128_key *key, const u_int8_t *rawkey, int keybytes);
20 void cast128_encrypt(const cast128_key *key, const u_int8_t *inblock,
22 void cast128_decrypt(const cast128_key *key, const u_int8_t *inblock,
/netbsd-6-1-5-RELEASE/lib/libc/citrus/
H A Dcitrus_hash.c47 _citrus_string_hash_func(const char *key, int hashsize) argument
51 _region_init(&r, __UNCONST(key), strlen(key));
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libobjc/
H A Dhash_compat.c45 hash_add (cache_ptr *cachep, const void *key, void *value) argument
47 objc_hash_add(cachep, key, value);
51 hash_remove (cache_ptr cache, const void *key) argument
53 objc_hash_remove (cache, key);
63 hash_value_for_key (cache_ptr cache, const void *key) argument
65 return objc_hash_value_for_key (cache, key);
69 hash_is_key_in_hash (cache_ptr cache, const void *key) argument
71 return objc_hash_is_key_in_hash (cache, key);
75 hash_ptr (cache_ptr cache, const void *key) argument
77 return objc_hash_ptr (cache, key);
81 hash_string(cache_ptr cache, const void *key) argument
[all...]
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/util/
H A Dnvtable.c13 /* char *key;
22 /* NVTABLE_INFO *nvtable_update(table, key, value)
24 /* const char *key;
27 /* char *nvtable_find(table, key)
29 /* const char *key;
31 /* NVTABLE_INFO *nvtable_locate(table, key)
33 /* const char *key;
35 /* void nvtable_delete(table, key)
37 /* const char *key;
53 /* of a unique string-valued lookup key an
113 nvtable_update(NVTABLE * table, const char *key, const char *value) argument
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/isdn/dtmfdecode/
H A Ddtmfdecode.c76 char key[256]; local
86 key[i] = '?';
91 key[0x00] = '\0';
93 key[0x11] = '1'; key[0x12] = '4'; key[0x14] = '7'; key[0x18] = '*';
94 key[0x21] = '2'; key[0x22] = '5'; key[
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/ypserv/revnetgroup/
H A Dhash.c66 const u_char *key; local
70 #define HASHC h = *key++ + 65599 * h
73 key = keyarg;
109 * Generate a hash value for a given key (character string).
114 hashkey(const char *key) argument
117 if (key == NULL)
119 return(hash((const void *)key, strlen(key)) & HASH_MASK);
124 lookup(struct group_entry **table, const char *key) argument
128 cur = table[hashkey(key)];
157 store(struct group_entry *table[], const char *key, const char *data) argument
186 mstore(struct member_entry *table[], const char *key, const char *data, const char *domain) argument
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/tmux/dist/
H A Dcmd-list-keys.c26 * List key bindings.
36 "[-t key-table]",
48 const char *key; local
60 key = key_string_lookup_key(bd->key & ~KEYC_PREFIX);
61 if (key == NULL)
64 keywidth = strlen(key);
65 if (!(bd->key & KEYC_PREFIX)) {
77 key = key_string_lookup_key(bd->key
108 const char *key, *cmdstr, *mode; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.target/i386/
H A Dpr34312.c27 JamoNormMap key; local
29 key.seq[0] = 0;
30 key.seq[1] = 1;
31 key.seq[2] = 2;
33 JamoClusterSearch (key, aClusters, aClustersSize);
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/cast/
H A Dcasts.cpp39 CAST_KEY key; local
45 CAST_set_key(&key, 16,d);
51 CAST_encrypt(&data[0],&key);
53 CAST_encrypt(&data[0],&key);
54 CAST_encrypt(&data[0],&key);
55 CAST_encrypt(&data[0],&key);
58 CAST_encrypt(&data[0],&key);
59 CAST_encrypt(&data[0],&key);
60 CAST_encrypt(&data[0],&key);
61 CAST_encrypt(&data[0],&key);
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/rc5/
H A Drc5s.cpp39 RC5_32_KEY key; local
45 RC5_32_set_key(&key, 16,d,12);
51 RC5_32_encrypt(&data[0],&key);
53 RC5_32_encrypt(&data[0],&key);
54 RC5_32_encrypt(&data[0],&key);
55 RC5_32_encrypt(&data[0],&key);
58 RC5_32_encrypt(&data[0],&key);
59 RC5_32_encrypt(&data[0],&key);
60 RC5_32_encrypt(&data[0],&key);
61 RC5_32_encrypt(&data[0],&key);
[all...]
/netbsd-6-1-5-RELEASE/sbin/mount_portal/
H A Dportald.h66 char *key, char **v, int *fdp);
74 char *key, char **v, int *fdp);
76 char *key, char **v, int *fdp);
78 char *key, char **v, int *fdp);
80 char *key, char **v, int *fdp);
82 char *key, char **v, int *fdp);
89 extern char **conf_match(qelem *q, char *key);
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/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...]
/netbsd-6-1-5-RELEASE/crypto/external/cpl/trousers/dist/src/tcs/
H A Dtcs_key.c37 TSS_KEY key, *pKey; local
43 if ((result = UnloadBlob_TSS_KEY(&offset, blob, &key)))
46 if ((tcsHandle = mc_get_handle_by_pub(&key.pubKey, hParent)) == NULL_TCS_HANDLE) {
47 pKey = &key;
55 LogDebugFn("No existing key handle for this key, creating new one...");
65 LogError("Error marking key as loaded");
78 destroy_key_refs(&key);
82 /* Check that the context has this key loaded and return the associated slot. Do not search PS if
83 * the key i
153 TSS_KEY key; local
423 UnloadBlob_TSS_KEY(UINT64 *offset, BYTE *blob, TSS_KEY *key) argument
517 LoadBlob_TSS_KEY(UINT64 *offset, BYTE * blob, TSS_KEY * key) argument
536 LoadBlob_PUBKEY(UINT64 *offset, BYTE * blob, TCPA_PUBKEY * key) argument
543 UnloadBlob_PUBKEY(UINT64 *offset, BYTE *blob, TCPA_PUBKEY *key) argument
571 destroy_key_refs(TSS_KEY *key) argument
[all...]

Completed in 185 milliseconds

1234567891011>>