MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / lua_insert

Function lua_insert

ogsr_engine/LuaJIT/src/lj_api.c:169–174  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167}
168
169LUA_API void lua_insert(lua_State *L, int idx)
170{
171 TValue *q, *p = index2adr_stack(L, idx);
172 for (q = L->top; q > p; q--) copyTV(L, q, q-1);
173 copyTV(L, p, L->top);
174}
175
176static void copy_slot(lua_State *L, TValue *f, int idx)
177{

Callers 13

docallFunction · 0.70
loadlineFunction · 0.70
dottyFunction · 0.70
luaL_openlibFunction · 0.70
luaL_addvalueFunction · 0.70
lj_cf_package_loadlibFunction · 0.70
lj_cf_package_searchpathFunction · 0.70
register_Method · 0.50
pcallFunction · 0.50
copy_member_tableFunction · 0.50
operator_dispatcherMethod · 0.50
class_rep.cppFile · 0.50

Calls 2

index2adr_stackFunction · 0.85
copyTVFunction · 0.85

Tested by

no test coverage detected