Home
last modified time | relevance | path

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

/freebsd/contrib/lua/src/
H A Dldo.c215 StkId newstack; in luaD_reallocstack() local
220 newstack = luaM_reallocvector(L, L->stack.p, oldsize + EXTRA_STACK, in luaD_reallocstack()
223 if (l_unlikely(newstack == NULL)) { /* reallocation failed? */ in luaD_reallocstack()
229 L->stack.p = newstack; in luaD_reallocstack()
233 setnilvalue(s2v(newstack + i)); /* erase new segment */ in luaD_reallocstack()
H A Dlcode.c467 int newstack = fs->freereg + n; in luaK_checkstack() local
468 if (newstack > fs->f->maxstacksize) { in luaK_checkstack()
469 if (newstack >= MAXREGS) in luaK_checkstack()
472 fs->f->maxstacksize = cast_byte(newstack); in luaK_checkstack()
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.cpp882 auto *newstack = (uptr *)Alloc(newsz * sizeof(uptr)); in GrowShadowStack() local
883 internal_memcpy(newstack, thr->shadow_stack, sz * sizeof(uptr)); in GrowShadowStack()
885 thr->shadow_stack = newstack; in GrowShadowStack()
886 thr->shadow_stack_pos = newstack + sz; in GrowShadowStack()
887 thr->shadow_stack_end = newstack + newsz; in GrowShadowStack()
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlcode.c263 int newstack = fs->freereg + n; in luaK_checkstack() local
264 if (newstack > fs->f->maxstacksize) { in luaK_checkstack()
265 if (newstack >= MAXSTACK) in luaK_checkstack()
267 fs->f->maxstacksize = cast_byte(newstack); in luaK_checkstack()