Home
last modified time | relevance | path

Searched refs:lua_rawseti (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dltablib.c55 lua_rawseti(L, 1, i); /* t[i] = t[i-1] */ in tinsert()
63 lua_rawseti(L, 1, pos); /* t[pos] = v */ in tinsert()
76 lua_rawseti(L, 1, pos); /* t[pos] = t[pos+1] */ in tremove()
79 lua_rawseti(L, 1, pos); /* t[pos] = nil */ in tremove()
127 lua_rawseti(L, -2, 1); /* insert first element */ in pack()
130 lua_rawseti(L, 1, i); in pack()
166 lua_rawseti(L, 1, i); in set2()
167 lua_rawseti(L, 1, j); in set2()
H A Dlauxlib.c495 lua_rawseti(L, t, freelist); /* (t[freelist] = t[ref]) */ in luaL_ref()
499 lua_rawseti(L, t, ref); in luaL_ref()
508 lua_rawseti(L, t, ref); /* t[ref] = t[freelist] */ in luaL_unref()
510 lua_rawseti(L, t, freelist); /* t[freelist] = ref */ in luaL_unref()
H A Dlua.h241 LUA_API void (lua_rawseti) (lua_State *L, int idx, int n); variable
H A Dlapi.c783 LUA_API void lua_rawseti (lua_State *L, int idx, int n) { in lua_rawseti() function