HomeSort by relevance Sort by last modified time
    Searched refs:debt (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/skia/third_party/lua/src/
lgc.c 907 l_mem debt, threshold; local
912 debt = -cast(l_mem, threshold - gettotalbytes(g));
913 luaE_setdebt(g, debt);
1134 l_mem debt = g->GCdebt; local
    [all...]
lstate.c 106 void luaE_setdebt (global_State *g, l_mem debt) {
107 g->totalbytes -= (debt - g->GCdebt);
108 g->GCdebt = debt;
lstate.h 221 LUAI_FUNC void luaE_setdebt (global_State *g, l_mem debt);
lapi.c 1055 lu_mem debt = cast(lu_mem, data) * 1024 - GCSTEPSIZE; local
1057 debt += g->GCdebt; /* include current debt */
1058 luaE_setdebt(g, debt);

Completed in 57 milliseconds