Searched refs:luaV_fastget (Results 1 – 3 of 3) sorted by relevance
/netbsd-src/external/mit/lua/dist/src/ |
H A D | lvm.c | 338 if (luaV_fastget(L, t, key, slot, luaH_get)) { /* fast track? */ 383 if (luaV_fastget(L, t, key, slot, luaH_get)) { 1343 if (luaV_fastget(L, upval, key, slot, luaH_getshortstr)) { 1358 : luaV_fastget(L, rb, rc, slot, luaH_get)) { 1386 if (luaV_fastget(L, rb, key, slot, luaH_getshortstr)) { 1399 if (luaV_fastget(L, upval, key, slot, luaH_getshortstr)) { 1414 : luaV_fastget(L, s2v(ra), rb, slot, luaH_get)) { 1442 if (luaV_fastget(L, s2v(ra), key, slot, luaH_getshortstr)) { 1475 if (luaV_fastget(L, rb, key, slot, luaH_getstr)) {
|
H A D | lvm.h | 91 #define luaV_fastget(L,t,k,slot,f) \ macro
|
H A D | lapi.c | 652 if (luaV_fastget(L, t, str, slot, luaH_getstr)) { in auxgetstr() 689 if (luaV_fastget(L, t, s2v(L->top.p - 1), slot, luaH_get)) { in lua_gettable() 843 if (luaV_fastget(L, t, str, slot, luaH_getstr)) { in auxsetstr() 871 if (luaV_fastget(L, t, s2v(L->top.p - 2), slot, luaH_get)) { in lua_settable()
|