Home
last modified time | relevance | path

Searched refs:storage_ (Results 1 – 3 of 3) sorted by relevance

/freebsd-head/contrib/llvm-project/llvm/include/llvm/ADT/
HDIndexedMap.h38 StorageT storage_; variable
48 assert(toIndex_(n) < storage_.size() && "index out of bounds!");
49 return storage_[toIndex_(n)];
53 assert(toIndex_(n) < storage_.size() && "index out of bounds!");
54 return storage_[toIndex_(n)];
58 storage_.reserve(s); in reserve()
62 storage_.resize(s, nullVal_); in resize()
66 storage_.clear(); in clear()
71 if (NewSize > storage_.size()) in grow()
76 return toIndex_(n) < storage_.size(); in inBounds()
[all …]
/freebsd-head/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
HDsanitizer_symbolizer.cpp117 for (uptr i = 0; i < storage_.size(); ++i) { in GetOwnedCopy()
118 if (!internal_strcmp(storage_[i], str)) { in GetOwnedCopy()
119 last_match_ = storage_[i]; in GetOwnedCopy()
124 storage_.push_back(last_match_); in GetOwnedCopy()
HDsanitizer_symbolizer.h189 storage_.reserve(kInitialCapacity); in ModuleNameOwner()
195 InternalMmapVector<const char*> storage_; variable