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