Searched refs:hvalue (Results 1 - 12 of 12) sorted by relevance

/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/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/chromium_org/third_party/skia/third_party/lua/src/
H A Dltm.c67 mt = hvalue(o)->metatable;
H A Dlapi.c412 case LUA_TTABLE: return luaH_getn(hvalue(o));
446 case LUA_TTABLE: return hvalue(o);
609 Table *reg = hvalue(&G(L)->l_registry);
644 setobj2s(L, L->top - 1, luaH_get(hvalue(t), L->top - 1));
654 setobj2s(L, L->top, luaH_getint(hvalue(t), n));
667 setobj2s(L, L->top, luaH_get(hvalue(t), &k));
694 mt = hvalue(obj)->metatable;
735 Table *reg = hvalue(&G(L)->l_registry);
776 setobj2t(L, luaH_set(L, hvalue(t), L->top-2), L->top-1);
777 invalidateTMcache(hvalue(
[all...]
H A Dlvm.c115 Table *h = hvalue(t);
141 Table *h = hvalue(t);
278 if (hvalue(t1) == hvalue(t2)) return 1;
280 tm = get_equalTM(L, hvalue(t1)->metatable, hvalue(t2)->metatable, TM_EQ);
339 Table *h = hvalue(rb);
822 h = hvalue(ra);
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 1602 milliseconds