Home
last modified time | relevance | path

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

/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/contrib/lua/src/
H A Dldo.c222 StkId newstack; in luaD_reallocstack() local
227 newstack = luaM_reallocvector(L, L->stack.p, oldsize + EXTRA_STACK, in luaD_reallocstack()
230 if (l_unlikely(newstack == NULL)) { /* reallocation failed? */ in luaD_reallocstack()
236 L->stack.p = newstack; in luaD_reallocstack()
240 setnilvalue(s2v(newstack + i)); /* erase new segment */ in luaD_reallocstack()
H A Dlcode.c468 int newstack = fs->freereg + n; in luaK_checkstack() local
469 if (newstack > fs->f->maxstacksize) { in luaK_checkstack()
470 if (newstack >= MAXREGS) in luaK_checkstack()
473 fs->f->maxstacksize = cast_byte(newstack); in luaK_checkstack()
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlcode.c264 int newstack = fs->freereg + n; in luaK_checkstack() local
265 if (newstack > fs->f->maxstacksize) { in luaK_checkstack()
266 if (newstack >= MAXSTACK) in luaK_checkstack()
268 fs->f->maxstacksize = cast_byte(newstack); in luaK_checkstack()