Searched refs:newstack (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.cpp531 uptr *newstack = (uptr*)internal_alloc(MBlockShadowStack, local
533 internal_memcpy(newstack, thr->shadow_stack, sz * sizeof(uptr));
535 thr->shadow_stack = newstack;
536 thr->shadow_stack_pos = newstack + sz;
537 thr->shadow_stack_end = newstack + newsz;
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlcode.c261 int newstack = fs->freereg + n; local
262 if (newstack > fs->f->maxstacksize) {
263 if (newstack >= MAXSTACK)
265 fs->f->maxstacksize = cast_byte(newstack);
/freebsd-11-stable/contrib/lua/src/
H A Dlcode.c362 int newstack = fs->freereg + n; local
363 if (newstack > fs->f->maxstacksize) {
364 if (newstack >= MAXREGS)
367 fs->f->maxstacksize = cast_byte(newstack);

Completed in 130 milliseconds