Lines Matching refs:hvalue
254 uint32_t hvalue; in hidden_def() local
256 hvalue = avc_cache.lru_hint; in hidden_def()
260 cur = avc_cache.slots[hvalue]; in hidden_def()
270 hvalue = (hvalue + 1) & (AVC_CACHE_SLOTS - 1); in hidden_def()
271 } while (hvalue != avc_cache.lru_hint); in hidden_def()
278 avc_cache.lru_hint = hvalue; in hidden_def()
281 avc_cache.slots[hvalue] = cur->next; in hidden_def()
302 int hvalue; in avc_claim_node() local
317 hvalue = avc_hash(ssid, tsid, tclass); in avc_claim_node()
323 new->next = avc_cache.slots[hvalue]; in avc_claim_node()
324 avc_cache.slots[hvalue] = new; in avc_claim_node()
336 int hvalue; in avc_search_node() local
339 hvalue = avc_hash(ssid, tsid, tclass); in avc_search_node()
340 cur = avc_cache.slots[hvalue]; in avc_search_node()