HomeSort by: relevance | last modified time | path
    Searched defs:newstack (Results 1 - 8 of 8) sorted by relevancy

  /src/external/gpl2/texinfo/dist/makeinfo/
files.c 290 FSTACK *newstack = xmalloc (sizeof (FSTACK));
291 newstack->filename = input_filename;
292 newstack->text = input_text;
293 newstack->size = input_text_length;
294 newstack->offset = input_text_offset;
295 newstack->line_number = line_number;
296 newstack->next = filestack;
298 filestack = newstack;
287 FSTACK *newstack = xmalloc (sizeof (FSTACK)); local
html.c 412 HSTACK *newstack = xmalloc (sizeof (HSTACK));
414 newstack->tag = tag;
415 newstack->attribs = xstrdup (attribs);
416 newstack->next = htmlstack;
417 htmlstack = newstack;
408 HSTACK *newstack = xmalloc (sizeof (HSTACK)); local
  /src/external/gpl3/gcc/dist/libsanitizer/tsan/
tsan_rtl.cpp 882 auto *newstack = (uptr *)Alloc(newsz * sizeof(uptr)); local
883 internal_memcpy(newstack, thr->shadow_stack, sz * sizeof(uptr));
885 thr->shadow_stack = newstack;
886 thr->shadow_stack_pos = newstack + sz;
887 thr->shadow_stack_end = newstack + newsz;
  /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_rtl.cpp 545 auto *newstack = (uptr *)Alloc(newsz * sizeof(uptr)); local
546 internal_memcpy(newstack, thr->shadow_stack, sz * sizeof(uptr));
548 thr->shadow_stack = newstack;
549 thr->shadow_stack_pos = newstack + sz;
550 thr->shadow_stack_end = newstack + newsz;
  /src/external/mit/lua/dist/src/
ldo.c 219 StkId newstack; local
224 newstack = luaM_reallocvector(L, L->stack.p, oldsize + EXTRA_STACK,
227 if (l_unlikely(newstack == NULL)) { /* reallocation failed? */
233 L->stack.p = newstack;
237 setnilvalue(s2v(newstack + i)); /* erase new segment */
lcode.c 473 int newstack = fs->freereg + n; local
474 if (newstack > fs->f->maxstacksize) {
475 if (newstack >= MAXREGS)
478 fs->f->maxstacksize = cast_byte(newstack);
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl.cc 524 uptr *newstack = (uptr*)internal_alloc(MBlockShadowStack, local
526 internal_memcpy(newstack, thr->shadow_stack, sz * sizeof(uptr));
528 thr->shadow_stack = newstack;
529 thr->shadow_stack_pos = newstack + sz;
530 thr->shadow_stack_end = newstack + newsz;
  /src/sys/kern/
kern_exec.c 1335 char * const newstack = STACK_GROW(vm->vm_minsaddr, epp->ep_ssize); local
1337 error = copyoutargs(data, l, newstack);
1352 (*epp->ep_esch->es_emul->e_setregs)(l, epp, (vaddr_t)newstack);
1354 (*epp->ep_esch->es_setregs)(l, epp, (vaddr_t)newstack);
1539 char * const newstack)
1559 STACK_SHRINK(newstack, data->ed_argslen), data->ed_argslen);

Completed in 30 milliseconds