Home
last modified time | relevance | path

Searched refs:key1 (Results 76 - 100 of 351) sorted by relevance

12345678910>>...15

/third_party/mesa3d/src/gallium/tests/unit/
H A Du_cache_test.c61 cache_test_compare(const void *key1, const void *key2) { in cache_test_compare() argument
62 return !(key1 == key2); in cache_test_compare()
/third_party/mesa3d/src/util/
H A Du_hash_table.c73 static bool equal_fd(const void *key1, const void *key2) in equal_fd() argument
76 int fd1 = pointer_to_intptr(key1); in equal_fd()
/third_party/selinux/libsepol/include/sepol/policydb/
H A Dhashtab.h42 int (*keycmp) (struct hashtab_val * h, const_hashtab_key_t key1, const_hashtab_key_t key2); /* key comparison function */
57 const_hashtab_key_t key1,
/kernel/linux/linux-5.10/arch/arm64/crypto/
H A Daes-glue.c111 struct crypto_aes_ctx key1; member
116 struct crypto_aes_ctx key1; member
149 ret = aes_expandkey(&ctx->key1, in_key, key_len / 2); in xts_set_key()
164 ret = aes_expandkey(&ctx->key1, in_key, key_len); in essiv_cbc_set_key()
405 int err, rounds = 6 + ctx->key1.key_length / 4; in essiv_cbc_encrypt()
415 ctx->key1.key_enc, rounds, blocks, in essiv_cbc_encrypt()
427 int err, rounds = 6 + ctx->key1.key_length / 4; in essiv_cbc_decrypt()
437 ctx->key1.key_dec, rounds, blocks, in essiv_cbc_decrypt()
511 int err, first, rounds = 6 + ctx->key1.key_length / 4; in xts_encrypt()
550 ctx->key1 in xts_encrypt()
[all...]
/kernel/linux/linux-6.6/arch/arm64/crypto/
H A Daes-glue.c117 struct crypto_aes_ctx key1; member
122 struct crypto_aes_ctx key1; member
155 ret = aes_expandkey(&ctx->key1, in_key, key_len / 2); in xts_set_key()
170 ret = aes_expandkey(&ctx->key1, in_key, key_len); in essiv_cbc_set_key()
411 int err, rounds = 6 + ctx->key1.key_length / 4; in essiv_cbc_encrypt()
421 ctx->key1.key_enc, rounds, blocks, in essiv_cbc_encrypt()
433 int err, rounds = 6 + ctx->key1.key_length / 4; in essiv_cbc_decrypt()
443 ctx->key1.key_dec, rounds, blocks, in essiv_cbc_decrypt()
545 int err, first, rounds = 6 + ctx->key1.key_length / 4; in xts_encrypt()
584 ctx->key1 in xts_encrypt()
[all...]
/third_party/gn/src/gn/
H A Dstring_atom_unittest.cc16 StringAtom key1; in TEST() local
19 ASSERT_STREQ(key1.str().c_str(), ""); in TEST()
21 ASSERT_EQ(&key1.str(), &key2.str()); in TEST()
/third_party/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_screen.c51 static bool vmw_dev_compare(const void *key1, const void *key2) in vmw_dev_compare() argument
53 return (major(*(dev_t *)key1) == major(*(dev_t *)key2) && in vmw_dev_compare()
54 minor(*(dev_t *)key1) == minor(*(dev_t *)key2)); in vmw_dev_compare()
/kernel/linux/linux-5.10/net/mptcp/
H A Dcrypto.c44 void mptcp_crypto_hmac_sha(u64 key1, u64 key2, u8 *msg, int len, void *hmac) in mptcp_crypto_hmac_sha() argument
54 put_unaligned_be64(key1, key1be); in mptcp_crypto_hmac_sha()
/kernel/linux/linux-6.6/net/mptcp/
H A Dcrypto.c44 void mptcp_crypto_hmac_sha(u64 key1, u64 key2, u8 *msg, int len, void *hmac) in mptcp_crypto_hmac_sha() argument
54 put_unaligned_be64(key1, key1be); in mptcp_crypto_hmac_sha()
/test/xts/hats/kernel/syscall_ipc/shmget/
H A DShmgetApiTest.cpp114 key_t key1 = ftok("shmfile1", 65); in HWTEST_F() local
117 int shmid1 = shmget(key1, MEM_SIZE, IPC_CREAT | 0666); in HWTEST_F()
/third_party/icu/icu4c/source/i18n/
H A Dscriptset.h78 uhash_compareScriptSet(const UElement key1, const UElement key2);
87 uhash_equalsScriptSet(const UElement key1, const UElement key2);
H A Dscriptset.cpp282 uhash_equalsScriptSet(const UElement key1, const UElement key2) { in uhash_equalsScriptSet() argument
283 icu::ScriptSet *s1 = static_cast<icu::ScriptSet *>(key1.pointer); in uhash_equalsScriptSet()
289 uhash_compareScriptSet(UElement key0, UElement key1) { in uhash_compareScriptSet() argument
291 icu::ScriptSet *s1 = static_cast<icu::ScriptSet *>(key1.pointer); in uhash_compareScriptSet()
/third_party/node/deps/icu-small/source/i18n/
H A Dscriptset.h78 uhash_compareScriptSet(const UElement key1, const UElement key2);
87 uhash_equalsScriptSet(const UElement key1, const UElement key2);
H A Dscriptset.cpp282 uhash_equalsScriptSet(const UElement key1, const UElement key2) { in uhash_equalsScriptSet() argument
283 icu::ScriptSet *s1 = static_cast<icu::ScriptSet *>(key1.pointer); in uhash_equalsScriptSet()
289 uhash_compareScriptSet(UElement key0, UElement key1) { in uhash_compareScriptSet() argument
291 icu::ScriptSet *s1 = static_cast<icu::ScriptSet *>(key1.pointer); in uhash_compareScriptSet()
/third_party/python/Include/internal/
H A Dpycore_hashtable.h45 typedef int (*_Py_hashtable_compare_func) (const void *key1, const void *key2);
78 const void *key1,
/third_party/selinux/libsepol/cil/src/
H A Dcil_strpool.c62 static int cil_strpool_compare(hashtab_t h __attribute__ ((unused)), const_hashtab_key_t key1, const_hashtab_key_t key2) in cil_strpool_compare() argument
64 return strcmp(key1, key2); in cil_strpool_compare()
/third_party/openssl/test/
H A Digetest.c81 const unsigned char key1[32]; member
93 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, /* key1 */
116 0x64, 0x28, 0x0f, 0x23, 0xad, 0x74, 0xac, 0x37}, /* key1 */
194 AES_KEY key1; in test_bi_ige_vectors() local
202 AES_set_encrypt_key(v->key1, 8 * v->keysize, &key1); in test_bi_ige_vectors()
205 AES_set_decrypt_key(v->key1, 8 * v->keysize, &key1); in test_bi_ige_vectors()
209 AES_bi_ige_encrypt(v->in, buf, v->length, &key1, &key2, v->iv, in test_bi_ige_vectors()
213 test_output_memory("key 1", v->key1, sizeo in test_bi_ige_vectors()
[all...]
/kernel/linux/linux-5.10/crypto/
H A Dxcbc.c57 u8 key1[XCBC_BLOCKSIZE]; in crypto_xcbc_digest_setkey() local
58 int bs = sizeof(key1); in crypto_xcbc_digest_setkey()
65 crypto_cipher_encrypt_one(ctx->child, key1, (u8 *)ks); in crypto_xcbc_digest_setkey()
67 return crypto_cipher_setkey(ctx->child, key1, bs); in crypto_xcbc_digest_setkey()
/kernel/linux/linux-5.10/drivers/infiniband/sw/rxe/
H A Drxe_verbs.h17 static inline int pkey_match(u16 key1, u16 key2) in pkey_match() argument
19 return (((key1 & 0x7fff) != 0) && in pkey_match()
20 ((key1 & 0x7fff) == (key2 & 0x7fff)) && in pkey_match()
21 ((key1 & 0x8000) || (key2 & 0x8000))) ? 1 : 0; in pkey_match()
/kernel/linux/linux-6.6/crypto/
H A Dxcbc.c58 u8 key1[XCBC_BLOCKSIZE]; in crypto_xcbc_digest_setkey() local
59 int bs = sizeof(key1); in crypto_xcbc_digest_setkey()
66 crypto_cipher_encrypt_one(ctx->child, key1, (u8 *)ks); in crypto_xcbc_digest_setkey()
68 return crypto_cipher_setkey(ctx->child, key1, bs); in crypto_xcbc_digest_setkey()
/kernel/linux/linux-6.6/drivers/infiniband/sw/rxe/
H A Drxe_verbs.h16 static inline int pkey_match(u16 key1, u16 key2) in pkey_match() argument
18 return (((key1 & 0x7fff) != 0) && in pkey_match()
19 ((key1 & 0x7fff) == (key2 & 0x7fff)) && in pkey_match()
20 ((key1 & 0x8000) || (key2 & 0x8000))) ? 1 : 0; in pkey_match()
/third_party/node/deps/v8/src/execution/arm64/
H A Dpointer-auth-arm64.cc154 uint64_t key1 = key.low; in ComputePAC() local
166 round_key = key1 ^ running_mod; in ComputePAC()
184 working_val ^= key1; in ComputePAC()
199 round_key = key1 ^ running_mod; in ComputePAC()
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dscriptset.cpp282 uhash_equalsScriptSet(const UElement key1, const UElement key2) { in uhash_equalsScriptSet() argument
283 icu::ScriptSet *s1 = static_cast<icu::ScriptSet *>(key1.pointer); in uhash_equalsScriptSet()
289 uhash_compareScriptSet(UElement key0, UElement key1) { in uhash_compareScriptSet() argument
291 icu::ScriptSet *s1 = static_cast<icu::ScriptSet *>(key1.pointer); in uhash_compareScriptSet()
/third_party/node/deps/openssl/openssl/crypto/aes/asm/
H A Daesv8-armx.pl2225 my ($inp,$out,$len,$key1,$key2,$ivp)=map("x$_",(0..5));
2288 ldr $rounds,[$key1,#240]
2289 vld1.32 {q20-q21},[$key1],#32 // load key schedule...
2293 vld1.32 {q8-q9},[$key1],#32 // load key schedule...
2301 vld1.32 {q8},[$key1],#16 // load key schedule...
2304 vld1.32 {q9},[$key1],#16 // load key schedule...
2308 vld1.32 {q10-q11},[$key1],#32 // load key schedule...
2313 vld1.32 {q12-q13},[$key1],#32 // load key schedule...
2318 vld1.32 {q14-q15},[$key1],#32 // load key schedule...
2323 vld1.32 {$rndlast},[$key1]
[all...]
/third_party/openssl/crypto/aes/asm/
H A Daesv8-armx.pl2241 my ($inp,$out,$len,$key1,$key2,$ivp)=map("x$_",(0..5));
2304 ldr $rounds,[$key1,#240]
2305 vld1.32 {q20-q21},[$key1],#32 // load key schedule...
2309 vld1.32 {q8-q9},[$key1],#32 // load key schedule...
2317 vld1.32 {q8},[$key1],#16 // load key schedule...
2320 vld1.32 {q9},[$key1],#16 // load key schedule...
2324 vld1.32 {q10-q11},[$key1],#32 // load key schedule...
2329 vld1.32 {q12-q13},[$key1],#32 // load key schedule...
2334 vld1.32 {q14-q15},[$key1],#32 // load key schedule...
2339 vld1.32 {$rndlast},[$key1]
[all...]

Completed in 15 milliseconds

12345678910>>...15