Searched refs:key (Results 1 - 25 of 536) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/socs/
H A Domap44xx-int_meta.pl4 key:dest label
H A Domap44xx_meta.pl4 key:bsp_core label
10 key:hw_id, label
16 key:hw_id, label
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/include/linux/
H A Dlockdep.h36 #define lockdep_set_class(lock, key)
38 #define lockdep_set_class_and_name(lock, key, name)
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/camellia/
H A Dcmll_misc.c59 CAMELLIA_KEY *key)
61 if(!userKey || !key)
65 key->grand_rounds = Camellia_Ekeygen(bits , userKey, key->u.rd_key);
70 const CAMELLIA_KEY *key)
72 Camellia_EncryptBlock_Rounds(key->grand_rounds, in , key->u.rd_key , out);
76 const CAMELLIA_KEY *key)
78 Camellia_DecryptBlock_Rounds(key->grand_rounds, in , key
58 Camellia_set_key(const unsigned char *userKey, const int bits, CAMELLIA_KEY *key) argument
69 Camellia_encrypt(const unsigned char *in, unsigned char *out, const CAMELLIA_KEY *key) argument
75 Camellia_decrypt(const unsigned char *in, unsigned char *out, const CAMELLIA_KEY *key) argument
[all...]
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
/barrelfish-2018-10-04/lib/lwip2/src/netif/ppp/
H A Dpppcrypt.c52 /* IN 56 bit DES key missing parity bits
53 * OUT 64 bit DES key with parity bits added
55 void pppcrypt_56_to_64_bit_key(u_char *key, u_char * des_key) { argument
56 des_key[0] = pppcrypt_get_7bits(key, 0);
57 des_key[1] = pppcrypt_get_7bits(key, 7);
58 des_key[2] = pppcrypt_get_7bits(key, 14);
59 des_key[3] = pppcrypt_get_7bits(key, 21);
60 des_key[4] = pppcrypt_get_7bits(key, 28);
61 des_key[5] = pppcrypt_get_7bits(key, 35);
62 des_key[6] = pppcrypt_get_7bits(key, 4
[all...]
/barrelfish-2018-10-04/include/lwip2/netif/ppp/
H A Dpppcrypt.c52 /* IN 56 bit DES key missing parity bits
53 * OUT 64 bit DES key with parity bits added
55 void pppcrypt_56_to_64_bit_key(u_char *key, u_char * des_key) { argument
56 des_key[0] = pppcrypt_get_7bits(key, 0);
57 des_key[1] = pppcrypt_get_7bits(key, 7);
58 des_key[2] = pppcrypt_get_7bits(key, 14);
59 des_key[3] = pppcrypt_get_7bits(key, 21);
60 des_key[4] = pppcrypt_get_7bits(key, 28);
61 des_key[5] = pppcrypt_get_7bits(key, 35);
62 des_key[6] = pppcrypt_get_7bits(key, 4
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/CPViz/viztool/src/components/
H A DMissingListenerException.java38 private String key; field in class:MissingListenerException
45 * @param key the key for the missing listener.
47 public MissingListenerException(String s, String className, String key) { argument
50 this.key = key;
64 return key;
H A DActionMap.java33 * @param key the key mapped with the action to get
36 Action getAction(String key) throws MissingListenerException; argument
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/des/
H A Ddes_old2.c79 void _ossl_096_des_random_seed(DES_cblock *key) argument
81 RAND_seed(key, sizeof(DES_cblock));
/barrelfish-2018-10-04/usr/eclipseclp/CPViz/viz/src/ie/ucc/cccc/viz/
H A DTuple.java40 * @param key String
43 public void add(String key,FullDomain value){ argument
44 map.put(key,value);
48 * get the domain associated to the tuple field with name key
49 * @param key string
52 public FullDomain getField(String key){ argument
53 return map.get(key);
H A DValueMap.java36 ValueKey key = new ValueKey(name,value);
37 if (m.containsKey(key)){
38 m.put(key,m.get(key)+1);
40 m.put(key,1);
/barrelfish-2018-10-04/lib/libc/tests/stdlib/
H A Dtsearch_test.c85 int key = nrand48(random_state) % NKEYS; local
88 if (present[key]) {
89 ATF_CHECK(tdelete(&key, &root, compar) != NULL);
90 present[key] = false;
93 tdelete(&key, &root, compar));
97 if (present[key]) {
98 ATF_CHECK_EQ(&keys[key],
99 *(int **)tfind(&key, &root, compar));
101 ATF_CHECK_EQ(NULL, tfind(&key, &root, compar));
105 if (present[key]) {
[all...]
/barrelfish-2018-10-04/usr/replay/
H A Dhash.h11 /* key, value for hash entry */
12 unsigned long key; member in struct:hash_entry_st
34 * hash_lookup: find the value of the given key
37 unsigned long hash_lookup(hash_t *hash, unsigned long key);
40 * hash_insert: insert a new value for the given key
41 * If an entry for the key exists, just replace it
43 void hash_insert(hash_t *hash, unsigned long key, unsigned long val);
49 unsigned long hash_delete(hash_t *hash, unsigned long key);
63 static inline unsigned long hash_fn(hash_t *hash, unsigned long key) argument
65 return (key
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/modes/
H A Dmodes.h12 const void *key);
15 size_t len, const void *key,
19 size_t len, const void *key,
22 size_t len, const void *key,
26 size_t len, const void *key,
31 size_t len, const void *key,
36 size_t len, const void *key,
40 size_t length, const void *key,
44 size_t bits, const void *key,
49 size_t len, const void *key,
[all...]
/barrelfish-2018-10-04/include/openssl/
H A Dmodes.h12 const void *key);
15 size_t len, const void *key,
19 size_t len, const void *key,
22 size_t len, const void *key,
26 size_t len, const void *key,
31 size_t len, const void *key,
36 size_t len, const void *key,
40 size_t length, const void *key,
44 size_t bits, const void *key,
49 size_t len, const void *key,
[all...]
H A Daes.h89 AES_KEY *key);
91 AES_KEY *key);
94 const AES_KEY *key);
96 const AES_KEY *key);
99 const AES_KEY *key, const int enc);
101 size_t length, const AES_KEY *key,
104 size_t length, const AES_KEY *key,
107 size_t length, const AES_KEY *key,
110 size_t length, const AES_KEY *key,
113 size_t length, const AES_KEY *key,
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/rsa/
H A Drsa_test.c22 key->n = BN_bin2bn(n, sizeof(n)-1, key->n); \
23 key->e = BN_bin2bn(e, sizeof(e)-1, key->e); \
24 key->d = BN_bin2bn(d, sizeof(d)-1, key->d); \
25 key->p = BN_bin2bn(p, sizeof(p)-1, key->p); \
26 key->q = BN_bin2bn(q, sizeof(q)-1, key
33 key1(RSA *key, unsigned char *c) argument
82 key2(RSA *key, unsigned char *c) argument
127 key3(RSA *key, unsigned char *c) argument
214 RSA *key; local
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/test/
H A Drsa_test.c22 key->n = BN_bin2bn(n, sizeof(n)-1, key->n); \
23 key->e = BN_bin2bn(e, sizeof(e)-1, key->e); \
24 key->d = BN_bin2bn(d, sizeof(d)-1, key->d); \
25 key->p = BN_bin2bn(p, sizeof(p)-1, key->p); \
26 key->q = BN_bin2bn(q, sizeof(q)-1, key
33 key1(RSA *key, unsigned char *c) argument
82 key2(RSA *key, unsigned char *c) argument
127 key3(RSA *key, unsigned char *c) argument
214 RSA *key; local
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/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_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
H A Daes.h89 AES_KEY *key);
91 AES_KEY *key);
94 const AES_KEY *key);
96 const AES_KEY *key);
99 const AES_KEY *key, const int enc);
101 size_t length, const AES_KEY *key,
104 size_t length, const AES_KEY *key,
107 size_t length, const AES_KEY *key,
110 size_t length, const AES_KEY *key,
113 size_t length, const AES_KEY *key,
[all...]
/barrelfish-2018-10-04/lib/libc/iconv/
H A Dcitrus_hash.c44 _citrus_string_hash_func(const char *key, int hashsize) argument
48 _region_init(&r, __DECONST(void *, key), strlen(key));
/barrelfish-2018-10-04/lib/openssl-1.0.0d/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...]

Completed in 133 milliseconds

1234567891011>>