Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/lua/
H A Dltable.h29 LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key);
H A Dltable.c483 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 Dlvm.c117 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 Dlapi.c643 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 Dltable.h43 LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key);
H A Dlapi.c679 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 Dltable.c803 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 Dlvm.c319 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 Dlcode.c548 const TValue *idx = luaH_get(fs->ls->h, key); /* query scanner table */ in addk()