Searched refs:newstack (Results 1 – 9 of 9) sorted by relevance
/netbsd-src/external/gpl2/texinfo/dist/makeinfo/ |
H A D | files.c | 287 FSTACK *newstack = xmalloc (sizeof (FSTACK)); in pushfile() local 288 newstack->filename = input_filename; in pushfile() 289 newstack->text = input_text; in pushfile() 290 newstack->size = input_text_length; in pushfile() 291 newstack->offset = input_text_offset; in pushfile() 292 newstack->line_number = line_number; in pushfile() 293 newstack->next = filestack; in pushfile() 295 filestack = newstack; in pushfile()
|
H A D | html.c | 408 HSTACK *newstack = xmalloc (sizeof (HSTACK)); in push_tag() local 410 newstack->tag = tag; in push_tag() 411 newstack->attribs = xstrdup (attribs); in push_tag() 412 newstack->next = htmlstack; in push_tag() 413 htmlstack = newstack; in push_tag()
|
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/ |
H A D | tsan_rtl.cpp | 545 auto *newstack = (uptr *)Alloc(newsz * sizeof(uptr)); in GrowShadowStack() local 546 internal_memcpy(newstack, thr->shadow_stack, sz * sizeof(uptr)); in GrowShadowStack() 548 thr->shadow_stack = newstack; in GrowShadowStack() 549 thr->shadow_stack_pos = newstack + sz; in GrowShadowStack() 550 thr->shadow_stack_end = newstack + newsz; in GrowShadowStack()
|
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
H A D | tsan_rtl.cc | 520 uptr *newstack = (uptr*)internal_alloc(MBlockShadowStack, in GrowShadowStack() local 522 internal_memcpy(newstack, thr->shadow_stack, sz * sizeof(uptr)); in GrowShadowStack() 524 thr->shadow_stack = newstack; in GrowShadowStack() 525 thr->shadow_stack_pos = newstack + sz; in GrowShadowStack() 526 thr->shadow_stack_end = newstack + newsz; in GrowShadowStack()
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
H A D | tsan_rtl.cc | 524 uptr *newstack = (uptr*)internal_alloc(MBlockShadowStack, in GrowShadowStack() local 526 internal_memcpy(newstack, thr->shadow_stack, sz * sizeof(uptr)); in GrowShadowStack() 528 thr->shadow_stack = newstack; in GrowShadowStack() 529 thr->shadow_stack_pos = newstack + sz; in GrowShadowStack() 530 thr->shadow_stack_end = newstack + newsz; in GrowShadowStack()
|
/netbsd-src/external/mit/lua/dist/src/ |
H A D | ldo.c | 219 StkId newstack; in luaD_reallocstack() local 224 newstack = luaM_reallocvector(L, L->stack.p, oldsize + EXTRA_STACK, in luaD_reallocstack() 227 if (l_unlikely(newstack == NULL)) { /* reallocation failed? */ in luaD_reallocstack() 233 L->stack.p = newstack; in luaD_reallocstack() 237 setnilvalue(s2v(newstack + i)); /* erase new segment */ in luaD_reallocstack()
|
H A D | lcode.c | 473 int newstack = fs->freereg + n; in luaK_checkstack() local 474 if (newstack > fs->f->maxstacksize) { in luaK_checkstack() 475 if (newstack >= MAXREGS) in luaK_checkstack() 478 fs->f->maxstacksize = cast_byte(newstack); in luaK_checkstack()
|
/netbsd-src/sys/kern/ |
H A D | kern_exec.c | 1340 char * const newstack = STACK_GROW(vm->vm_minsaddr, epp->ep_ssize); in execve_runproc() 1342 error = copyoutargs(data, l, newstack); in execve_runproc() 1357 (*epp->ep_esch->es_emul->e_setregs)(l, epp, (vaddr_t)newstack); in execve_runproc() 1359 (*epp->ep_esch->es_setregs)(l, epp, (vaddr_t)newstack); in execve_runproc() 1544 char * const newstack) in copyoutargs() 1564 STACK_SHRINK(newstack, data->ed_argslen), data->ed_argslen); in copyoutargs() 1339 char * const newstack = STACK_GROW(vm->vm_minsaddr, epp->ep_ssize); execve_runproc() local 1543 copyoutargs(struct execve_data * restrict data,struct lwp * l,char * const newstack) copyoutargs() argument
|
/netbsd-src/external/mpl/bind/dist/lib/bind9/ |
H A D | check.c |
|