Searched refs:keyp (Results 1 - 17 of 17) sorted by relevance

/linux-master/arch/riscv/crypto/
H A Daes-macros.S47 // Loads the AES round keys from \keyp into vector registers and jumps to code
54 .macro aes_begin keyp, label128, label192
55 lwu t0, 480(\keyp) // t0 = key length in bytes
58 vle32.v v1, (\keyp)
59 addi \keyp, \keyp, 16
60 vle32.v v2, (\keyp)
61 addi \keyp, \keyp, 16
62 vle32.v v3, (\keyp)
[all...]
/linux-master/security/selinux/ss/
H A Dsymtab.c15 const char *p, *keyp; local
20 keyp = key;
21 size = strlen(keyp);
22 for (p = keyp; (p - keyp) < size; p++)
H A Davtab.c30 static inline u32 avtab_hash(const struct avtab_key *keyp, u32 mask) argument
52 mix(keyp->target_class);
53 mix(keyp->target_type);
54 mix(keyp->source_type);
/linux-master/tools/perf/ui/
H A Dutil.h8 int ui__popup_menu(int argc, char * const argv[], int *keyp);
/linux-master/tools/perf/ui/tui/
H A Dutil.c26 static int popup_menu__run(struct ui_browser *menu, int *keyp) argument
48 if (keyp) {
49 *keyp = key;
63 int ui__popup_menu(int argc, char * const argv[], int *keyp) argument
72 return popup_menu__run(&menu, keyp);
/linux-master/fs/nilfs2/
H A Dbtree.c263 __u64 *keyp, __u64 *ptrp, int ncmax)
276 if (keyp != NULL)
277 *keyp = key;
610 __u64 *keyp, __u64 *ptrp)
639 if (keyp != NULL)
640 *keyp = nilfs_btree_node_get_key(node, index);
815 int level, __u64 *keyp, __u64 *ptrp)
824 *keyp, *ptrp, ncblk);
835 *keyp, *ptrp,
842 int level, __u64 *keyp, __u6
262 nilfs_btree_node_delete(struct nilfs_btree_node *node, int index, __u64 *keyp, __u64 *ptrp, int ncmax) argument
608 nilfs_btree_do_lookup_last(const struct nilfs_bmap *btree, struct nilfs_btree_path *path, __u64 *keyp, __u64 *ptrp) argument
813 nilfs_btree_do_insert(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
840 nilfs_btree_carry_left(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
886 nilfs_btree_carry_right(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
933 nilfs_btree_split(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
983 nilfs_btree_grow(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1263 nilfs_btree_do_delete(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1288 nilfs_btree_borrow_left(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1320 nilfs_btree_borrow_right(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1353 nilfs_btree_concat_left(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1379 nilfs_btree_concat_right(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1404 nilfs_btree_shrink(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1428 nilfs_btree_nop(struct nilfs_bmap *btree, struct nilfs_btree_path *path, int level, __u64 *keyp, __u64 *ptrp) argument
1615 nilfs_btree_seek_key(const struct nilfs_bmap *btree, __u64 start, __u64 *keyp) argument
1636 nilfs_btree_last_key(const struct nilfs_bmap *btree, __u64 *keyp) argument
[all...]
H A Ddirect.c170 __u64 *keyp)
177 *keyp = key;
184 static int nilfs_direct_last_key(const struct nilfs_bmap *direct, __u64 *keyp) argument
197 *keyp = lastkey;
169 nilfs_direct_seek_key(const struct nilfs_bmap *direct, __u64 start, __u64 *keyp) argument
H A Dbmap.c191 * @keyp: place to store valid key
194 * starting from @start, and stores it to @keyp if found.
205 int nilfs_bmap_seek_key(struct nilfs_bmap *bmap, __u64 start, __u64 *keyp) argument
210 ret = bmap->b_ops->bop_seek_key(bmap, start, keyp);
218 int nilfs_bmap_last_key(struct nilfs_bmap *bmap, __u64 *keyp) argument
223 ret = bmap->b_ops->bop_last_key(bmap, keyp);
H A Dbmap.h151 int nilfs_bmap_seek_key(struct nilfs_bmap *bmap, __u64 start, __u64 *keyp);
152 int nilfs_bmap_last_key(struct nilfs_bmap *bmap, __u64 *keyp);
/linux-master/fs/xfs/scrub/
H A Dbtree.c144 union xfs_btree_key *keyp; local
167 keyp = xfs_btree_key_addr(cur, cur->bc_levels[1].ptr, keyblock);
168 if (xfs_btree_keycmp_lt(cur, &key, keyp))
176 keyp = xfs_btree_high_key_addr(cur, cur->bc_levels[1].ptr, keyblock);
177 if (xfs_btree_keycmp_lt(cur, keyp, &hkey))
192 union xfs_btree_key *keyp; local
214 keyp = xfs_btree_key_addr(cur, cur->bc_levels[level + 1].ptr, keyblock);
215 if (xfs_btree_keycmp_lt(cur, key, keyp))
223 keyp = xfs_btree_high_key_addr(cur, cur->bc_levels[level + 1].ptr,
225 if (xfs_btree_keycmp_lt(cur, keyp, ke
[all...]
/linux-master/crypto/
H A Dadiantum.c128 u8 *keyp; local
157 keyp = data->derived_keys;
164 err = crypto_cipher_setkey(tctx->blockcipher, keyp,
168 keyp += BLOCKCIPHER_KEY_SIZE;
171 poly1305_core_setkey(&tctx->header_hash_key, keyp);
172 keyp += POLY1305_BLOCK_SIZE;
177 err = crypto_shash_setkey(tctx->hash, keyp, NHPOLY1305_KEY_SIZE);
178 keyp += NHPOLY1305_KEY_SIZE;
179 WARN_ON(keyp != &data->derived_keys[ARRAY_SIZE(data->derived_keys)]);
/linux-master/tools/testing/selftests/bpf/map_tests/
H A Dmap_percpu_stats.c111 void *keyp = keys + i*MAX_MAP_KEY_SIZE; local
114 ret = bpf_map_delete_elem(map_fd, keyp);
118 ret = bpf_map_lookup_and_delete_elem(map_fd, keyp, val);
/linux-master/fs/fuse/
H A Dcuse.c206 * @keyp: out parameter for key
210 * at @end - 1. This function parses one pair and set *@keyp to the
218 static int cuse_parse_one(char **pp, char *end, char **keyp, char **valp) argument
251 *keyp = key;
/linux-master/security/smack/
H A Dsmack_lsm.c4512 struct key *keyp; local
4542 keyp = key_ref_to_ptr(key_ref);
4543 if (keyp == NULL)
4549 if (keyp->security == NULL)
4562 ad.a.u.key_struct.key = keyp->serial;
4563 ad.a.u.key_struct.key_desc = keyp->description;
4565 rc = smk_access(tkp, keyp->security, request, &ad);
4566 rc = smk_bu_note("key access", tkp, keyp->security, request, rc);
/linux-master/drivers/net/hyperv/
H A Drndis_filter.c933 u8 *keyp; local
968 keyp = (u8 *)((unsigned long)rssp + rssp->hashkey_offset);
969 memcpy(keyp, rss_key, NETVSC_HASH_KEYLEN);
/linux-master/fs/
H A Ddax.c164 unsigned int mode, int sync, void *keyp)
166 struct exceptional_entry_key *key = keyp;
163 wake_exceptional_entry_func(wait_queue_entry_t *wait, unsigned int mode, int sync, void *keyp) argument
/linux-master/fs/xfs/libxfs/
H A Dxfs_bmap.c293 xfs_bmbt_key_t *prevp, *keyp; local
300 keyp = XFS_BMBT_KEY_ADDR(mp, block, i);
304 be64_to_cpu(keyp->br_startoff));
306 prevp = keyp;

Completed in 239 milliseconds