Home
last modified time | relevance | path

Searched refs:ProngCache (Results 1 – 7 of 7) sorted by relevance

/frameworks/opt/gamesdk/src/tuningfork/
Dprong.cpp28 ProngCache::ProngCache(size_t size, int max_num_instrumentation_keys, in ProngCache() function in tuningfork::ProngCache
45 Prong *ProngCache::Get(uint64_t compound_id) { in Get()
54 void ProngCache::Clear() { in Clear()
Duploadthread.h33 const ProngCache *ready_;
50 bool Submit(const ProngCache *prongs);
Dclearcutserializer.h36 static void SerializeEvent(const ProngCache& t,
41 static void FillHistograms(const ProngCache& pc, TuningForkLogEvent &evt);
Dprong.h72 class ProngCache {
75 ProngCache(size_t size, int max_num_instrumentation_keys,
Dclearcutserializer.cpp89 const ProngCache* pc =static_cast<const ProngCache*>(*arg); in writeHistograms()
140 void ClearcutSerializer::FillHistograms(const ProngCache& pc, TuningForkLogEvent &evt) { in FillHistograms()
154 void ClearcutSerializer::SerializeEvent(const ProngCache& pc, in SerializeEvent()
Dtuningfork.cpp87 std::unique_ptr<ProngCache> prong_caches_[2];
88 ProngCache *current_prong_cache_;
127 prong_caches_[0] = std::make_unique<ProngCache>(max_num_prongs_, max_ikeys, in TuningForkImpl()
129 prong_caches_[1] = std::make_unique<ProngCache>(max_num_prongs_, max_ikeys, in TuningForkImpl()
Duploadthread.cpp119 bool UploadThread::Submit(const ProngCache *prongs) { in Submit()