/kernel/linux/linux-5.10/include/linux/ |
D | btree-type.h | 40 unsigned long _key = key; in BTREE_FN() local 41 return btree_lookup(&head->h, BTREE_TYPE_GEO, &_key); in BTREE_FN() 47 unsigned long _key = key; in BTREE_FN() local 48 return btree_insert(&head->h, BTREE_TYPE_GEO, &_key, val, gfp); in BTREE_FN() 54 unsigned long _key = key; in BTREE_FN() local 55 return btree_update(&head->h, BTREE_TYPE_GEO, &_key, val); in BTREE_FN() 60 unsigned long _key = key; in BTREE_FN() local 61 return btree_remove(&head->h, BTREE_TYPE_GEO, &_key); in BTREE_FN() 66 unsigned long _key; in BTREE_FN() local 67 void *val = btree_last(&head->h, BTREE_TYPE_GEO, &_key); in BTREE_FN() [all …]
|
D | poll.h | 45 __poll_t _key; member 72 return p ? p->_key : ~(__poll_t)0; in poll_requested_events() 78 pt->_key = ~(__poll_t)0; /* all events enabled */ in init_poll_funcptr()
|
D | lockdep.h | 419 #define STATIC_LOCKDEP_MAP_INIT(_name, _key) \ argument 420 { .name = (_name), .key = (void *)(_key), }
|
D | regmap.h | 645 static struct lock_class_key _key; \ 646 fn(__VA_ARGS__, &_key, \
|
/kernel/linux/linux-5.10/include/linux/gpio/ |
D | machine.h | 69 #define GPIO_LOOKUP(_key, _chip_hwnum, _con_id, _flags) \ argument 70 GPIO_LOOKUP_IDX(_key, _chip_hwnum, _con_id, 0, _flags) 77 #define GPIO_LOOKUP_IDX(_key, _chip_hwnum, _con_id, _idx, _flags) \ argument 79 .key = _key, \
|
/kernel/linux/linux-5.10/tools/perf/util/ |
D | hashmap.h | 179 #define hashmap__for_each_key_entry(map, cur, _key) \ argument 181 ? map->buckets[hash_bits(map->hash_fn((_key), map->ctx), map->cap_bits)] \ 185 if (map->equal_fn(cur->key, (_key), map->ctx)) 187 #define hashmap__for_each_key_entry_safe(map, cur, tmp, _key) \ argument 189 ? map->buckets[hash_bits(map->hash_fn((_key), map->ctx), map->cap_bits)] \ 193 if (map->equal_fn(cur->key, (_key), map->ctx))
|
/kernel/linux/linux-5.10/tools/lib/bpf/ |
D | hashmap.h | 179 #define hashmap__for_each_key_entry(map, cur, _key) \ argument 181 ? map->buckets[hash_bits(map->hash_fn((_key), map->ctx), map->cap_bits)] \ 185 if (map->equal_fn(cur->key, (_key), map->ctx)) 187 #define hashmap__for_each_key_entry_safe(map, cur, tmp, _key) \ argument 189 ? map->buckets[hash_bits(map->hash_fn((_key), map->ctx), map->cap_bits)] \ 193 if (map->equal_fn(cur->key, (_key), map->ctx))
|
/kernel/linux/linux-5.10/fs/ |
D | fsopen.c | 317 const char __user *, _key, in SYSCALL_DEFINE5() argument 335 if (!_key || _value || aux) in SYSCALL_DEFINE5() 339 if (!_key || !_value || aux) in SYSCALL_DEFINE5() 343 if (!_key || !_value || aux <= 0 || aux > 1024 * 1024) in SYSCALL_DEFINE5() 348 if (!_key || !_value || (aux != AT_FDCWD && aux < 0)) in SYSCALL_DEFINE5() 352 if (!_key || _value || aux < 0) in SYSCALL_DEFINE5() 357 if (_key || _value || aux) in SYSCALL_DEFINE5() 383 if (_key) { in SYSCALL_DEFINE5() 384 param.key = strndup_user(_key, 256); in SYSCALL_DEFINE5()
|
D | select.c | 230 entry->key = p->_key; in __pollwait() 471 wait->_key = POLLEX_SET | ll_flag; in wait_key_set() 473 wait->_key |= POLLIN_SET; in wait_key_set() 475 wait->_key |= POLLOUT_SET; in wait_key_set() 871 pwait->_key = filter | busy_flag; in do_pollfd()
|
D | aio.c | 1678 struct poll_table_struct pt = { ._key = req->events }; in aio_poll_complete_work() 1868 apt.pt._key = req->events; in aio_poll()
|
D | eventpoll.c | 891 pt->_key = epi->event.events; in ep_item_poll()
|
/kernel/linux/linux-5.10/lib/ |
D | extable.c | 98 unsigned long _key = *(unsigned long *)key; in cmp_ex_search() local 101 if (_key > ex_to_insn(_elt)) in cmp_ex_search() 103 if (_key < ex_to_insn(_elt)) in cmp_ex_search()
|
/kernel/linux/linux-5.10/kernel/bpf/ |
D | lpm_trie.c | 227 static void *trie_lookup_elem(struct bpf_map *map, void *_key) in trie_lookup_elem() argument 231 struct bpf_lpm_trie_key *key = _key; in trie_lookup_elem() 301 void *_key, void *value, u64 flags) in trie_update_elem() argument 306 struct bpf_lpm_trie_key *key = _key; in trie_update_elem() 431 static int trie_delete_elem(struct bpf_map *map, void *_key) in trie_delete_elem() argument 434 struct bpf_lpm_trie_key *key = _key; in trie_delete_elem() 625 static int trie_get_next_key(struct bpf_map *map, void *_key, void *_next_key) in trie_get_next_key() argument 629 struct bpf_lpm_trie_key *key = _key, *next_key = _next_key; in trie_get_next_key()
|
/kernel/linux/linux-5.10/tools/lib/lockdep/include/liblockdep/ |
D | common.h | 51 #define STATIC_LOCKDEP_MAP_INIT(_name, _key) \ argument 52 { .name = (_name), .key = (void *)(_key), }
|
/kernel/linux/linux-5.10/net/rxrpc/ |
D | security.c | 108 struct key **_key, in rxrpc_look_up_server_security() argument 156 *_key = key_ref_to_ptr(kref); in rxrpc_look_up_server_security()
|
/kernel/linux/linux-5.10/security/keys/ |
D | request_key.c | 373 struct key **_key) in construct_alloc_key() argument 384 *_key = NULL; in construct_alloc_key() 438 *_key = key; in construct_alloc_key() 460 *_key = key; in construct_alloc_key()
|
/kernel/linux/linux-5.10/include/linux/ceph/ |
D | libceph.h | 270 extern type __lookup_##name##_key; \ 272 typeof(__lookup_##name##_key.keyfld), nodefld)
|
/kernel/linux/linux-5.10/include/media/ |
D | v4l2-ctrls.h | 510 static struct lock_class_key _key; \ 512 &_key, \
|
/kernel/linux/linux-5.10/scripts/ |
D | asn1_compiler.c | 317 static int directive_compare(const void *_key, const void *_pdir) in directive_compare() argument 319 const struct token *token = _key; in directive_compare() 730 static int type_finder(const void *_key, const void *_ti) in type_finder() argument 732 const struct token *token = _key; in type_finder()
|
/kernel/linux/linux-5.10/fs/cachefiles/ |
D | rdwr.c | 21 int sync, void *_key) in cachefiles_read_waiter() argument 27 struct wait_page_key *key = _key; in cachefiles_read_waiter()
|
/kernel/linux/patches/linux-5.10/imx8mm_patch/patches/ |
D | 0004_linux_fs.patch | 246 apt.pt._key = req->events;
|
D | 0005_linux_include.patch | 1107 + const struct sec_mipi_dsim_dphy_timing *_key = key; 1114 + if (abs((int)(_elt->bit_clk - _key->bit_clk)) <= 5) 1117 + if (_key->bit_clk < _elt->bit_clk)
|
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/ |
D | vmm.c | 1039 static struct lock_class_key _key; in nvkm_vmm_ctor() local 1051 __mutex_init(&vmm->mutex, "&vmm->mutex", key ? key : &_key); in nvkm_vmm_ctor()
|
/kernel/linux/linux-5.10/net/sched/ |
D | cls_flower.c | 2646 __be32 _key, _mask; in fl_dump_key_flags() local 2661 _key = cpu_to_be32(key); in fl_dump_key_flags() 2664 err = nla_put(skb, TCA_FLOWER_KEY_FLAGS, 4, &_key); in fl_dump_key_flags()
|
/kernel/linux/linux-5.10/io_uring/ |
D | io_uring.c | 5507 struct poll_table_struct pt = { ._key = poll->events }; in io_poll_check_events() 5724 ipt->pt._key = mask; in __io_arm_poll_handler()
|