Home | History | Annotate | Download | only in vm

Lines Matching refs:pCache

86  * We only need "pCache" for stats.
91 , AtomicCache* pCache
119 pCache->fail++;
130 pCache->fills++;
132 pCache->misses++;
170 void dvmDumpAtomicCacheStats(const AtomicCache* pCache)
172 if (pCache == NULL)
176 pCache->trivial, pCache->fail, pCache->hits,
177 pCache->misses, pCache->fills,
178 (pCache->hits == 0) ? 0 :
179 pCache->hits * 100 /
180 (pCache->fail + pCache->hits + pCache->misses + pCache->fills),
181 pCache->numEntries);