/linux-4.4.14/drivers/input/keyboard/ |
D | ep93xx_keypad.c | 77 int key2; member 89 int keycode, key1, key2; in ep93xx_keypad_irq_handler() local 97 key2 = keypad->keycodes[keycode]; in ep93xx_keypad_irq_handler() 100 if (keypad->key1 && key1 != keypad->key1 && key2 != keypad->key1) in ep93xx_keypad_irq_handler() 103 if (keypad->key2 && key1 != keypad->key2 && key2 != keypad->key2) in ep93xx_keypad_irq_handler() 104 input_report_key(input_dev, keypad->key2, 0); in ep93xx_keypad_irq_handler() 107 input_report_key(input_dev, key2, 1); in ep93xx_keypad_irq_handler() 110 keypad->key2 = key2; in ep93xx_keypad_irq_handler() 116 if (keypad->key2 && key1 != keypad->key2) in ep93xx_keypad_irq_handler() 117 input_report_key(input_dev, keypad->key2, 0); in ep93xx_keypad_irq_handler() [all …]
|
/linux-4.4.14/fs/befs/ |
D | btree.c | 120 const void *key2, int keylen2); 722 const void *key2, int keylen2) in befs_compare_strings() argument 725 int result = strncmp(key1, key2, len); in befs_compare_strings() 734 btree_compare_int32(cont void *key1, int keylen1, const void *key2, int keylen2) 736 return *(int32_t *) key1 - *(int32_t *) key2; 741 const void *key2, int keylen2) 743 if (*(u_int32_t *) key1 == *(u_int32_t *) key2) 745 else if (*(u_int32_t *) key1 > *(u_int32_t *) key2) 751 btree_compare_int64(cont void *key1, int keylen1, const void *key2, int keylen2) 753 if (*(int64_t *) key1 == *(int64_t *) key2) [all …]
|
/linux-4.4.14/arch/arm/crypto/ |
D | aes-ce-core.S | 28 .macro enc_dround, key1, key2 30 enc_round q0, \key2 33 .macro dec_dround, key1, key2 35 dec_round q0, \key2 38 .macro enc_fround, key1, key2, key3 40 aese.8 q0, \key2 44 .macro dec_fround, key1, key2, key3 46 aesd.8 q0, \key2 50 .macro enc_dround_3x, key1, key2 54 enc_round q0, \key2 [all …]
|
D | aes-ce-glue.c | 146 struct crypto_aes_ctx __aligned(8) key2; 157 ret = ce_aes_expandkey(&ctx->key2, &in_key[key_len / 2], in xts_set_key() 319 walk.iv, (u8 *)ctx->key2.key_enc, first); in xts_encrypt() 344 walk.iv, (u8 *)ctx->key2.key_enc, first); in xts_decrypt()
|
D | aesbs-core.S_shipped | 1564 ldr r2, [ip, #0] @ key2 2054 ldr r2, [ip, #0] @ key2
|
/linux-4.4.14/kernel/ |
D | futex.c | 390 static inline int match_futex(union futex_key *key1, union futex_key *key2) in match_futex() argument 392 return (key1 && key2 in match_futex() 393 && key1->both.word == key2->both.word in match_futex() 394 && key1->both.ptr == key2->both.ptr in match_futex() 395 && key1->both.offset == key2->both.offset); in match_futex() 1379 union futex_key key1 = FUTEX_KEY_INIT, key2 = FUTEX_KEY_INIT; in futex_wake_op() local 1389 ret = get_futex_key(uaddr2, flags & FLAGS_SHARED, &key2, VERIFY_WRITE); in futex_wake_op() 1394 hb2 = hash_futex(&key2); in futex_wake_op() 1424 put_futex_key(&key2); in futex_wake_op() 1444 if (match_futex (&this->key, &key2)) { in futex_wake_op() [all …]
|
/linux-4.4.14/fs/ubifs/ |
D | key.h | 485 const union ubifs_key *key2) in keys_cmp() argument 487 if (key1->u32[0] < key2->u32[0]) in keys_cmp() 489 if (key1->u32[0] > key2->u32[0]) in keys_cmp() 491 if (key1->u32[1] < key2->u32[1]) in keys_cmp() 493 if (key1->u32[1] > key2->u32[1]) in keys_cmp() 510 const union ubifs_key *key2) in keys_eq() argument 512 if (key1->u32[0] != key2->u32[0]) in keys_eq() 514 if (key1->u32[1] != key2->u32[1]) in keys_eq()
|
D | tnc_misc.c | 366 const union ubifs_key *key1, *key2; in read_znode() local 369 key2 = &znode->zbranch[i + 1].key; in read_znode() 371 cmp = keys_cmp(c, key1, key2); in read_znode()
|
D | journal.c | 1292 union ubifs_key xent_key, key1, key2; in ubifs_jnl_delete_xattr() local 1359 highest_ino_key(c, &key2, inode->i_ino); in ubifs_jnl_delete_xattr() 1360 err = ubifs_tnc_remove_range(c, &key1, &key2); in ubifs_jnl_delete_xattr()
|
D | tnc.c | 2670 union ubifs_key key1, key2; in ubifs_tnc_remove_ino() local 2706 highest_ino_key(c, &key2, xattr_inum); in ubifs_tnc_remove_ino() 2707 err = ubifs_tnc_remove_range(c, &key1, &key2); in ubifs_tnc_remove_ino() 2720 highest_ino_key(c, &key2, inum); in ubifs_tnc_remove_ino() 2722 return ubifs_tnc_remove_range(c, &key1, &key2); in ubifs_tnc_remove_ino()
|
/linux-4.4.14/security/selinux/ss/ |
D | symtab.c | 25 static int symcmp(struct hashtab *h, const void *key1, const void *key2) in symcmp() argument 30 keyp2 = key2; in symcmp()
|
D | hashtab.h | 27 int (*keycmp)(struct hashtab *h, const void *key1, const void *key2); 43 int (*keycmp)(struct hashtab *h, const void *key1, const void *key2),
|
D | hashtab.c | 13 int (*keycmp)(struct hashtab *h, const void *key1, const void *key2), in hashtab_create() argument
|
D | policydb.c | 253 const struct range_trans *key1 = k1, *key2 = k2; in rangetr_cmp() local 256 v = key1->source_type - key2->source_type; in rangetr_cmp() 260 v = key1->target_type - key2->target_type; in rangetr_cmp() 264 v = key1->target_class - key2->target_class; in rangetr_cmp()
|
/linux-4.4.14/fs/cifs/ |
D | smbencrypt.c | 72 unsigned char key2[8]; in smbhash() local 77 str_to_key(key, key2); in smbhash() 88 crypto_blkcipher_setkey(tfm_des, key2, 8); in smbhash()
|
/linux-4.4.14/tools/perf/Documentation/ |
D | perf-kmem.txt | 38 -s <key[,key2...]>:: 39 --sort=<key[,key2...]>::
|
/linux-4.4.14/fs/hfs/ |
D | catalog.c | 163 int hfs_cat_keycmp(const btree_key *key1, const btree_key *key2) in hfs_cat_keycmp() argument 168 k2p = key2->cat.ParID; in hfs_cat_keycmp() 174 key2->cat.CName.name, key2->cat.CName.len); in hfs_cat_keycmp()
|
D | extent.c | 50 int hfs_ext_keycmp(const btree_key *key1, const btree_key *key2) in hfs_ext_keycmp() argument 56 fnum2 = key2->ext.FNum; in hfs_ext_keycmp() 59 if (key1->ext.FkType != key2->ext.FkType) in hfs_ext_keycmp() 60 return key1->ext.FkType < key2->ext.FkType ? -1 : 1; in hfs_ext_keycmp() 63 block2 = key2->ext.FABN; in hfs_ext_keycmp()
|
/linux-4.4.14/arch/arm64/crypto/ |
D | aes-glue.c | 79 struct crypto_aes_ctx __aligned(8) key2; 90 ret = aes_expandkey(&ctx->key2, &in_key[key_len / 2], in xts_set_key() 251 (u8 *)ctx->key2.key_enc, walk.iv, first); in xts_encrypt() 275 (u8 *)ctx->key2.key_enc, walk.iv, first); in xts_decrypt()
|
/linux-4.4.14/drivers/net/wireless/ath/ |
D | key.c | 134 u32 key0, key1, key2, key3, key4; in ath_hw_set_keycache_entry() local 186 key2 = get_unaligned_le32(k->kv_val + 6); in ath_hw_set_keycache_entry() 212 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2); in ath_hw_set_keycache_entry() 323 REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), key2); in ath_hw_set_keycache_entry()
|
/linux-4.4.14/scripts/kconfig/lxdialog/ |
D | util.c | 563 int key2; in on_key_esc() local 569 key2 = wgetch(win); in on_key_esc() 575 if (key == KEY_ESC && key2 == ERR) in on_key_esc() 577 else if (key != ERR && key != KEY_ESC && key2 == ERR) in on_key_esc()
|
/linux-4.4.14/include/linux/ |
D | btree-128.h | 87 u64 key1, u64 key2, size_t index);
|
/linux-4.4.14/drivers/net/wireless/iwlwifi/mvm/ |
D | fw-api-sta.h | 332 u8 key2[16]; member
|
/linux-4.4.14/drivers/media/platform/sti/bdisp/ |
D | bdisp-reg.h | 62 u32 key2; member
|
/linux-4.4.14/net/core/ |
D | flow.c | 173 static int flow_key_compare(const struct flowi *key1, const struct flowi *key2, in flow_key_compare() argument 181 k2 = (const flow_compare_t *) key2; in flow_key_compare()
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | ea3250.dts | 178 key2 {
|
/linux-4.4.14/net/openvswitch/ |
D | flow_table.c | 439 const struct sw_flow_key *key2, in cmp_key() argument 443 const long *cp2 = (const long *)((const u8 *)key2 + key_start); in cmp_key()
|
/linux-4.4.14/security/keys/ |
D | trusted.c | 260 const unsigned char *key2, in TSS_checkhmac2() argument 341 ret = TSS_rawhmac(testhmac2, key2, keylen2, SHA1_DIGEST_SIZE, in TSS_checkhmac2()
|
/linux-4.4.14/drivers/net/hippi/ |
D | rrunner.h | 616 u32 key2; member
|
/linux-4.4.14/drivers/pinctrl/bcm/ |
D | pinctrl-cygnus-mux.c | 505 CYGNUS_PIN_GROUP(key2, 0x4, 8, 1),
|
/linux-4.4.14/fs/reiserfs/ |
D | stree.c | 98 const struct reiserfs_key *key2) in comp_short_le_keys() argument 104 k2_u32 = (__u32 *) key2; in comp_short_le_keys()
|
/linux-4.4.14/sound/pci/asihpi/ |
D | hpi_internal.h | 682 u16 key2; member
|
/linux-4.4.14/kernel/locking/ |
D | lockdep.c | 314 #define iterate_chain_key(key1, key2) \ argument 317 (key2))
|
/linux-4.4.14/fs/btrfs/ |
D | relocation.c | 1745 struct btrfs_disk_key key2; local 1747 btrfs_node_key(path->nodes[level], &key2, path->slots[level]); 1748 return memcmp(&key1, &key2, sizeof(key1));
|