Home
last modified time | relevance | path

Searched refs:hash_map (Results 1 – 25 of 97) sorted by relevance

1234

/external/protobuf/m4/
Dstl_hash.m42 # unordered_map/hash_map (we prefer the first form), and what
3 # namespace unordered/hash_map lives in within that include file. We
7 # hash_map) is in.
12 AC_MSG_CHECKING(the location of hash_map)
38 # Now try hash_map
39 for location in ext/hash_map hash_map; do
43 [${namespace}::hash_map<int, int> t],
46 ac_cv_cxx_hash_map_class="hash_map";])
53 AC_DEFINE(HAVE_HASH_MAP, 1, [define if the compiler has hash_map])
56 [the location of <unordered_map> or <hash_map>])
[all …]
/external/llvm-project/libcxx/include/ext/
Dhash_map2 //===-------------------------- hash_map ----------------------------------===//
15 hash_map synopsis
22 class hash_map
42 hash_map();
43 explicit hash_map(size_type n, const hasher& hf = hasher(),
47 hash_map(InputIterator f, InputIterator l);
49 hash_map(InputIterator f, InputIterator l,
53 hash_map(const hash_map&);
54 ~hash_map();
55 hash_map& operator=(const hash_map&);
[all …]
/external/libcxx/include/ext/
Dhash_map2 //===-------------------------- hash_map ----------------------------------===//
16 hash_map synopsis
23 class hash_map
43 explicit hash_map(size_type n = 193, const hasher& hf = hasher(),
47 hash_map(InputIterator f, InputIterator l,
51 hash_map(const hash_map&);
52 ~hash_map();
53 hash_map& operator=(const hash_map&);
75 void swap(hash_map&);
97 void swap(hash_map<Key, T, Hash, Pred, Alloc>& x,
[all …]
/external/llvm-project/clang/test/Modules/
Dsubmodules.cpp24 hash_map<int, float> ints_to_floats; // expected-error{{declaration of 'hash_map' must be imported …
26 @import std.hash_map;
28 hash_map<int, float> ints_to_floats2;
/external/clang/test/Modules/
Dsubmodules.cpp24 hash_map<int, float> ints_to_floats; // expected-error{{declaration of 'hash_map' must be imported …
26 @import std.hash_map;
28 hash_map<int, float> ints_to_floats2;
/external/clang/test/SemaCXX/
DPR11358.cpp23 class hash_map { class
30 void MapTest(hash_map<KeyType, ValueType> map) { in MapTest()
31 …for (hash_map<KeyType, ValueType>::const_iterator it = map.begin(); // expected-error{{missing 'ty… in MapTest()
/external/llvm-project/clang/test/SemaCXX/
DPR11358.cpp23 class hash_map { class
30 void MapTest(hash_map<KeyType, ValueType> map) { in MapTest()
31 …for (hash_map<KeyType, ValueType>::const_iterator it = map.begin(); // expected-error{{missing 'ty… in MapTest()
/external/llvm-project/llvm/test/CodeGen/BPF/BTF/
Dmap-def-3.ll8 ; const struct key_type __attribute__((section(".maps"))) hash_map;
14 @hash_map = dso_local local_unnamed_addr constant %struct.key_type zeroinitializer, section ".maps"…
37 ; CHECK-NEXT: .long hash_map
43 ; CHECK: .ascii "hash_map" # string offset=17
52 !1 = distinct !DIGlobalVariable(name: "hash_map", scope: !2, file: !3, line: 4, type: !6, isLocal: …
Dmap-def-2.ll12 ; __map_type __attribute__((section(".maps"))) hash_map;
19 @hash_map = dso_local local_unnamed_addr global %struct.map_type zeroinitializer, section ".maps", …
54 ; CHECK-NEXT: .long hash_map
64 ; CHECK: .ascii "hash_map" # string offset=51
72 !1 = distinct !DIGlobalVariable(name: "hash_map", scope: !2, file: !3, line: 8, type: !6, isLocal: …
Dmap-def.ll13 ; struct map_type __attribute__((section(".maps"))) hash_map;
20 @hash_map = dso_local local_unnamed_addr global %struct.map_type zeroinitializer, section ".maps", …
71 ; CHECK-NEXT: .long hash_map
90 ; CHECK-NEXT: .ascii "hash_map" # string offset=50
100 !1 = distinct !DIGlobalVariable(name: "hash_map", scope: !2, file: !3, line: 9, type: !6, isLocal: …
/external/rust/crates/ahash/src/
Dhash_map.rs2 use std::collections::{hash_map, HashMap};
274 type IntoIter = hash_map::Iter<'a, K, V>;
282 type IntoIter = hash_map::IterMut<'a, K, V>;
290 type IntoIter = hash_map::IntoIter<K, V>;
342 let hash_map = HashMap::deserialize(deserializer); in deserialize() localVariable
343 hash_map.map(|hash_map| Self(hash_map)) in deserialize()
/external/libcxx/test/libcxx/extensions/hash_map/
Dconst_iterator.fail.cpp14 __gnu_cxx::hash_map<int, int> m; in main()
16 const __gnu_cxx::hash_map<int, int> &cm = m; in main()
/external/llvm-project/libcxx/test/libcxx/extensions/hash_map/
Dconst_iterator.compile.fail.cpp13 __gnu_cxx::hash_map<int, int> m; in main()
15 const __gnu_cxx::hash_map<int, int> &cm = m; in main()
/external/libcxx/test/libcxx/containers/gnu_cxx/
Dhash_map.pass.cpp18 template class hash_map<int, int>; variable
22 typedef __gnu_cxx::hash_map<int, int> Map; in main()
/external/llvm-project/libcxx/test/libcxx/containers/gnu_cxx/
Dhash_map_name_lookup.pass.cpp27 template class hash_map<int, int>; variable
31 typedef __gnu_cxx::hash_map<int, int> Map; in main()
/external/rust/crates/protobuf/src/
Dunknown.rs5 use std::collections::hash_map;
6 use std::collections::hash_map::DefaultHasher;
214 hash_map::Entry::Occupied(e) => e.into_mut(), in find_field()
215 hash_map::Entry::Vacant(e) => e.insert(Default::default()), in find_field()
288 entries: Option<hash_map::Iter<'s, u32, UnknownValues>>,
305 use std::collections::hash_map::DefaultHasher;
/external/parameter-framework/asio-1.10.6/include/asio/detail/
Dreactor_op_queue.hpp41 typedef typename hash_map<key_type, mapped_type>::value_type value_type;
42 typedef typename hash_map<key_type, mapped_type>::iterator iterator;
157 hash_map<key_type, mapped_type> operations_;
/external/llvm-project/clang/test/Modules/Inputs/submodules/
Dmodule.map4 explicit module hash_map { header "hash_map.h" }
/external/clang/test/Modules/Inputs/submodules/
Dmodule.map4 explicit module hash_map { header "hash_map.h" }
/external/linux-kselftest/tools/testing/selftests/bpf/progs/
Dtest_map_lock.c19 } hash_map SEC(".maps");
41 val = bpf_map_lookup_elem(&hash_map, &key); in bpf_map_lock_test()
/external/rust/crates/hashbrown/tests/
Dhasher.rs26 check::<hashbrown::hash_map::DefaultHashBuilder>(); in default()
32 check::<std::collections::hash_map::RandomState>(); in random_state()
/external/google-breakpad/src/client/mac/handler/testcases/testdata/
Ddump_syms_i386_breakpad.sym24 FILE 23 /Developer/SDKs/MacOSX10.4u.sdk/usr/include/c++/4.0.0/ext/hash_map
43 FILE 42 /Developer/SDKs/MacOSX10.4u.sdk/usr/include/c++/4.0.0/ext/hash_map
967hash_map<std::string, std::pair<char const*, unsigned long long>, __gnu_cxx::hash<std::string>, st…
1177hash_map<std::string, std::pair<char const*, unsigned long long>, __gnu_cxx::hash<std::string>, st…
1306hash_map<std::string, std::pair<char const*, unsigned long long>, __gnu_cxx::hash<std::string>, st…
1352hash_map<std::string, std::pair<char const*, unsigned long long>, __gnu_cxx::hash<std::string>, st…
1359hash_map<std::string, std::pair<char const*, unsigned long long>, __gnu_cxx::hash<std::string>, st…
1476hash_map<std::string, std::pair<char const*, unsigned long long>, __gnu_cxx::hash<std::string>, st…
1481hash_map<std::string, std::pair<char const*, unsigned long long>, __gnu_cxx::hash<std::string>, st…
1484hash_map<std::string, std::pair<char const*, unsigned long long>, __gnu_cxx::hash<std::string>, st…
[all …]
/external/rust/crates/linked-hash-map/src/
Dlib.rs46 use std::collections::hash_map::{self, HashMap};
65 pub struct LinkedHashMap<K, V, S = hash_map::RandomState> {
849 pub struct Entries<'a, K: 'a, V: 'a, S: 'a = hash_map::RandomState> {
1156 pub enum Entry<'a, K: 'a, V: 'a, S: 'a = hash_map::RandomState> {
1164 pub struct OccupiedEntry<'a, K: 'a, V: 'a, S: 'a = hash_map::RandomState> {
1171 pub struct VacantEntry<'a, K: 'a, V: 'a, S: 'a = hash_map::RandomState> {
1319 let mut hash_map = LinkedHashMap::with_capacity(1000); in not_recycled_cycling() localVariable
1321 hash_map.insert(i, i); in not_recycled_cycling()
1325 hash_map.remove(&i); in not_recycled_cycling()
1327 hash_map.clear_free_list(); in not_recycled_cycling()
[all …]
/external/llvm/test/CodeGen/X86/
D2012-11-30-misched-dbg.ll98 %"class.__gnu_cxx::hash_map" = type { %"class.__gnu_cxx::hashtable" }
103 %X = alloca %"class.__gnu_cxx::hash_map", align 8
110 …call void @llvm.dbg.declare(metadata %"class.__gnu_cxx::hash_map"* %X, metadata !31, metadata !DIE…
111 …ents.i.i.i.i = getelementptr inbounds %"class.__gnu_cxx::hash_map", %"class.__gnu_cxx::hash_map"* …
/external/llvm-project/clang/test/CodeGenCXX/
Ddebug-info-use-after-free.cpp207 allocator < _Tp > >class hash_map { class
230 __gnu_cxx::hash_map;
265 hash_map <

1234