totalbytes 910 lib/lua/lapi.c g->GCthreshold = g->totalbytes; totalbytes 919 lib/lua/lapi.c res = cast_int(g->totalbytes >> 10); totalbytes 923 lib/lua/lapi.c res = cast_int(g->totalbytes & 0x3ff); totalbytes 928 lib/lua/lapi.c if (a <= g->totalbytes) totalbytes 929 lib/lua/lapi.c g->GCthreshold = g->totalbytes - a; totalbytes 932 lib/lua/lapi.c while (g->GCthreshold <= g->totalbytes) { totalbytes 463 lib/lua/lgc.c g->GCthreshold = 2*g->totalbytes; /* avoid GC steps */ totalbytes 552 lib/lua/lgc.c g->estimate = g->totalbytes - udsize; /* first estimate */ totalbytes 573 lib/lua/lgc.c lu_mem old = g->totalbytes; totalbytes 577 lib/lua/lgc.c lua_assert(old >= g->totalbytes); totalbytes 578 lib/lua/lgc.c g->estimate -= old - g->totalbytes; totalbytes 582 lib/lua/lgc.c lu_mem old = g->totalbytes; totalbytes 588 lib/lua/lgc.c lua_assert(old >= g->totalbytes); totalbytes 589 lib/lua/lgc.c g->estimate -= old - g->totalbytes; totalbytes 615 lib/lua/lgc.c g->gcdept += g->totalbytes - g->GCthreshold; totalbytes 623 lib/lua/lgc.c g->GCthreshold = g->totalbytes + GCSTEPSIZE; /* - lim/g->gcstepmul;*/ totalbytes 626 lib/lua/lgc.c g->GCthreshold = g->totalbytes; totalbytes 82 lib/lua/lgc.h if (G(L)->totalbytes >= G(L)->GCthreshold) \ totalbytes 83 lib/lua/lmem.c g->totalbytes = (g->totalbytes - osize) + nsize; totalbytes 80 lib/lua/lstate.c g->GCthreshold = 4*g->totalbytes; totalbytes 114 lib/lua/lstate.c lua_assert(g->totalbytes == sizeof(LG)); totalbytes 177 lib/lua/lstate.c g->totalbytes = sizeof(LG); totalbytes 83 lib/lua/lstate.h lu_mem totalbytes; /* number of bytes currently allocated */