Searched refs:luaH_get (Results 1 – 9 of 9) sorted by relevance
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | ltable.h | 29 LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key);
|
H A D | ltable.c | 483 const TValue *luaH_get (Table *t, const TValue *key) { in luaH_get() function 514 const TValue *p = luaH_get(t, key); in luaH_set()
|
H A D | lvm.c | 117 const TValue *res = luaH_get(h, key); /* do a primitive get */ in luaV_gettable() 143 TValue *oldval = cast(TValue *, luaH_get(h, key)); in luaV_settable()
|
H A D | lapi.c | 643 setobj2s(L, L->top - 1, luaH_get(hvalue(t), L->top - 1)); in lua_rawget() 666 setobj2s(L, L->top, luaH_get(hvalue(t), &k)); in lua_rawgetp()
|
/freebsd/contrib/lua/src/ |
H A D | ltable.h | 43 LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key);
|
H A D | lapi.c | 679 if (luaV_fastget(L, t, s2v(L->top.p - 1), slot, luaH_get)) { in lua_gettable() 738 val = luaH_get(t, s2v(L->top.p - 1)); in lua_rawget() 758 return finishrawget(L, luaH_get(t, &k)); in lua_rawgetp() 861 if (luaV_fastget(L, t, s2v(L->top.p - 2), slot, luaH_get)) { in lua_settable()
|
H A D | ltable.c | 803 const TValue *luaH_get (Table *t, const TValue *key) { in luaH_get() function 840 const TValue *slot = luaH_get(t, key); in luaH_set()
|
H A D | lvm.c | 319 if (luaV_fastget(L, t, key, slot, luaH_get)) { /* fast track? */ in luaV_finishget() 367 if (luaV_fastget(L, t, key, slot, luaH_get)) { in luaV_finishset() 1277 : luaV_fastget(L, rb, rc, slot, luaH_get)) { in luaV_execute() 1333 : luaV_fastget(L, s2v(ra), rb, slot, luaH_get)) { in luaV_execute()
|
H A D | lcode.c | 548 const TValue *idx = luaH_get(fs->ls->h, key); /* query scanner table */ in addk()
|