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

1234567891011>>

/freebsd-9.3-release/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-9.3-release/usr.bin/dc/
H A Dstack.c1 /* $OpenBSD: stack.c,v 1.11 2009/10/27 23:59:37 deraadt Exp $ */
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 = NULL;
47 stack_empty(const struct stack *stac argument
103 stack_size(const struct stack *stack) argument
110 stack_dup(struct stack *stack) argument
124 stack_swap(struct stack *stack) argument
138 stack_grow(struct stack *stack) argument
153 stack_pushnumber(struct stack *stack, struct number *b) argument
162 stack_pushstring(struct stack *stack, char *string) argument
171 stack_push(struct stack *stack, struct value *v) argument
191 stack_tos(const struct stack *stack) argument
200 stack_set_tos(struct stack *stack, struct value *v) argument
214 stack_pop(struct stack *stack) argument
223 stack_popnumber(struct stack *stack) argument
240 stack_popstring(struct stack *stack) argument
257 stack_clear(struct stack *stack) argument
268 stack_print(FILE *f, const struct stack *stack, const char *prefix, u_int base) argument
351 frame_assign(struct stack *stack, size_t i, const struct value *v) argument
369 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-9.3-release/contrib/libstdc++/include/backward/
H A Dstack.h64 #include <stack>
66 using std::stack;
/freebsd-9.3-release/sys/pc98/include/
H A Dstack.h6 #include <i386/stack.h>
/freebsd-9.3-release/contrib/cvs/src/
H A Dstack.c10 * This module uses the hash.c module to implement a stack.
19 do_push (stack, elem, isstring)
20 List *stack;
31 addnode(stack, p);
37 push (stack, elem)
38 List *stack;
41 do_push (stack, elem, 0);
47 push_string (stack, elem)
48 List *stack;
51 do_push (stack, ele
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printa/
H A Derr.D_PRINTF_ARG_TYPE.stack.d31 @[stack()] = count();
/freebsd-9.3-release/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(struct stack *, struct stack *);
41 void stack_zero(struct stack *);
42 void stack_print(struct stack *);
43 void stack_print_ddb(struct stack *);
44 void stack_print_short(struct stack *);
45 void stack_print_short_ddb(struct stack *);
[all...]
H A D_stack.h34 struct stack { struct
/freebsd-9.3-release/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-9.3-release/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-9.3-release/sys/boot/userboot/userboot/
H A Delf32_freebsd.c59 uint32_t stack[1024]; local
78 * Build a scratch stack at physical 0x1000
80 stack[0] = boothowto;
81 stack[1] = bootdev;
82 stack[2] = 0;
83 stack[3] = 0;
84 stack[4] = 0;
85 stack[5] = bootinfop;
86 stack[6] = modulep;
87 stack[
[all...]
/freebsd-9.3-release/usr.bin/csup/
H A Dglobtree.c244 /* Small stack API to walk the tree iteratively. */
250 struct stack { struct
251 struct stackelem *stack; member in struct:stack
262 stack_init(struct stack *stack) argument
265 stack->in = 0;
266 stack->size = 8; /* Initial size. */
267 stack->stack = xmalloc(sizeof(struct stackelem) * stack
271 stack_size(struct stack *stack) argument
278 stack_push(struct stack *stack, struct globtree *node, walkstate_t state) argument
293 stack_pop(struct stack *stack, struct globtree **node, walkstate_t *state) argument
314 struct stack stack; local
[all...]
/freebsd-9.3-release/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...]
/freebsd-9.3-release/sys/ia64/ia64/
H A Dstack_machdep.c33 #include <sys/stack.h>
36 stack_save_td(struct stack *st, struct thread *td)
48 stack_save(struct stack *st)
/freebsd-9.3-release/lib/libc/powerpc/gen/
H A Dfabs.S37 .section .note.GNU-stack,"",%progbits
/freebsd-9.3-release/lib/libc/powerpc64/gen/
H A Dfabs.S37 .section .note.GNU-stack,"",%progbits
/freebsd-9.3-release/lib/msun/amd64/
H A De_sqrtl.S35 .section .note.GNU-stack,"",%progbits
H A Ds_rintl.S45 .section .note.GNU-stack,"",%progbits
/freebsd-9.3-release/lib/msun/i387/
H A De_sqrtl.S44 .section .note.GNU-stack,"",%progbits
H A Ds_rintl.S44 .section .note.GNU-stack,"",%progbits
/freebsd-9.3-release/cddl/contrib/dtracetoolkit/Bin/
H A Dputnexts.d6 * queue and the calling stack, by frequency count. This is especially useful
8 * TCP/IP stack.
37 @[stringof(args[0]->q_qinfo->qi_minfo->mi_idname), stack(5)] = count();
/freebsd-9.3-release/cddl/contrib/dtracetoolkit/Kernel/
H A Dputnexts.d6 * queue and the calling stack, by frequency count. This is especially useful
8 * TCP/IP stack.
37 @[stringof(args[0]->q_qinfo->qi_minfo->mi_idname), stack(5)] = count();

Completed in 106 milliseconds

1234567891011>>