Searched refs:luaH_get (Results 1 – 8 of 8) sorted by relevance
| /freebsd-13.1/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 | 641 setobj2s(L, L->top - 1, luaH_get(hvalue(t), L->top - 1)); in lua_rawget() 664 setobj2s(L, L->top, luaH_get(hvalue(t), &k)); in lua_rawgetp()
|
| /freebsd-13.1/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 | 645 if (luaV_fastget(L, t, s2v(L->top - 1), slot, luaH_get)) { in lua_gettable() 704 val = luaH_get(t, s2v(L->top - 1)); in lua_rawget() 724 return finishrawget(L, luaH_get(t, &k)); in lua_rawgetp() 827 if (luaV_fastget(L, t, s2v(L->top - 2), slot, luaH_get)) { in lua_settable()
|
| H A D | ltable.c | 755 const TValue *luaH_get (Table *t, const TValue *key) { in luaH_get() function 777 const TValue *p = luaH_get(t, key); in luaH_set()
|
| H A D | lvm.c | 320 if (luaV_fastget(L, t, key, slot, luaH_get)) { /* fast track? */ in luaV_finishget() 368 if (luaV_fastget(L, t, key, slot, luaH_get)) { in luaV_finishset() 1239 : luaV_fastget(L, rb, rc, slot, luaH_get)) { in luaV_execute() 1292 : luaV_fastget(L, s2v(ra), rb, slot, luaH_get)) { in luaV_execute()
|