Home
last modified time | relevance | path

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

1234

/aosp_15_r20/external/starlark-go/starlark/
H A 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 …]
/aosp_15_r20/external/mtools/
H A 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;
/aosp_15_r20/external/clang/test/SemaCXX/
H A Dlibstdcxx_pointer_return_false_hack.cpp14 template<typename T> struct hashtable { struct
30 auto *test1 = std::tr1::hashtable<int>().find_node();
/aosp_15_r20/external/erofs-utils/include/erofs/
H A 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
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.17-4.8/x86_64-linux/include/c++/4.8.3/backward/
Dhashtable.h92 class hashtable; in _GLIBCXX_VISIBILITY() local
249 class hashtable; in _GLIBCXX_VISIBILITY() local
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/backward/
Dhashtable.h92 class hashtable; in _GLIBCXX_VISIBILITY() local
249 class hashtable; in _GLIBCXX_VISIBILITY() local
/aosp_15_r20/external/tensorflow/tensorflow/lite/kernels/
H A 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
H A Dhashtable.cc26 namespace hashtable { namespace
H A Dhashtable_size.cc25 namespace hashtable { namespace
H A Dhashtable_import.cc25 namespace hashtable { namespace
H A Dhashtable_find.cc25 namespace hashtable { namespace
/aosp_15_r20/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
/aosp_15_r20/external/python/cpython3/Include/internal/
Dpycore_typeobject.h34 struct type_cache_entry hashtable[1 << MCACHE_SIZE_EXP]; member
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/internal/
Dpycore_typeobject.h34 struct type_cache_entry hashtable[1 << MCACHE_SIZE_EXP]; member
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/internal/
Dpycore_typeobject.h34 struct type_cache_entry hashtable[1 << MCACHE_SIZE_EXP]; member
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/internal/
Dpycore_typeobject.h34 struct type_cache_entry hashtable[1 << MCACHE_SIZE_EXP]; member
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/internal/
Dpycore_typeobject.h34 struct type_cache_entry hashtable[1 << MCACHE_SIZE_EXP]; member
/aosp_15_r20/external/mesa3d/src/gallium/auxiliary/util/
H A Du_live_shader_cache.h61 struct hash_table *hashtable; member
/aosp_15_r20/external/tensorflow/tensorflow/lite/experimental/resource/
H A Dstatic_hashtable.cc104 auto* hashtable = internal::CreateStaticHashtable(key_dtype, value_dtype); in CreateHashtableResourceIfNotAvailable() local
/aosp_15_r20/external/coreboot/util/cbfstool/
H A Dplatform_fixups.c44 void *hashtable = NULL; in qualcomm_find_hash() local
/aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/lite/transforms/
H A Dlegalize_hashtables.cc139 for (auto hashtable : hashtables) { in checkWhetherGraphHasValidStaticLookupTables() local
/aosp_15_r20/external/rust/android-crates-io/crates/lz4_flex/src/block/
Dmod.rs19 pub(crate) mod hashtable; module
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/gcc-4.8.3/python/libstdcxx/v6/
Dprinters.py645 def hashtable (self): member in Tr1UnorderedSetPrinter
668 def hashtable (self): member in Tr1UnorderedMapPrinter
/aosp_15_r20/external/libnl/include/nl-priv-dynamic-core/
H A Dcache-api.h264 struct nl_hash_table *hashtable; member
/aosp_15_r20/external/clang/test/CodeGenCXX/
H A Ddebug-info-use-after-free.cpp191 hashtable { class

1234