Lines Matching defs:last
97 struct avc_cache_stats tot, rel, last;
105 memset(&last, 0, sizeof(last));
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));