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

12345678

/asus-wl-520gu-7.0.1.45/src/router/LPRng/UTILS/
H A Daccounting.pl37 # We implement a stack based FSM to do the following:
55 # end -> pop stack
62 # END -> clear stack
74 # we start from the bottom of the stack;
92 my(%opt, $action, $acct_h, $debug,$state,@stack);
162 @stack = ();
168 print STDERR "STACK\n " . join("\n ",@stack) . "\n" if $debug;
171 @stack = ();
175 push @stack, $_;
181 push @stack,
[all...]
H A Daccounting.pl.in37 # We implement a stack based FSM to do the following:
55 # end -> pop stack
62 # END -> clear stack
74 # we start from the bottom of the stack;
92 my(%opt, $action, $acct_h, $debug,$state,@stack);
162 @stack = ();
168 print STDERR "STACK\n " . join("\n ",@stack) . "\n" if $debug;
171 @stack = ();
175 push @stack, $_;
181 push @stack,
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/cris/kernel/
H A Dtraps.c6 * mechanism, as well as some general stack/register dumping
33 void show_trace(unsigned long * stack) argument
45 while (((long) stack & (THREAD_SIZE-1)) != 0) {
46 if (__get_user (addr, stack)) {
50 printk ("Failing address 0x%lx\n", (unsigned long)stack);
53 stack++;
100 unsigned long *stack, addr; local
111 stack = sp;
113 printk("\nStack from %08lx:\n ", (unsigned long)stack);
115 if (((long) stack
[all...]
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-arm/proc-armo/
H A Dprocessor.h64 unsigned long *stack = (unsigned long *)sp; \
69 regs->ARM_r2 = stack[2]; /* r2 (envp) */ \
70 regs->ARM_r1 = stack[1]; /* r1 (argv) */ \
71 regs->ARM_r0 = stack[0]; /* r0 (argc) */ \
79 * NOTE! The task struct and the stack go together
/asus-wl-520gu-7.0.1.45/src/router/iproute2/reference/asm-arm/proc-armv/
H A Dprocessor.h50 unsigned long *stack = (unsigned long *)sp; \
59 regs->ARM_r2 = stack[2]; /* r2 (envp) */ \
60 regs->ARM_r1 = stack[1]; /* r1 (argv) */ \
61 regs->ARM_r0 = stack[0]; /* r0 (argc) */ \
69 * NOTE! The task struct and the stack go together
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-arm/proc-armo/
H A Dprocessor.h64 unsigned long *stack = (unsigned long *)sp; \
69 regs->ARM_r2 = stack[2]; /* r2 (envp) */ \
70 regs->ARM_r1 = stack[1]; /* r1 (argv) */ \
71 regs->ARM_r0 = stack[0]; /* r0 (argc) */ \
79 * NOTE! The task struct and the stack go together
/asus-wl-520gu-7.0.1.45/src/linux/linux/include/asm-arm/proc-armv/
H A Dprocessor.h50 unsigned long *stack = (unsigned long *)sp; \
59 regs->ARM_r2 = stack[2]; /* r2 (envp) */ \
60 regs->ARM_r1 = stack[1]; /* r1 (argv) */ \
61 regs->ARM_r0 = stack[0]; /* r0 (argc) */ \
69 * NOTE! The task struct and the stack go together
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/arch/mips/common/include/
H A Dexchandler.h65 queue_t stack; member in struct:jmpbuf_s
/asus-wl-520gu-7.0.1.45/src/linux/linux/fs/jfs/
H A Djfs_btree.h109 * btree traversal stack
115 struct btframe { /* stack frame */
125 struct btframe stack[MAXTREEHEIGHT]; member in struct:btstack
129 (btstack)->top = (btstack)->stack
136 assert((BTSTACK)->top != &((BTSTACK)->stack[MAXTREEHEIGHT]));\
140 ( (btstack)->top == (btstack)->stack ? NULL : --(btstack)->top )
143 ( (btstack)->top == (btstack)->stack ? NULL : (btstack)->top )
/asus-wl-520gu-7.0.1.45/src/router/busybox/
H A Ddc.c12 static double stack[100]; variable
17 if (pointer >= (sizeof(stack) / sizeof(*stack)))
18 error_msg_and_die("stack overflow");
19 stack[pointer++] = a;
25 error_msg_and_die("stack underflow");
26 return stack[--pointer];
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/x86_64/kernel/
H A Dtraps.c146 static inline unsigned long *in_exception_stack(int cpu, unsigned long stack) argument
152 if (stack >= init_tss[cpu].ist[k] && stack <= end)
158 void show_trace(unsigned long *stack) argument
168 estack_end = in_exception_stack(cpu, (unsigned long)stack);
170 while (stack < estack_end) {
171 addr = *stack++;
183 stack = (unsigned long *) estack_end[-2];
190 if (stack >= irqstack && stack < irqstack_en
243 unsigned long *stack; local
[all...]
H A Dptrace.c39 * eflags and offset of eflags on child stack..
45 * this routine will get a word off of the processes privileged stack.
52 unsigned char *stack; local
54 stack = (unsigned char *)task->thread.rsp0;
55 stack += offset;
56 return (*((unsigned long *)stack));
60 * this routine will put a word on the processes privileged stack.
68 unsigned char * stack; local
70 stack = (unsigned char *) task->thread.rsp0;
71 stack
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/s390/kernel/
H A Dentry.S24 * Stack layout for the system_call stack entry.
64 * R15 - kernel stack pointer
77 bz BASED(1f) # skip stack setup save
79 bnz BASED(0f) # from user -> load kernel stack
80 l %r14,__LC_ASYNC_STACK # are we already on the async stack ?
84 l %r15,__LC_ASYNC_STACK # load async. stack
91 n %r15,BASED(.Lc0xfffffff8) # align stack pointer to 8
92 stm %r0,%r12,SP_R0(%r15) # store gprs 0-12 to kernel stack
94 mvc SP_R13(12,%r15),__LC_SAVE_AREA # move R13-R15 to stack
97 mvc SP_PSW(8,%r15),\psworg # move user PSW to stack
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/s390x/kernel/
H A Dentry.S24 * Stack layout for the system_call stack entry.
56 * R15 - kernel stack pointer
64 jz 1f # skip stack setup save
66 jnz 0f # from user -> load kernel stack
67 lg %r14,__LC_ASYNC_STACK # are we already on the async. stack ?
71 lg %r15,__LC_ASYNC_STACK # load async. stack
78 nill %r15,0xfff8 # align stack pointer to 8
79 stmg %r0,%r14,SP_R0(%r15) # store gprs 0-14 to kernel stack
81 mvc SP_R14(16,%r15),__LC_SAVE_AREA # move R15 to stack
84 mvc SP_PSW(16,%r15),\psworg # move user PSW to stack
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/ia64/kernel/
H A Dsys_ia64.c60 long arg7, long stack)
62 struct pt_regs *regs = (struct pt_regs *) &stack;
82 long arg7, long stack)
85 struct pt_regs *regs = (struct pt_regs *) &stack;
99 long arg4, long arg5, long arg6, long arg7, long stack)
102 struct pt_regs *regs = (struct pt_regs *) &stack;
162 long arg4, long arg5, long arg6, long arg7, long stack)
164 struct pt_regs *regs = (struct pt_regs *) &stack;
230 long arg6, long arg7, long stack)
232 struct pt_regs *regs = (struct pt_regs *) &stack;
59 ia64_getpriority(int which, int who, long arg2, long arg3, long arg4, long arg5, long arg6, long arg7, long stack) argument
81 ia64_shmat(int shmid, void *shmaddr, int shmflg, long arg3, long arg4, long arg5, long arg6, long arg7, long stack) argument
98 ia64_brk(unsigned long brk, long arg1, long arg2, long arg3, long arg4, long arg5, long arg6, long arg7, long stack) argument
161 sys_pipe(long arg0, long arg1, long arg2, long arg3, long arg4, long arg5, long arg6, long arg7, long stack) argument
229 sys_mmap2(unsigned long addr, unsigned long len, int prot, int flags, int fd, long pgoff, long arg6, long arg7, long stack) argument
241 sys_mmap(unsigned long addr, unsigned long len, int prot, int flags, int fd, long off, long arg6, long arg7, long stack) argument
263 ia64_create_module(const char *name_user, size_t size, long arg2, long arg3, long arg4, long arg5, long arg6, long arg7, long stack) argument
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/arm/lib/
H A Dbacktrace.S15 @ fp is 0 or stack frame
106 #define stack r6 define
108 .Ldumpstm: stmfd sp!, {instr, reg, stack, r7, lr}
109 mov stack, r0
121 ldr r2, [stack], #-4
130 mov r0, stack
131 LOADREGS(fd, sp!, {instr, reg, stack, r7, pc})
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/sh/kernel/
H A Dhead.S47 mov r0, r15 ! Set initial r15 (stack pointer)
78 2: .long SYMBOL_NAME(stack)
H A Dptrace.c36 * This routine will get a word off of the process kernel stack.
40 unsigned char *stack; local
42 stack = (unsigned char *)task + THREAD_SIZE - sizeof(struct pt_regs);
43 stack += offset;
44 return (*((int *)stack));
48 * This routine will put a word on the process kernel stack.
53 unsigned char *stack; local
55 stack = (unsigned char *)task + THREAD_SIZE - sizeof(struct pt_regs);
56 stack += offset;
57 *(unsigned long *) stack
[all...]
/asus-wl-520gu-7.0.1.45/src/router/shared.asus/openssl/
H A Dtxt_db.h65 #include <openssl/stack.h>
/asus-wl-520gu-7.0.1.45/src/router/libbcmcrypto/openssl/
H A Dtxt_db.h66 #include <openssl/stack.h>
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/sh/
H A Dvmlinux.lds.S53 /* stack */
54 .stack : { stack = .; _stack = .; }
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/i386/kernel/
H A Dptrace.c37 * Offset of eflags on child stack..
42 * this routine will get a word off of the processes privileged stack.
49 unsigned char *stack; local
51 stack = (unsigned char *)task->thread.esp0;
52 stack += offset;
53 return (*((int *)stack));
57 * this routine will put a word on the processes privileged stack.
65 unsigned char * stack; local
67 stack = (unsigned char *) task->thread.esp0;
68 stack
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/m68k/ifpsp060/
H A Dfskeleton.S72 | for enabled overflow conditions. The exception stack frame is an overflow
73 | stack frame. The FP state frame holds the EXCEPTIONAL OPERAND.
91 | for enabled underflow conditions. The exception stack frame is an underflow
92 | stack frame. The FP state frame holds the EXCEPTIONAL OPERAND.
109 | for enabled operand error exceptions. The exception stack frame is an operand error
110 | stack frame. The FP state frame holds the source operand of the faulting
128 | for enabled signalling NaN exceptions. The exception stack frame is a signalling NaN
129 | stack frame. The FP state frame holds the source operand of the faulting
147 | for enabled divide-by-zero exceptions. The exception stack frame is a divide-by-zero
148 | stack fram
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/arch/x86_64/ia32/
H A Dptrace32.c29 case offsetof(struct user32, regs.l): stack[offsetof(struct pt_regs, q)/8] = val; break
34 __u64 *stack = (__u64 *)(child->thread.rsp0 - sizeof(struct pt_regs)); local
54 stack[offsetof(struct pt_regs, ss)/8] = val & 0xffff;
58 stack[offsetof(struct pt_regs, cs)/8] = val & 0xffff;
73 stack[offsetof(struct pt_regs, eflags)/8] = val & 0x44dd5;
102 case offsetof(struct user32, regs.l): *val = stack[offsetof(struct pt_regs, q)/8]; break
106 __u64 *stack = (__u64 *)(child->thread.rsp0 - sizeof(struct pt_regs)); local
/asus-wl-520gu-7.0.1.45/src/linux/linux/net/ipv4/
H A Dinetpeer.c159 stackptr = stack; \
191 static void peer_avl_rebalance(struct inet_peer **stack[], argument
197 while (stackend > stack) {
273 peer_avl_rebalance(stack, stackptr); \
290 struct inet_peer **stack[PEER_MAXDEPTH]; local
316 peer_avl_rebalance(stack, stackptr);
374 struct inet_peer **stack[PEER_MAXDEPTH], ***stackptr; local

Completed in 139 milliseconds

12345678