HomeSort by: relevance | last modified time | path
    Searched refs:CacheMap (Results 1 - 12 of 12) sorted by relevancy

  /src/external/gpl3/binutils/dist/gprofng/src/
CacheMap.h 28 * outside CacheMap (f.e. deletion);
42 class CacheMap : public Map<Key_t, Value_t>
46 CacheMap ();
47 ~CacheMap ();
80 const int CacheMap<Key_t, Value_t>::INIT_SIZE = 1 << 14;
82 const int CacheMap<Key_t, Value_t>::MAX_SIZE = 1 << 20;
84 template <typename Key_t, typename Value_t>CacheMap<Key_t, Value_t>
85 ::CacheMap ()
95 CacheMap<Key_t, Value_t>::~CacheMap ()
    [all...]
CallStack.cc 25 #include "CacheMap.h"
169 cstackMap = new CacheMap<uint64_t, CallStackNode *>;
PathTree.cc 27 #include "CacheMap.h"
109 pathMap = new CacheMap<uint64_t, NodeIdx>;
Experiment.cc 34 #include "CacheMap.h"
5299 frameInfoCache = new CacheMap<uint64_t, uint64_t>;
5300 nodeCache = new CacheMap<uint64_t, uint64_t>;
5350 // CacheMap does not work with NULL key
5462 // CacheMap does not work with NULL key
  /src/external/gpl3/binutils.old/dist/gprofng/src/
CacheMap.h 28 * outside CacheMap (f.e. deletion);
42 class CacheMap : public Map<Key_t, Value_t>
46 CacheMap ();
47 ~CacheMap ();
80 const int CacheMap<Key_t, Value_t>::INIT_SIZE = 1 << 14;
82 const int CacheMap<Key_t, Value_t>::MAX_SIZE = 1 << 20;
84 template <typename Key_t, typename Value_t>CacheMap<Key_t, Value_t>
85 ::CacheMap ()
95 CacheMap<Key_t, Value_t>::~CacheMap ()
    [all...]
CallStack.cc 25 #include "CacheMap.h"
169 cstackMap = new CacheMap<uint64_t, CallStackNode *>;
PathTree.cc 27 #include "CacheMap.h"
109 pathMap = new CacheMap<uint64_t, NodeIdx>;
Experiment.cc 34 #include "CacheMap.h"
5299 frameInfoCache = new CacheMap<uint64_t, uint64_t>;
5300 nodeCache = new CacheMap<uint64_t, uint64_t>;
5350 // CacheMap does not work with NULL key
5462 // CacheMap does not work with NULL key
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/MSF/
MappedBlockStream.cpp 97 auto CacheIter = CacheMap.find(Offset);
98 if (CacheIter != CacheMap.end()) {
111 for (auto &CacheItem : CacheMap) {
155 if (CacheIter != CacheMap.end()) {
160 CacheMap.insert(std::make_pair(Offset, List));
272 void MappedBlockStream::invalidateCache() { CacheMap.shrink_and_clear(); }
280 for (const auto &MapEntry : CacheMap) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/MSF/
MappedBlockStream.h 102 DenseMap<uint32_t, std::vector<CacheEntry>> CacheMap;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemoryBuiltins.cpp 884 CacheMapTy::iterator CacheIt = CacheMap.find(SeenVal);
886 if (CacheIt != CacheMap.end() && anyKnown(CacheIt->second))
887 CacheMap.erase(CacheIt);
912 CacheMapTy::iterator CacheIt = CacheMap.find(V);
913 if (CacheIt != CacheMap.end())
949 CacheMap[V] = Result;
1039 CacheMap[&PHI] = std::make_pair(SizePHI, OffsetPHI);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
MemoryBuiltins.h 307 CacheMapTy CacheMap;

Completed in 70 milliseconds