Searched refs:luaV_fastget (Results 1 – 3 of 3) sorted by relevance
/external/lua/src/ |
D | lvm.c | 313 if (luaV_fastget(L, t, key, slot, luaH_get)) { /* fast track? */ in luaV_finishget() 361 if (luaV_fastget(L, t, key, slot, luaH_get)) { in luaV_finishset() 1219 if (luaV_fastget(L, upval, key, slot, luaH_getshortstr)) { in luaV_execute() 1233 : luaV_fastget(L, rb, rc, slot, luaH_get)) { in luaV_execute() 1259 if (luaV_fastget(L, rb, key, slot, luaH_getshortstr)) { in luaV_execute() 1272 if (luaV_fastget(L, upval, key, slot, luaH_getshortstr)) { in luaV_execute() 1286 : luaV_fastget(L, s2v(ra), rb, slot, luaH_get)) { in luaV_execute() 1312 if (luaV_fastget(L, s2v(ra), key, slot, luaH_getshortstr)) { in luaV_execute() 1343 if (luaV_fastget(L, rb, key, slot, luaH_getstr)) { in luaV_execute()
|
D | lvm.h | 83 #define luaV_fastget(L,t,k,slot,f) \ macro
|
D | lapi.c | 618 if (luaV_fastget(L, t, str, slot, luaH_getstr)) { in auxgetstr() 645 if (luaV_fastget(L, t, s2v(L->top - 1), slot, luaH_get)) { in lua_gettable() 799 if (luaV_fastget(L, t, str, slot, luaH_getstr)) { in auxsetstr() 827 if (luaV_fastget(L, t, s2v(L->top - 2), slot, luaH_get)) { in lua_settable()
|