Home | History | Annotate | Download | only in src

Lines Matching refs:hvalue

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