Searched refs:stack (Results 251 - 275 of 762) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/lib/libc/arm/sys/
H A Dcerror.S51 .section .note.GNU-stack,"",%progbits
/freebsd-11-stable/lib/libc/i386/sys/
H A Dcerror.S68 .section .note.GNU-stack,"",%progbits
/freebsd-11-stable/usr.bin/dc/
H A Dbcode.h59 struct stack { struct
60 struct value *stack; member in struct:stack
H A Dbcode.c43 struct stack *reg;
44 struct stack stack; member in struct:bmachine
242 stack_init(&bmachine.stack);
440 stack_pushnumber(&bmachine.stack, n);
447 stack_pushstring(&bmachine.stack, string);
454 stack_push(&bmachine.stack, v);
461 return (stack_tos(&bmachine.stack));
468 return (stack_pop(&bmachine.stack));
475 return (stack_popnumber(&bmachine.stack));
846 struct stack *stack; local
884 struct stack *stack; local
920 struct stack *stack; local
1711 struct source *stack; local
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dldo.h22 #define savestack(L,p) ((char *)(p) - (char *)L->stack)
23 #define restorestack(L,n) ((TValue *)((char *)L->stack + (n)))
H A Dlstate.c133 /* initialize stack array */
134 L1->stack = luaM_newvector(L, BASIC_STACK_SIZE, TValue);
137 setnilvalue(L1->stack + i); /* erase new stack */
138 L1->top = L1->stack;
139 L1->stack_last = L1->stack + L1->stacksize - EXTRA_STACK;
152 if (L->stack == NULL)
153 return; /* stack not completely built yet */
156 luaM_freearray(L, L->stack, L->stacksize); /* free stack arra
[all...]
/freebsd-11-stable/sys/compat/cloudabi32/
H A Dcloudabi32_thread.c67 /* Remove some space on the top of the stack for the TCB. */
68 args.tcb = rounddown(args.attr.stack + args.attr.stack_len -
70 args.attr.stack_len = args.tcb - args.attr.stack;
/freebsd-11-stable/sys/compat/cloudabi64/
H A Dcloudabi64_thread.c67 /* Remove some space on the top of the stack for the TCB. */
68 args.tcb = rounddown(args.attr.stack + args.attr.stack_len -
70 args.attr.stack_len = args.tcb - args.attr.stack;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Format/
H A DFormatTokenLexer.h26 #include <stack>
78 // an opening ${. It also maintains a stack of lexing contexts to handle
94 std::stack<LexerState> StateStack;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_malloc_win.cpp83 return asan_free(ptr, &stack, FROM_MALLOC);
99 return asan_malloc(size, &stack);
115 return asan_calloc(nmemb, size, &stack);
136 return asan_realloc(ptr, size, &stack);
241 void *p = asan_malloc(dwBytes, &stack);
265 asan_free(lpMem, &stack, FROM_MALLOC);
313 replacement_alloc = asan_calloc(1, dwBytes, &stack);
315 replacement_alloc = asan_malloc(dwBytes, &stack);
319 asan_free(replacement_alloc, &stack, FROM_MALLOC);
344 asan_free(lpMem, &stack, FROM_MALLO
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cpp55 return lsan_malloc(size, stack);
77 return lsan_calloc(nmemb, size, stack);
83 return lsan_realloc(q, size, stack);
89 return lsan_reallocarray(q, nmemb, size, stack);
95 return lsan_posix_memalign(memptr, alignment, size, stack);
101 return lsan_valloc(size, stack);
109 return lsan_memalign(alignment, size, stack);
116 void *res = lsan_memalign(alignment, size, stack);
130 return lsan_aligned_alloc(alignment, size, stack);
173 return lsan_pvalloc(size, stack);
[all...]
H A Dlsan.cpp91 BufferedStackTrace *stack) {
92 stack->Unwind(StackTrace::GetNextInstructionPc(sig.pc), sig.bp, sig.context,
134 stack.Print();
90 OnStackUnwind(const SignalContext &sig, const void *, BufferedStackTrace *stack) argument
/freebsd-11-stable/contrib/gcc/
H A Dipa-utils.c67 struct cgraph_node **stack;
82 ipa_utils_reduced_inorder. ENV is a stack env and would be
99 env->stack[(env->stack_size)++] = v;
135 x = env->stack[--(env->stack_size)];
165 env.stack = XCNEWVEC (struct cgraph_node *, cgraph_n_nodes);
203 free (env.stack);
66 struct cgraph_node **stack; member in struct:searchc_env
H A Dipa.c38 struct cgraph_node **stack = local
70 stack[stack_size++] = node2;
79 node2 = stack[--stack_size];
85 free (stack);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_unwind_linux_libcdep.cpp9 // This file contains the unwind.h-based (aka "slow") stack unwinding routines
74 BufferedStackTrace *stack; member in struct:__sanitizer::__anon1034::UnwindTraceArg
80 CHECK_LT(arg->stack->size, arg->max_depth);
87 arg->stack->trace_buffer[arg->stack->size++] = pc;
88 if (arg->stack->size == arg->max_depth) return UNWIND_STOP;
104 "Failed to open libcorkscrew.so. You may see broken stack traces "
118 "You may see broken stack traces in SEGV reports.");
134 // unless there is only 1 frame in the stack trace (1 frame is always better
/freebsd-11-stable/sys/compat/linux/
H A Dtrace_futexes.d68 stack();
78 stack();
97 stack();
117 stack();
127 stack();
/freebsd-11-stable/sys/i386/i386/
H A Dbios.c325 char *p, *stack, *stack_top; local
340 * our constructed stack segment. Pad the top of the stack
343 stack = (caddr_t)PAGE_SIZE - 32;
353 stack -= 4;
358 stack -= 4;
366 stack -= 2;
371 stack -= 2;
414 stack_top = stack;
420 *(u_int *)stack
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DImmutableSet.h651 SmallVector<uintptr_t,20> stack; member in class:llvm::ImutAVLTreeGenericIterator
661 if (Root) stack.push_back(reinterpret_cast<uintptr_t>(Root));
665 assert(!stack.empty());
666 return *reinterpret_cast<TreeTy *>(stack.back() & ~Flags);
671 assert(!stack.empty());
672 return stack.back() & Flags;
675 bool atEnd() const { return stack.empty(); }
678 return stack.size() == 1 && getVisitState() == VisitedNone;
682 assert(!stack.empty());
683 stack
[all...]
/freebsd-11-stable/contrib/gcclibs/libcpp/
H A Dsymtab.c62 _obstack_begin (&table->stack, 0, 0,
66 obstack_alignment_mask (&table->stack) = 0;
79 obstack_free (&table->stack, NULL);
126 obstack_free (&table->stack, (void *) str);
149 obstack_free (&table->stack, (void *) str);
164 HT_STR (node) = (const unsigned char *) obstack_copy0 (&table->stack,
284 overhead = obstack_memory_used (&table->stack) - total_bytes;
/freebsd-11-stable/contrib/gdb/gdb/
H A Ddwarf2expr.c44 retval->stack = xmalloc (retval->stack_allocated * sizeof (CORE_ADDR));
55 xfree (ctx->stack);
60 /* Expand the memory allocated to CTX's stack to contain at least
69 ctx->stack = xrealloc (ctx->stack,
75 /* Push VALUE onto CTX's stack. */
81 ctx->stack[ctx->stack_len++] = value;
84 /* Pop the top item off of CTX's stack. */
90 error ("dwarf expression stack underflow");
94 /* Retrieve the N'th item on CTX's stack
[all...]
/freebsd-11-stable/sys/cddl/dev/dtrace/amd64/
H A Ddtrace_isa.c33 #include <sys/stack.h>
39 #include <machine/stack.h>
118 * loop to account for a circular stack.
179 * If there's no user context we still need to zero the stack.
199 * of stack and back the pc up to the caller, which is stored
200 * at the current stack pointer address since the call
247 * of stack and back the pc up to the caller, which is stored
248 * at the current stack pointer address since the call
269 #ifdef notyet /* XXX signal stack */
281 * If there's no user context we still need to zero the stack
361 uintptr_t *stack; local
[all...]
/freebsd-11-stable/sys/dev/xen/debug/
H A Ddebug.c40 #include <sys/stack.h>
67 stack_capture(struct stack *st, register_t rbp);
73 struct stack st;
82 xc_printf("Printing stack trace vCPU%d\n", PCPU_GET(vcpu_id));
121 panic("Unable to create sbuf for stack dump");
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_mman.cpp150 VarSizeStackTrace stack;
151 ObtainCurrentStack(thr, pc, &stack);
152 if (IsFiredSuppression(ctx, ReportTypeSignalUnsafe, stack))
156 rep.AddStack(stack, true);
170 ReportAllocationSizeTooBig(sz, malloc_limit, &stack);
178 ReportOutOfMemory(sz, &stack);
205 ReportCallocOverflow(n, size, &stack);
218 ReportReallocArrayOverflow(size, n, &stack);
264 ReportInvalidAllocationAlignment(align, &stack);
275 ReportInvalidPosixMemalignAlignment(align, &stack);
[all...]
/freebsd-11-stable/crypto/openssl/crypto/des/
H A DMakefile117 cbc_cksm.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
123 cbc_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
130 cfb64ede.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
136 cfb64enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
142 cfb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
148 des_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
154 des_old.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
160 des_old2.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h
166 ecb3_enc.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h
173 ecb_enc.o: ../../include/openssl/safestack.h ../../include/openssl/stack
[all...]
/freebsd-11-stable/lib/msun/i387/
H A De_exp.S100 .section .note.GNU-stack,"",%progbits

Completed in 265 milliseconds

<<11121314151617181920>>