Searched refs:luaH_set (Results 1 – 8 of 8) sorted by relevance
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | ltable.h | 31 LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key);
|
H A D | ltable.c | 329 setobjt2t(L, luaH_set(L, t, gkey(old)), gval(old)); in luaH_resize() 419 return luaH_set(L, t, key); /* insert key into grown table */ in luaH_newkey() 513 TValue *luaH_set (lua_State *L, Table *t, const TValue *key) { in luaH_set() function
|
H A D | llex.c | 126 o = luaH_set(L, ls->fs->h, L->top - 1); in luaX_newstring()
|
H A D | lapi.c | 775 setobj2t(L, luaH_set(L, hvalue(t), L->top-2), L->top-1); in lua_rawset() 804 setobj2t(L, luaH_set(L, hvalue(t), &k), L->top - 1); in lua_rawsetp()
|
H A D | lcode.c | 295 TValue *idx = luaH_set(L, fs->h, key); in addk()
|
/freebsd/contrib/lua/src/ |
H A D | ltable.h | 44 LUAI_FUNC void luaH_set (lua_State *L, Table *t, const TValue *key,
|
H A D | ltable.c | 518 luaH_set(L, t, &k, gval(old)); in reinsert() 690 luaH_set(L, t, key, value); /* insert key into grown table */ in luaH_newkey() 839 void luaH_set (lua_State *L, Table *t, const TValue *key, TValue *value) { in luaH_set() function
|
H A D | lapi.c | 901 luaH_set(L, t, key, s2v(L->top.p - 1)); in aux_rawset()
|