Home
last modified time | relevance | path

Searched refs:LUA_GCINC (Results 1 – 3 of 3) sorted by relevance

/external/lua/src/
Dlbaselib.c185 lua_pushstring(L, (oldmode == LUA_GCINC) ? "incremental" : "generational"); in pushmode()
196 LUA_GCISRUNNING, LUA_GCGEN, LUA_GCINC}; in luaB_collectgarbage()
228 case LUA_GCINC: { in luaB_collectgarbage()
Dlapi.c1169 res = isdecGCmodegen(g) ? LUA_GCGEN : LUA_GCINC; in lua_gc()
1177 case LUA_GCINC: { in lua_gc()
1181 res = isdecGCmodegen(g) ? LUA_GCGEN : LUA_GCINC; in lua_gc()
Dlua.h329 #define LUA_GCINC 11 macro