Searched refs:map_ (Results 1 – 8 of 8) sorted by relevance
| /llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_dense_alloc.h | 58 internal_memset(map_, 0, sizeof(map_)); in DenseSlabAlloc() 63 if (map_[i] != 0) in ~DenseSlabAlloc() 64 UnmapOrDie(map_[i], kL2Size * sizeof(T)); in ~DenseSlabAlloc() 84 return &map_[idx / kL2Size][idx % kL2Size]; in Map() 105 for (IndexT l2 = l1 == 0 ? 1 : 0; l2 < kL2Size; l2++) func(&map_[l1][l2]); in ForEach() 110 T *map_[kL1Size]; 181 map_[fillpos] = batch; in AllocSuperBlock()
|
| /llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/ |
| H A D | tsan_dense_alloc.h | 58 internal_memset(map_, 0, sizeof(map_)); in DenseSlabAlloc() 63 if (map_[i] != 0) in ~DenseSlabAlloc() 64 UnmapOrDie(map_[i], kL2Size * sizeof(T)); in ~DenseSlabAlloc() 84 return &map_[idx / kL2Size][idx % kL2Size]; in Map() 108 T *map_[kL1Size]; 134 map_[fillpos] = batch; in Refill()
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_flat_map.h | 36 void Init() { internal_memset(map_, 0, sizeof(map_)); } in Init() 47 return map_[idx]; 52 return map_[idx]; 56 T map_[kSize];
|
| H A D | sanitizer_addrhashmap.h | 87 AddrHashMap<T, kSize> *map_; variable 141 map_ = map; in Handle() 145 map_->acquire(this); in Handle() 151 map_ = map; in Handle() 155 map_->acquire(this); in Handle() 161 map_ = map; in Handle() 165 map_->acquire(this); in Handle() 170 map_->release(this); in ~Handle()
|
| /llvm-project-15.0.7/flang/lib/Parser/ |
| H A D | provenance.cpp | 22 auto fromTo{map_.equal_range(range)}; in Put() 29 if (fromTo.second != map_.end()) { in Put() 30 map_.emplace_hint(fromTo.second, range, offset); in Put() 32 map_.emplace(range, offset); in Put() 38 auto fromTo{map_.equal_range(range)}; in Map() 486 for (const auto &m : map_) { in Dump()
|
| /llvm-project-15.0.7/lldb/examples/synthetic/ |
| H A D | libcxx.py | 725 map_ = self.valobj.GetChildMemberWithName('__map_') 728 first = map_.GetChildMemberWithName('__first_') 730 self.map_begin = map_.GetChildMemberWithName( 733 map_end = map_.GetChildMemberWithName( 736 map_.GetChildMemberWithName( '__end_cap_'))
|
| /llvm-project-15.0.7/flang/include/flang/Parser/ |
| H A D | provenance.h | 92 bool empty() const { return map_.empty(); } in empty() 105 std::multimap<ProvenanceRange, std::size_t, WhollyPrecedes> map_; variable
|
| /llvm-project-15.0.7/flang/lib/Semantics/ |
| H A D | resolve-names.cpp | 93 std::map<char, common::Reference<const DeclTypeSpec>> map_; member in Fortran::semantics::ImplicitRules 1533 } else if (map_.empty() && inheritFromParent_) { in isImplicitNoneType() 1555 } else if (auto it{map_.find(ch)}; it != map_.end()) { in GetType() 1571 auto res{map_.emplace(ch, type)}; in SetTypeMapping() 1610 auto it{implicitRules.map_.find(ch)}; in ShowImplicitRule() 1611 if (it != implicitRules.map_.end()) { in ShowImplicitRule()
|