Searched refs:stack (Results 1 - 25 of 762) sorted by relevance

1234567891011>>

/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/stack/
H A Derr.D_STACK_SIZE.d31 * Test stack() with an invalid argument.
39 stack("i'm not an integer constant");
H A Derr.D_STACK_PROTO.bad.d31 * stack() accepts one argument
33 * SECTION: Actions and Subroutines/stack()
40 stack(1, 2);
H A Dtst.default.d31 * Test the stack action with the default stack depth.
39 stack();
/freebsd-11-stable/usr.bin/dc/
H A Dstack.c1 /* $OpenBSD: stack.c,v 1.12 2014/11/26 15:05:51 otto Exp $ */
20 __FBSDID("$FreeBSD: stable/11/usr.bin/dc/stack.c 315134 2017-03-12 05:35:28Z pfg $");
28 static __inline bool stack_empty(const struct stack *);
29 static void stack_grow(struct stack *);
38 stack_init(struct stack *stack) argument
41 stack->size = 0;
42 stack->sp = -1;
43 stack->stack
47 stack_empty(const struct stack *stack) argument
101 stack_size(const struct stack *stack) argument
108 stack_dup(struct stack *stack) argument
122 stack_swap(struct stack *stack) argument
136 stack_grow(struct stack *stack) argument
149 stack_pushnumber(struct stack *stack, struct number *b) argument
159 stack_pushstring(struct stack *stack, char *string) argument
169 stack_push(struct stack *stack, struct value *v) argument
189 stack_tos(const struct stack *stack) argument
198 stack_set_tos(struct stack *stack, struct value *v) argument
212 stack_pop(struct stack *stack) argument
221 stack_popnumber(struct stack *stack) argument
236 stack_popstring(struct stack *stack) argument
251 stack_clear(struct stack *stack) argument
261 stack_print(FILE *f, const struct stack *stack, const char *prefix, u_int base) argument
344 frame_assign(struct stack *stack, size_t i, const struct value *v) argument
362 frame_retrieve(const struct stack *stack, size_t i) argument
[all...]
H A Dextern.h43 /* stack.c */
44 void stack_init(struct stack *);
47 void stack_swap(struct stack *);
48 size_t stack_size(const struct stack *);
49 void stack_dup(struct stack *);
50 void stack_pushnumber(struct stack *, struct number *);
51 void stack_pushstring(struct stack *stack, char *);
52 void stack_push(struct stack *, struct value *);
53 void stack_set_tos(struct stack *, struc
[all...]
/freebsd-11-stable/contrib/libstdc++/include/backward/
H A Dstack.h64 #include <stack>
66 using std::stack;
/freebsd-11-stable/sys/amd64/include/
H A Dstack.h6 #include <x86/stack.h>
/freebsd-11-stable/sys/pc98/include/
H A Dstack.h6 #include <i386/stack.h>
/freebsd-11-stable/sys/i386/include/
H A Dstack.h6 #include <x86/stack.h>
/freebsd-11-stable/sys/sys/
H A Dstack.h37 struct stack *stack_create(void);
38 void stack_destroy(struct stack *);
39 int stack_put(struct stack *, vm_offset_t);
40 void stack_copy(const struct stack *, struct stack *);
41 void stack_zero(struct stack *);
42 void stack_print(const struct stack *);
43 void stack_print_ddb(const struct stack *);
44 void stack_print_short(const struct stack *);
45 void stack_print_short_ddb(const struct stack *);
[all...]
H A D_stack.h34 struct stack { struct
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printa/
H A Derr.D_PRINTF_ARG_TYPE.stack.d31 @[stack()] = count();
/freebsd-11-stable/contrib/bsnmp/snmp_mibII/
H A DmibII_ifstack.c38 struct mibifstack *stack; local
40 if ((stack = malloc(sizeof(*stack))) == NULL)
43 stack->index.len = 2;
44 stack->index.subs[0] = upper ? upper->index : 0;
45 stack->index.subs[1] = lower ? lower->index : 0;
47 INSERT_OBJECT_OID(stack, &mibifstack_list);
57 struct mibifstack *stack; local
59 TAILQ_FOREACH(stack, &mibifstack_list, link)
60 if (stack
73 struct mibifstack *stack; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DMSVCUndecoratedNameParser.cpp11 #include <stack>
16 std::stack<std::size_t> stack; local
27 stack.push(i);
32 if (!stack.empty() && name[stack.top()] == '<') {
34 stack.pop();
39 stack.push(i);
43 while (!stack.empty()) {
44 std::size_t top = stack
[all...]
/freebsd-11-stable/contrib/unbound/services/
H A Dmodstack.h2 * services/modstack.h - stack of modules
39 * This file contains functions to help maintain a stack of modules.
58 * Init a stack of modules
59 * @param stack: initialised as empty.
61 void modstack_init(struct module_stack* stack);
65 * @param stack: the stack of modules (empty before call).
69 int modstack_config(struct module_stack* stack, const char* module_conf);
87 * @param stack: if not empty beforehand, it will be desetup()ed.
95 int modstack_setup(struct module_stack* stack, cons
[all...]
H A Dmodstack.c2 * services/modstack.c - stack of modules
39 * This file contains functions to help maintain a stack of modules.
92 modstack_init(struct module_stack* stack) argument
94 stack->num = 0;
95 stack->mod = NULL;
99 modstack_config(struct module_stack* stack, const char* module_conf) argument
103 stack->num = count_modules(module_conf);
104 if(stack->num == 0) {
108 if(stack->num > MAX_MODULE) {
110 stack
223 modstack_setup(struct module_stack* stack, const char* module_conf, struct module_env* env) argument
248 modstack_desetup(struct module_stack* stack, struct module_env* env) argument
261 modstack_find(struct module_stack* stack, const char* name) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_report.cpp26 stack(stack_) {
31 stack->Print();
33 ReportErrorSummary(error_summary, stack);
39 const StackTrace* const stack; member in class:__sanitizer::ScopedAllocatorErrorReport
44 const StackTrace *stack) {
46 ScopedAllocatorErrorReport report("calloc-overflow", stack);
55 const StackTrace *stack) {
57 ScopedAllocatorErrorReport report("reallocarray-overflow", stack);
66 void NORETURN ReportPvallocOverflow(uptr size, const StackTrace *stack) { argument
68 ScopedAllocatorErrorReport report("pvalloc-overflow", stack);
43 ReportCallocOverflow(uptr count, uptr size, const StackTrace *stack) argument
54 ReportReallocArrayOverflow(uptr count, uptr size, const StackTrace *stack) argument
76 ReportInvalidAllocationAlignment(uptr alignment, const StackTrace *stack) argument
86 ReportInvalidAlignedAllocAlignment(uptr size, uptr alignment, const StackTrace *stack) argument
104 ReportInvalidPosixMemalignAlignment(uptr alignment, const StackTrace *stack) argument
118 ReportAllocationSizeTooBig(uptr user_size, uptr max_size, const StackTrace *stack) argument
128 ReportOutOfMemory(uptr requested_size, const StackTrace *stack) argument
[all...]
H A Dsanitizer_allocator_report.h23 const StackTrace *stack);
25 const StackTrace *stack);
26 void NORETURN ReportPvallocOverflow(uptr size, const StackTrace *stack);
28 const StackTrace *stack);
30 const StackTrace *stack);
32 const StackTrace *stack);
34 const StackTrace *stack);
35 void NORETURN ReportOutOfMemory(uptr requested_size, const StackTrace *stack);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.emptystack.d30 * ASSERTION: the stack() action should be empty for all pid probes
47 @[stack()] = sum(0);
52 @[stack()] = sum(0);
57 @[stack()] = sum(0);
/freebsd-11-stable/lib/libc/arm/sys/
H A Dshmat.S9 .section .note.GNU-stack,"",%progbits
H A Dsigreturn.S44 .section .note.GNU-stack,"",%progbits
H A Dsyscall.S40 .section .note.GNU-stack,"",%progbits
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_stack.h31 // NOTE: A Rule of thumb is to retrieve stack trace in the interceptors
33 // don't want stack trace to contain functions from ASan internals.
36 BufferedStackTrace stack; \
38 stack.size = max_size; \
40 stack.top_frame_bp = GET_CURRENT_FRAME(); \
41 stack.trace_buffer[0] = StackTrace::GetCurrentPc(); \
42 if (max_size > 1) stack.trace_buffer[1] = GET_CALLER_PC(); \
45 stack.Unwind(StackTrace::GetCurrentPc(), \
50 BufferedStackTrace stack; \
51 stack
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_malloc_bisect.h18 static u32 malloc_hash(StackTrace *stack, uptr orig_size) { argument
19 uptr len = Min(stack->size, (unsigned)7);
27 for (uptr i = 1; i < len; ++i) H.add(((u32)stack->trace[i]) & 0xFFF);
31 static INLINE bool malloc_bisect(StackTrace *stack, uptr orig_size) { argument
36 if (!stack)
40 uptr h = (uptr)malloc_hash(stack, orig_size);
45 stack->Print();
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dstl_stack.h84 * first-in-last-out %stack behavior.
94 * push, @c pop, and @c top, which are standard %stack/FILO
98 class stack class
108 operator==(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
112 operator<(const stack<_Tp1, _Seq1>&, const stack<_Tp1, _Seq1>&);
131 stack(const _Sequence& __c = _Sequence()) function in class:stack
135 * Returns true if the %stack is empty.
141 /** Returns the number of elements in the %stack
214 operator ==(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
232 operator <(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
238 operator !=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
244 operator >(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
250 operator <=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
256 operator >=(const stack<_Tp, _Seq>& __x, const stack<_Tp, _Seq>& __y) argument
[all...]

Completed in 191 milliseconds

1234567891011>>