Home
last modified time | relevance | path

Searched defs:hashtable (Results 1 – 25 of 26) sorted by relevance

12

/external/starlark-go/starlark/
Dhashtable.go15 type hashtable struct { struct
16 table []bucket // len is zero or a power of two
17 bucket0 [1]bucket // inline allocation for small maps.
18 len uint32
19 itercount uint32 // number of active iterators (ignored if frozen)
20 head *entry // insertion order doubly-linked list; may be nil
21 tailLink **entry // address of nil link at end of list (perhaps &head)
22 frozen bool
39 func (ht *hashtable) init(size int) {
55 func (ht *hashtable) freeze() {
[all …]
/external/mtools/
Dhash.c24 struct hashtable { struct
25 T_HashFunc f1,f2;
26 T_ComparFunc compar;
27 size_t size; /* actual size of the array */
28 size_t fill; /* number of deleted or in use slots */
29 size_t inuse; /* number of slots in use */
30 size_t max; /* maximal number of elements to keep efficient */
31 T_HashTableEl *entries;
/external/clang/test/SemaCXX/
Dlibstdcxx_pointer_return_false_hack.cpp14 template<typename T> struct hashtable { struct
30 auto *test1 = std::tr1::hashtable<int>().find_node();
/external/mesa3d/src/gallium/auxiliary/util/
Du_live_shader_cache.h61 struct hash_table *hashtable; member
/external/tensorflow/tensorflow/lite/kernels/
Dhashtable.cc26 namespace hashtable { namespace
Dhashtable_size.cc25 namespace hashtable { namespace
Dhashtable_import.cc25 namespace hashtable { namespace
Dhashtable_find.cc25 namespace hashtable { namespace
Dhashtable_ops_test.cc664 auto* hashtable = resource::GetHashtableResource(&resources, resource_id); in TEST() local
912 auto* hashtable = resource::GetHashtableResource(&resources, kResourceId); in TEST() local
934 auto* hashtable = resource::GetHashtableResource(&resources, kResourceId); in TEST() local
/external/erofs-utils/include/erofs/
Dhashtable.h302 #define hash_init(hashtable) __hash_init(hashtable, HASH_SIZE(hashtable)) argument
310 #define hash_add(hashtable, node, key) \ argument
340 #define hash_empty(hashtable) __hash_empty(hashtable, HASH_SIZE(hashtable)) argument
/external/tensorflow/tensorflow/lite/experimental/resource/
Dstatic_hashtable.cc104 auto* hashtable = internal::CreateStaticHashtable(key_dtype, value_dtype); in CreateHashtableResourceIfNotAvailable() local
/external/coreboot/util/cbfstool/
Dplatform_fixups.c44 void *hashtable = NULL; in qualcomm_find_hash() local
/external/tensorflow/tensorflow/compiler/mlir/lite/transforms/
Dlegalize_hashtables.cc139 for (auto hashtable : hashtables) { in checkWhetherGraphHasValidStaticLookupTables() local
/external/rust/android-crates-io/crates/lz4_flex/src/block/
Dmod.rs19 pub(crate) mod hashtable; module
/external/python/cpython3/Include/internal/
Dpycore_import.h58 _Py_hashtable_t *hashtable; member
Dpycore_typeobject.h56 struct type_cache_entry hashtable[1 << MCACHE_SIZE_EXP]; member
/external/libnl/include/nl-priv-dynamic-core/
Dcache-api.h264 struct nl_hash_table *hashtable; member
/external/rust/android-crates-io/crates/parking_lot_core/src/
Dparking_lot.rs360 let hashtable = get_hashtable(); in lock_bucket() localVariable
386 let hashtable = get_hashtable(); in lock_bucket_checked() localVariable
418 let hashtable = get_hashtable(); in lock_bucket_pair() localVariable
/external/clang/test/CodeGenCXX/
Ddebug-info-use-after-free.cpp191 hashtable { class
/external/python/cpython3/Python/
Dmarshal.c101 _Py_hashtable_t *hashtable; member
/external/sdv/vsomeip/third_party/boost/intrusive/include/boost/intrusive/
Dhashtable.hpp3603 class hashtable class
3634 BOOST_INTRUSIVE_FORCEINLINE explicit hashtable ( const bucket_traits &b_traits in hashtable() function in boost::intrusive::hashtable
3641 BOOST_INTRUSIVE_FORCEINLINE hashtable(BOOST_RV_REF(hashtable) x) in hashtable() function in boost::intrusive::hashtable
/external/python/cpython3/Modules/
D_hashopenssl.c265 _Py_hashtable_t *hashtable; member
/external/bcc/libbpf-tools/riscv/
Dvmlinux_602.h100722 struct hlist_head hashtable[2048]; member
100728 struct hlist_head hashtable[8192]; member
140452 struct hlist_head *hashtable; member
Dvmlinux.h100722 struct hlist_head hashtable[2048]; member
100728 struct hlist_head hashtable[8192]; member
140452 struct hlist_head *hashtable; member
/external/bcc/libbpf-tools/powerpc/
Dvmlinux_600.h126192 struct hlist_head *hashtable; member

12