Home | History | Annotate | Download | only in src

Lines Matching refs:hvalue

303 	uint32_t hvalue;
305 hvalue = avc_cache.lru_hint;
309 cur = avc_cache.slots[hvalue];
319 hvalue = (hvalue + 1) & (AVC_CACHE_SLOTS - 1);
320 } while (hvalue != avc_cache.lru_hint);
327 avc_cache.lru_hint = hvalue;
330 avc_cache.slots[hvalue] = cur->next;
347 int hvalue;
362 hvalue = avc_hash(ssid, tsid, tclass);
368 new->next = avc_cache.slots[hvalue];
369 avc_cache.slots[hvalue] = new;
381 int hvalue;
384 hvalue = avc_hash(ssid, tsid, tclass);
385 cur = avc_cache.slots[hvalue];