Lines Matching defs:hvalue
305 uint32_t hvalue;
307 hvalue = avc_cache.lru_hint;
311 cur = avc_cache.slots[hvalue];
321 hvalue = (hvalue + 1) & (AVC_CACHE_SLOTS - 1);
322 } while (hvalue != avc_cache.lru_hint);
329 avc_cache.lru_hint = hvalue;
332 avc_cache.slots[hvalue] = cur->next;
349 int hvalue;
364 hvalue = avc_hash(ssid, tsid, tclass);
370 new->next = avc_cache.slots[hvalue];
371 avc_cache.slots[hvalue] = new;
383 int hvalue;
386 hvalue = avc_hash(ssid, tsid, tclass);
387 cur = avc_cache.slots[hvalue];