| /OK3568_Linux_fs/kernel/include/linux/ |
| H A 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 …]
|
| H A 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()
|
| H A D | lockdep.h | 419 #define STATIC_LOCKDEP_MAP_INIT(_name, _key) \ argument 420 { .name = (_name), .key = (void *)(_key), }
|
| H A D | regmap.h | 652 static struct lock_class_key _key; \ 653 fn(__VA_ARGS__, &_key, \
|
| /OK3568_Linux_fs/kernel/tools/lib/bpf/ |
| H A 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))
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A 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))
|
| /OK3568_Linux_fs/kernel/fs/ |
| H A 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()
|
| H A 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()
|
| H A D | aio.c | 1674 struct poll_table_struct pt = { ._key = req->events }; in aio_poll_complete_work() 1864 apt.pt._key = req->events; in aio_poll()
|
| /OK3568_Linux_fs/kernel/include/linux/gpio/ |
| H A 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, \
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/ |
| H A D | cve_check.py | 36 self._key = _cmpkey( 46 return self._key == other._key 51 return self._key > other._key
|
| /OK3568_Linux_fs/kernel/lib/ |
| H A 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()
|
| /OK3568_Linux_fs/kernel/kernel/bpf/ |
| H A 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()
|
| /OK3568_Linux_fs/kernel/tools/lib/lockdep/include/liblockdep/ |
| H A D | common.h | 51 #define STATIC_LOCKDEP_MAP_INIT(_name, _key) \ argument 52 { .name = (_name), .key = (void *)(_key), }
|
| /OK3568_Linux_fs/kernel/net/rxrpc/ |
| H A 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()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-connectivity/wvdial/wvstreams/ |
| H A D | 0001-Forward-port-to-OpenSSL-1.1.x.patch | 77 @@ -39,24 +39,25 @@ WvDiffieHellman::WvDiffieHellman(const unsigned char *_key, int _keylen, 84 - info->p = BN_bin2bn(_key, _keylen, NULL); 85 + BIGNUM *p = BN_bin2bn(_key, _keylen, NULL); 109 @@ -64,7 +65,7 @@ WvDiffieHellman::WvDiffieHellman(const unsigned char *_key, int _keylen, 118 @@ -72,18 +73,23 @@ WvDiffieHellman::WvDiffieHellman(const unsigned char *_key, int _keylen, 204 memcpy(key, _key, keysize);
|
| /OK3568_Linux_fs/kernel/security/keys/ |
| H A D | request_key.c | 370 struct key **_key) in construct_alloc_key() argument 381 *_key = NULL; in construct_alloc_key() 427 *_key = key; in construct_alloc_key() 446 *_key = key; in construct_alloc_key()
|
| /OK3568_Linux_fs/kernel/samples/crypto/ |
| H A D | fips140_lab_util.c | 409 uint8_t _key[t->key_size]; in af_alg_setkey() local 415 rand_bytes(_key, t->key_size); in af_alg_setkey() 416 key = _key; in af_alg_setkey()
|
| /OK3568_Linux_fs/kernel/include/linux/ceph/ |
| H A D | libceph.h | 270 extern type __lookup_##name##_key; \ 272 typeof(__lookup_##name##_key.keyfld), nodefld)
|
| /OK3568_Linux_fs/kernel/include/media/ |
| H A D | v4l2-ctrls.h | 530 static struct lock_class_key _key; \ 532 &_key, \
|
| /OK3568_Linux_fs/kernel/scripts/ |
| H A 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()
|
| /OK3568_Linux_fs/kernel/fs/cachefiles/ |
| H A D | rdwr.c | 21 int sync, void *_key) in cachefiles_read_waiter() argument 27 struct wait_page_key *key = _key; in cachefiles_read_waiter()
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/host/xtest/ |
| H A D | regression_4000.c | 1096 mac_cbc_ ## vect ## _key, (in_incr), \ 1101 mac_cmac_ ## vect ## _key, (in_incr), \ 1106 mac_des3_cmac_ ## vect ## _key, (in_incr), \ 1959 ciph_data_aes_cbc_ ## vect ## _key, \ 1966 ciph_data_aes_cts_ ## vect ## _key, \ 2345 { (algo), TEE_MODE_ENCRYPT, TEE_TYPE_AES, ARRAY(vect ## _key), \ 2351 { (algo), TEE_MODE_DECRYPT, TEE_TYPE_AES, ARRAY(vect ## _key), \
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/ |
| H A 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()
|
| /OK3568_Linux_fs/kernel/net/sched/ |
| H A D | cls_flower.c | 2633 __be32 _key, _mask; in fl_dump_key_flags() local 2648 _key = cpu_to_be32(key); in fl_dump_key_flags() 2651 err = nla_put(skb, TCA_FLOWER_KEY_FLAGS, 4, &_key); in fl_dump_key_flags()
|