Home
last modified time | relevance | path

Searched refs:luaH_get (Results 1 – 5 of 5) sorted by relevance

/external/lua/src/
Dlvm.h68 if (luaV_fastget(L,t,k,slot,luaH_get)) { setobj2s(L, v, slot); } \
91 if (!luaV_fastset(L,t,k,slot,luaH_get,v)) \
Dltable.h48 LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key);
Dltable.c589 const TValue *luaH_get (Table *t, const TValue *key) { in luaH_get() function
611 const TValue *p = luaH_get(t, key); in luaH_set()
Dlvm.c186 if (luaV_fastget(L,t,key,slot,luaH_get)) { /* fast track? */ in luaV_finishget()
233 if (luaV_fastset(L, t, key, slot, luaH_get, val)) in luaV_finishset()
775 if (luaV_fastget(L,t,k,slot,luaH_get)) { setobj2s(L, v, slot); } \
781 if (!luaV_fastset(L,t,k,slot,luaH_get,v)) \
Dlapi.c652 setobj2s(L, L->top - 1, luaH_get(hvalue(t), L->top - 1)); in lua_rawget()
677 setobj2s(L, L->top, luaH_get(hvalue(t), &k)); in lua_rawgetp()