Searched defs:hvalue (Results 1 - 10 of 10) sorted by relevance

/external/libselinux/src/
H A Davc_sidtab.c51 int hvalue, rc = 0; local
67 hvalue = sidtab_hash(newctx);
68 newnode->next = s->htable[hvalue];
71 s->htable[hvalue] = newnode;
81 int hvalue, rc = 0; local
85 hvalue = sidtab_hash(ctx);
88 cur = s->htable[hvalue];
H A Davc.c254 uint32_t hvalue; local
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;
298 int hvalue; local
313 hvalue
332 int hvalue; local
[all...]
/external/qemu/distrib/libselinux/src/
H A Davc_sidtab.c51 int hvalue, rc = 0; local
67 hvalue = sidtab_hash(newctx);
68 newnode->next = s->htable[hvalue];
71 s->htable[hvalue] = newnode;
81 int hvalue, rc = 0; local
85 hvalue = sidtab_hash(ctx);
88 cur = s->htable[hvalue];
H A Davc.c254 uint32_t hvalue; local
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;
298 int hvalue; local
313 hvalue
332 int hvalue; local
[all...]
/external/libsepol/src/
H A Dhashtab.c68 int hvalue; local
74 hvalue = h->hash_value(h, key);
76 cur = h->htable[hvalue];
95 newnode->next = h->htable[hvalue];
96 h->htable[hvalue] = newnode;
107 int hvalue; local
113 hvalue = h->hash_value(h, key);
115 cur = h->htable[hvalue];
125 h->htable[hvalue] = cur->next;
140 int hvalue; local
181 int hvalue; local
[all...]
H A Dsidtab.c45 int hvalue; local
51 hvalue = SIDTAB_HASH(sid);
53 cur = s->htable[hvalue];
77 newnode->next = s->htable[hvalue];
78 s->htable[hvalue] = newnode;
89 int hvalue; local
95 hvalue = SIDTAB_HASH(sid);
97 cur = s->htable[hvalue];
107 s->htable[hvalue] = cur->next;
120 int hvalue; local
[all...]
H A Davtab.c59 avtab_insert_node(avtab_t * h, int hvalue, avtab_ptr_t prev, avtab_key_t * key, argument
73 newnode->next = h->htable[hvalue];
74 h->htable[hvalue] = newnode;
83 int hvalue; local
91 hvalue = avtab_hash(key, h->mask);
92 for (prev = NULL, cur = h->htable[hvalue];
110 newnode = avtab_insert_node(h, hvalue, prev, key, datum);
124 int hvalue; local
131 hvalue = avtab_hash(key, h->mask);
132 for (prev = NULL, cur = h->htable[hvalue];
156 int hvalue; local
191 int hvalue; local
[all...]
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DURLParser.java694 String value = hvalue();
699 protected String hvalue() throws ParseException { method in class:URLParser
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlobject.h164 #define hvalue(o) check_exp(ttistable(o), &val_(o).gc->h) macro
/external/chromium_org/v8/src/x64/
H A Dlithium-x64.cc157 HValue* hvalue = this->hydrogen_value(); local
158 return hvalue != NULL &&
159 hvalue->representation().IsInteger32() &&
160 chunk->GetDehoistedKeyIds()->Contains(hvalue->id());

Completed in 2776 milliseconds