Home
last modified time | relevance | path

Searched refs:hashtable (Results 1 – 25 of 79) sorted by relevance

1234

/OK3568_Linux_fs/u-boot/lib/
H A Dhashtable.su
H A D.hashtable.o.cmd
/OK3568_Linux_fs/u-boot/spl/lib/
H A Dhashtable.su
H A D.hashtable.o.cmd
/OK3568_Linux_fs/kernel/include/linux/
H A Dhashtable.h52 #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable)) argument
60 #define hash_add(hashtable, node, key) \ argument
61 hlist_add_head(node, &hashtable[hash_min(key, HASH_BITS(hashtable))])
69 #define hash_add_rcu(hashtable, node, key) \ argument
70 hlist_add_head_rcu(node, &hashtable[hash_min(key, HASH_BITS(hashtable))])
99 #define hash_empty(hashtable) __hash_empty(hashtable, HASH_SIZE(hashtable)) argument
/OK3568_Linux_fs/kernel/tools/include/linux/
H A Dhashtable.h49 #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable)) argument
57 #define hash_add(hashtable, node, key) \ argument
58 hlist_add_head(node, &hashtable[hash_min(key, HASH_BITS(hashtable))])
87 #define hash_empty(hashtable) __hash_empty(hashtable, HASH_SIZE(hashtable)) argument
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/backward/
H A Dhashtable.h82 class hashtable; in _GLIBCXX_VISIBILITY() local
96 typedef hashtable<_Val, _Key, _HashFcn, _ExtractKey, _EqualKey, _Alloc> in _GLIBCXX_VISIBILITY()
147 typedef hashtable<_Val, _Key, _HashFcn, _ExtractKey, _EqualKey, _Alloc> in _GLIBCXX_VISIBILITY()
239 class hashtable; in _GLIBCXX_VISIBILITY() local
244 operator==(const hashtable<_Val, _Key, _HF, _Ex, _Eq, _All>& __ht1, in _GLIBCXX_VISIBILITY()
245 const hashtable<_Val, _Key, _HF, _Ex, _Eq, _All>& __ht2); in _GLIBCXX_VISIBILITY()
257 class hashtable in _GLIBCXX_VISIBILITY()
332 hashtable(size_type __n, const _HashFcn& __hf, in _GLIBCXX_VISIBILITY()
339 hashtable(size_type __n, const _HashFcn& __hf, in _GLIBCXX_VISIBILITY()
346 hashtable(const hashtable& __ht) in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/backward/
H A Dhashtable.h82 class hashtable; in _GLIBCXX_VISIBILITY() local
96 typedef hashtable<_Val, _Key, _HashFcn, _ExtractKey, _EqualKey, _Alloc> in _GLIBCXX_VISIBILITY()
147 typedef hashtable<_Val, _Key, _HashFcn, _ExtractKey, _EqualKey, _Alloc> in _GLIBCXX_VISIBILITY()
239 class hashtable; in _GLIBCXX_VISIBILITY() local
244 operator==(const hashtable<_Val, _Key, _HF, _Ex, _Eq, _All>& __ht1, in _GLIBCXX_VISIBILITY()
245 const hashtable<_Val, _Key, _HF, _Ex, _Eq, _All>& __ht2); in _GLIBCXX_VISIBILITY()
257 class hashtable in _GLIBCXX_VISIBILITY()
332 hashtable(size_type __n, const _HashFcn& __hf, in _GLIBCXX_VISIBILITY()
339 hashtable(size_type __n, const _HashFcn& __hf, in _GLIBCXX_VISIBILITY()
346 hashtable(const hashtable& __ht) in _GLIBCXX_VISIBILITY()
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireguard/
H A Dpeerlookup.c19 return &table->hashtable[hash & (HASH_SIZE(table->hashtable) - 1)]; in pubkey_bucket()
30 hash_init(table->hashtable); in wg_pubkey_hashtable_alloc()
79 return &table->hashtable[(__force u32)index & in index_bucket()
80 (HASH_SIZE(table->hashtable) - 1)]; in index_bucket()
90 hash_init(table->hashtable); in wg_index_hashtable_alloc()
H A Dpeerlookup.h19 DECLARE_HASHTABLE(hashtable, 11);
35 DECLARE_HASHTABLE(hashtable, 13);
/OK3568_Linux_fs/kernel/Documentation/livepatch/
H A Dshadow-vars.rst11 The implementation introduces a global, in-kernel hashtable that
15 specifically, the parent pointer serves as the hashtable key while the
16 numeric id subsequently filters hashtable queries. Multiple shadow
26 A hashtable references all shadow variables. These references are
49 - search hashtable for <obj, id> pair
52 - search hashtable for <obj, id> pair
62 - add <obj, id> to the global hashtable
65 - search hashtable for <obj, id> pair
75 - add <obj, id> pair to the global hashtable
78 - find and remove a <obj, id> reference from global hashtable
[all …]
/OK3568_Linux_fs/kernel/Documentation/security/
H A Dsiphash.rst55 DECLARE_HASHTABLE(hashtable, 8);
66 …return &table->hashtable[siphash(input, sizeof(*input), &table->key) & (HASH_SIZE(table->hashtable
126 Do not ever use HalfSipHash except for as a hashtable key function, and only
129 means of mitigating hashtable flooding denial of service attacks.
167 DECLARE_HASHTABLE(hashtable, 8);
178 …return &table->hashtable[hsiphash(input, sizeof(*input), &table->key) & (HASH_SIZE(table->hashtabl…
187 this will not be a problem, as the hashtable lookup isn't the bottleneck. And
/OK3568_Linux_fs/buildroot/boot/grub2/
H A D0072-affs-Fix-memory-leaks.patch39 grub_uint32_t *hashtable;
59 if (grub_affs_create_node (dir, hook, hook_data, &node, &hashtable,
72 - grub_free (hashtable);
78 grub_free (hashtable);
/OK3568_Linux_fs/external/mpp/osal/inc/
H A Dmpp_hash.h271 #define hash_add(hashtable, node, key) \ argument
272 hlist_add_head(node, &hashtable[hash_min(key, HASH_BITS(hashtable))])
281 #define hash_empty(hashtable) __hash_empty(hashtable, HASH_SIZE(hashtable)) argument
/OK3568_Linux_fs/kernel/net/sunrpc/
H A Dauth.c25 struct hlist_head *hashtable; member
301 new->hashtable = kcalloc(hashsize, sizeof(new->hashtable[0]), GFP_KERNEL); in rpcauth_init_credcache()
302 if (!new->hashtable) in rpcauth_init_credcache()
392 head = &cache->hashtable[i]; in rpcauth_clear_credcache()
417 kfree(cache->hashtable); in rpcauth_destroy_credcache()
529 hlist_for_each_entry_rcu(entry, &cache->hashtable[nr], cr_hash) { in rpcauth_lookup_credcache()
548 hlist_for_each_entry(entry, &cache->hashtable[nr], cr_hash) { in rpcauth_lookup_credcache()
559 hlist_add_head_rcu(&cred->cr_hash, &cache->hashtable[nr]); in rpcauth_lookup_credcache()
/OK3568_Linux_fs/kernel/drivers/infiniband/ulp/opa_vnic/
H A Dopa_vnic_internal.h274 #define vnic_hash_init(hashtable) __hash_init(hashtable, OPA_VNIC_MAC_TBL_SIZE) argument
276 #define vnic_hash_add(hashtable, node, key) \ argument
278 &hashtable[hash_min(key, ilog2(OPA_VNIC_MAC_TBL_SIZE))])
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3/
H A D0001-Use-FLAG_REF-always-for-interned-strings.patch18 if (p->version < 3 || p->hashtable == NULL)
32 entry = _Py_hashtable_get_entry(p->hashtable, v);
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/share/gcc-10.3.1/python/libstdcxx/v6/
H A Dprinters.py910 def __init__ (self, hashtable): argument
911 self.buckets = hashtable['_M_buckets']
913 self.bucket_count = hashtable['_M_bucket_count']
914 self.node_type = find_type(hashtable.type, '_Node').pointer()
941 def __init__(self, hashtable): argument
942 self.node = hashtable['_M_before_begin']['_M_nxt']
943 valtype = hashtable.type.template_argument(1)
944 cached = hashtable.type.template_argument(9).template_argument(0)
968 def hashtable (self): member in Tr1UnorderedSetPrinter
974 count = self.hashtable()['_M_element_count']
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/share/gcc-10.3.1/python/libstdcxx/v6/
H A Dprinters.py910 def __init__ (self, hashtable): argument
911 self.buckets = hashtable['_M_buckets']
913 self.bucket_count = hashtable['_M_bucket_count']
914 self.node_type = find_type(hashtable.type, '_Node').pointer()
941 def __init__(self, hashtable): argument
942 self.node = hashtable['_M_before_begin']['_M_nxt']
943 valtype = hashtable.type.template_argument(1)
944 cached = hashtable.type.template_argument(9).template_argument(0)
968 def hashtable (self): member in Tr1UnorderedSetPrinter
974 count = self.hashtable()['_M_element_count']
[all …]
/OK3568_Linux_fs/external/xserver/Xext/
H A DMakefile.am106 libhashtable_la_SOURCES = hashtable.c hashtable.h
H A DMakefile.in176 am_libhashtable_la_OBJECTS = hashtable.lo
194 ./$(DEPDIR)/geext.Plo ./$(DEPDIR)/hashtable.Plo \
700 libhashtable_la_SOURCES = hashtable.c hashtable.h
777 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hashtable.Plo@am__quote@ # am--include-marker
985 -rm -f ./$(DEPDIR)/hashtable.Plo
1055 -rm -f ./$(DEPDIR)/hashtable.Plo
H A Dmeson.build27 srcs_xext += 'hashtable.c'
/OK3568_Linux_fs/kernel/fs/afs/
H A Dxdr_fs.h86 __be16 hashtable[AFS_DIR_HASHTBL_SIZE]; member
/OK3568_Linux_fs/kernel/security/selinux/
H A DKconfig97 int "NSA SELinux sidtab hashtable size"
102 This option sets the number of buckets used in the sidtab hashtable
/OK3568_Linux_fs/kernel/fs/affs/
H A Damigaffs.h57 __be32 hashtable[1]; member

1234