Lines Matching full:pcache
84 * We only need "pCache" for stats.
89 , AtomicCache* pCache
117 pCache->fail++;
128 pCache->fills++;
130 pCache->misses++;
168 void dvmDumpAtomicCacheStats(const AtomicCache* pCache)
170 if (pCache == NULL)
174 pCache->trivial, pCache->fail, pCache->hits,
175 pCache->misses, pCache->fills,
176 (pCache->hits == 0) ? 0 :
177 pCache->hits * 100 /
178 (pCache->fail + pCache->hits + pCache->misses + pCache->fills),
179 pCache->numEntries);