Home
last modified time | relevance | path

Searched refs:lu_mem (Results 1 – 8 of 8) sorted by relevance

/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dllimits.h20 typedef LUAI_UMEM lu_mem; typedef
32 #define MAX_LUMEM ((lu_mem)(~(lu_mem)0)-2)
42 #define IntPoint(p) ((unsigned int)(lu_mem)(p))
H A Dlstate.h82 lu_mem GCthreshold;
83 lu_mem totalbytes; /* number of bytes currently allocated */
84 lu_mem estimate; /* an estimate of number of bytes actually in use */
85 lu_mem gcdept; /* how much GC is `behind schedule' */
H A Dlgc.c407 static GCObject **sweeplist (lua_State *L, GCObject **p, lu_mem count) { in sweeplist()
461 lu_mem oldt = g->GCthreshold; in GCTM()
573 lu_mem old = g->totalbytes; in singlestep()
582 lu_mem old = g->totalbytes; in singlestep()
H A Dlapi.c927 lu_mem a = (cast(lu_mem, data) << 10); in lua_gc()
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dllimits.h17 typedef LUAI_UMEM lu_mem; typedef
29 #define MAX_LUMEM ((lu_mem)(~(lu_mem)0)-2)
41 #define IntPoint(p) ((unsigned int)(lu_mem)(p))
H A Dlstate.h116 lu_mem totalbytes; /* number of bytes currently allocated - GCdebt */
118 lu_mem GCmemtrav; /* memory traversed by the GC */
119 lu_mem GCestimate; /* an estimate of the non-garbage memory in use */
H A Dlgc.c243 lu_mem size; in reallymarkobject()
433 static lu_mem traversetable (global_State *g, Table *h) { in traversetable()
478 static lu_mem traverseCclosure (global_State *g, CClosure *cl) { in traverseCclosure()
485 static lu_mem traverseLclosure (global_State *g, LClosure *cl) { in traverseLclosure()
494 static lu_mem traversestack (global_State *g, lua_State *th) { in traversestack()
521 lu_mem size; in propagatemark()
1039 static lu_mem singlestep (lua_State *L) { in singlestep()
1052 lu_mem oldtrav = g->GCmemtrav; in singlestep()
1057 lu_mem work; in singlestep()
1124 lu_mem estimate = g->GCestimate; in generationalcollection()
[all …]
H A Dlapi.c1052 lu_mem debt = cast(lu_mem, data) * 1024 - GCSTEPSIZE; in lua_gc()