Lines Matching refs:tot
97 struct avc_cache_stats tot, rel, last; in main() local
180 memset(&tot, 0, sizeof(tot)); in main()
195 tot.lookups += tmp.lookups; in main()
196 tot.hits += tmp.hits; in main()
197 tot.misses += tmp.misses; in main()
198 tot.allocations += tmp.allocations; in main()
199 tot.reclaims += tmp.reclaims; in main()
200 tot.frees += tmp.frees; in main()
209 tot.lookups, tot.hits, tot.misses, in main()
210 tot.allocations, tot.reclaims, tot.frees); in main()
212 rel.lookups = tot.lookups - last.lookups; in main()
213 rel.hits = tot.hits - last.hits; in main()
214 rel.misses = tot.misses - last.misses; in main()
215 rel.allocations = tot.allocations - last.allocations; in main()
216 rel.reclaims = tot.reclaims - last.reclaims; in main()
217 rel.frees = tot.frees - last.frees; in main()
226 memcpy(&last, &tot, sizeof(last)); in main()