Home
last modified time | relevance | path

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

/netbsd-src/external/mit/lua/dist/src/
H A Dlbaselib.c213 int k = lua_gc(L, o); in luaB_collectgarbage()
214 int b = lua_gc(L, LUA_GCCOUNTB); in luaB_collectgarbage()
221 int res = lua_gc(L, o, step); in luaB_collectgarbage()
229 int previous = lua_gc(L, o, p); in luaB_collectgarbage()
235 int res = lua_gc(L, o); in luaB_collectgarbage()
243 return pushmode(L, lua_gc(L, o, minormul, majormul)); in luaB_collectgarbage()
249 return pushmode(L, lua_gc(L, o, pause, stepmul, stepsize)); in luaB_collectgarbage()
252 int res = lua_gc(L, o); in luaB_collectgarbage()
H A Dlua.c638 lua_gc(L, LUA_GCRESTART); /* start GC... */ in pmain()
639 lua_gc(L, LUA_GCGEN, 0, 0); /* ...in generational mode */ in pmain()
671 lua_gc(L, LUA_GCSTOP); /* stop GC while building state */ in main()
H A Dlua.h365 LUA_API int (lua_gc) (lua_State *L, int what, ...); variable
H A Dlapi.c1143 LUA_API int lua_gc (lua_State *L, int what, ...) { in lua_gc() function