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

1234567

/haiku-fatelf/headers/cpp/
H A Dstl_stack.h41 class stack { class
42 friend bool operator== __STL_NULL_TMPL_ARGS (const stack&, const stack&);
43 friend bool operator< __STL_NULL_TMPL_ARGS (const stack&, const stack&);
54 stack() : _M_c() {} function in class:stack
55 explicit stack(const _Sequence& __s) : _M_c(__s) {} function in class:stack
66 bool operator==(const stack<_Tp,_Seq>& __x, const stack<_Tp,_Seq>& __y) argument
72 bool operator<(const stack<_T argument
80 operator !=(const stack<_Tp,_Seq>& __x, const stack<_Tp,_Seq>& __y) argument
86 operator >(const stack<_Tp,_Seq>& __x, const stack<_Tp,_Seq>& __y) argument
92 operator <=(const stack<_Tp,_Seq>& __x, const stack<_Tp,_Seq>& __y) argument
98 operator >=(const stack<_Tp,_Seq>& __x, const stack<_Tp,_Seq>& __y) argument
[all...]
H A Dstl.h13 #include <stack>
H A Dstack.h37 using __STD::stack;
/haiku-fatelf/headers/private/kernel/arch/arm/
H A Darch_thread.h19 void arm_push_iframe(struct iframe_stack *stack, struct iframe *frame);
20 void arm_pop_iframe(struct iframe_stack *stack);
/haiku-fatelf/headers/private/kernel/arch/ppc/
H A Darch_thread.h18 void ppc_push_iframe(struct iframe_stack *stack, struct iframe *frame);
19 void ppc_pop_iframe(struct iframe_stack *stack);
/haiku-fatelf/headers/private/kernel/arch/mipsel/
H A Darch_thread.h20 void mipsel_push_iframe(struct iframe_stack* stack, struct iframe* frame);
21 void mipsel_pop_iframe(struct iframe_stack* stack);
/haiku-fatelf/headers/private/kernel/util/
H A DStack.h84 inline void operator()(Stack<T>* stack) argument
86 if (stack == NULL)
90 while (stack->Pop(&item)) {
94 delete stack;
105 StackDeleter(Stack<T>* stack) argument
106 : BPrivate::AutoDeleter<Stack<T>, StackDelete<T> >(stack)
/haiku-fatelf/src/apps/bootmanager/
H A DWizardController.cpp19 StateStack* stack = this; local
22 next = stack->Next();
23 delete stack;
24 stack = next;
77 StateStack* stack = fStack; local
79 delete stack;
/haiku-fatelf/headers/private/kernel/arch/m68k/
H A Darch_thread.h19 void m68k_push_iframe(struct iframe_stack *stack, struct iframe *frame);
20 void m68k_pop_iframe(struct iframe_stack *stack);
/haiku-fatelf/src/add-ons/kernel/bus_managers/usb/
H A DObject.cpp12 Object::Object(Stack *stack, BusManager *bus) argument
15 fStack(stack),
/haiku-fatelf/src/apps/icon-o-matic/generic/command/
H A DCommandStack.h12 #include <stack>
42 typedef std::stack<Command*> command_stack;
/haiku-fatelf/src/apps/mediaplayer/support/
H A DCommandStack.h11 #include <stack>
41 typedef std::stack<Command*> command_stack;
H A DStackBlurFilter.cpp185 agg::pod_vector<color_type> stack; local
193 stack.allocate(div);
211 stack_pix_ptr = &stack[i];
228 stack_pix_ptr = &stack[i + rx];
263 stack_pix_ptr = &stack[stack_start];
292 stack_pix_ptr = &stack[stack_ptr];
312 stack.allocate(div);
331 stack_pix_ptr = &stack[i];
348 stack_pix_ptr = &stack[i + ry];
385 stack_pix_ptr = &stack[stack_star
454 agg::pod_vector<uint8> stack; local
[all...]
/haiku-fatelf/src/add-ons/translators/hpgs/lib/
H A Dhpgsmkrop.c61 static void mk_operand (char *operand, size_t operand_sz, const char *stack, int i) argument
63 switch (stack[i])
70 operand[0] = stack[i];
78 static void mk_xoperand (char *operand, size_t operand_sz, const char *stack, int i) argument
80 switch (stack[i])
87 operand[0] = stack[i];
116 char stack[32]; local
162 if (stacksz >= sizeof(stack)-1)
168 stack[stacksz] = *c;
190 mk_operand(operand,sizeof(operand),stack,stacks
[all...]
/haiku-fatelf/src/add-ons/kernel/network/datalink_protocols/loopback_frame/
H A Dloopback_frame.cpp55 net_stack_module_info* stack; local
56 status_t status = get_module(NET_STACK_MODULE_NAME, (module_info**)&stack);
60 status = stack->register_device_deframer(interface->device,
80 stack->unregister_device_deframer(interface->device);
90 net_stack_module_info* stack; local
91 if (get_module(NET_STACK_MODULE_NAME, (module_info**)&stack) == B_OK) {
92 stack->unregister_device_deframer(protocol->interface->device);
93 stack->unregister_device_handler(protocol->interface->device, 0);
/haiku-fatelf/src/system/boot/platform/openfirmware/arch/ppc/
H A Dcpu.cpp97 addr_t stack = (addr_t)arch_mmu_allocate((void*)0x80000000, local
100 if (!stack) {
101 printf("boot_arch_cpu_init(): Failed to allocate kernel stack(s)!\n");
106 gKernelArgs.cpu_kstack[i].start = stack;
109 stack += KERNEL_STACK_SIZE + KERNEL_STACK_GUARD_PAGES * B_PAGE_SIZE;
/haiku-fatelf/src/system/kernel/arch/m68k/
H A Darch_thread.cpp46 m68k_push_iframe(struct iframe_stack *stack, struct iframe *frame) argument
48 ASSERT(stack->index < IFRAME_TRACE_DEPTH);
49 stack->frames[stack->index++] = frame;
54 m68k_pop_iframe(struct iframe_stack *stack) argument
56 ASSERT(stack->index > 0);
57 stack->index--;
138 // set up an initial state (stack & fpu)
153 // clear the kernel stack
165 // space for frame pointer and return address, and stack frame
[all...]
/haiku-fatelf/src/system/kernel/arch/ppc/
H A Darch_thread.cpp34 ppc_push_iframe(struct iframe_stack *stack, struct iframe *frame) argument
36 ASSERT(stack->index < IFRAME_TRACE_DEPTH);
37 stack->frames[stack->index++] = frame;
42 ppc_pop_iframe(struct iframe_stack *stack) argument
44 ASSERT(stack->index > 0);
45 stack->index--;
110 // set up an initial state (stack & fpu)
125 // clear the kernel stack
137 // space for frame pointer and return address, and stack frame
[all...]
/haiku-fatelf/src/apps/icon-o-matic/gui/
H A DIconObjectListView.h39 void SetCommandStack(CommandStack* stack);
/haiku-fatelf/src/bin/gdb/gdb/osf-share/
H A Dcma_stack_int.h17 * Header file for stack management (internal to cma_stack.c, but
47 #define cma___c_bigstack 1 /* Looks like a cluster, but it's a stack */
72 cma__t_int_tcb *tcb; /* TCB associated with stack chunk */ member in struct:CMA___T_MAP_ENTRY::__anon3778
73 struct CMA__T_INT_STACK *stack; /* Stack desc. ass. with stack chunk */
84 * stack manager that relies on being able to treat both as equivalent!
95 * stack manager that relies on being able to treat both as equivalent!
99 cma__t_int_tcb *tcb; /* TCB associated with stack */ member in struct:CMA___T_BIGSTACK
100 struct CMA__T_INT_STACK *stack; /* Stack desc. ass. with stack */
[all...]
/haiku-fatelf/src/system/boot/platform/bios_ia32/
H A Dsmp_trampoline.S5 // expects a stack page like this:
6 // (stack has to be at (0x9e000)
44 movl $0x9eff8,%esp # set up the stack pointer
49 popl %eax # get the final stack location
51 // Clear the final stack location to notify the startup code that
70 // target function at the top of the passed stack
/haiku-fatelf/src/system/boot/platform/pxe_ia32/
H A Dsmp_trampoline.S5 // expects a stack page like this:
6 // (stack has to be at (0x8c000)
44 movl $0x8cff8,%esp # set up the stack pointer
49 popl %eax # get the final stack location
51 // Clear the final stack location to notify the startup code that
70 // target function at the top of the passed stack
/haiku-fatelf/src/bin/network/tcpdump/libpcap/msdos/
H A Dndis_0.asm76 call _NdisAllocStack ;; Get and install a stack.
78 mov bx,ss ;; Save off the old stack in other regs
82 push bx ;; Save the old one on to the new stack
84 sub sp,&argsSize ;; Allocate space for arguments on the stack
93 mov cx,&argsSize ;; Move the arguments to the stack.
102 pop di ;; Pop off the old stack
104 mov bx,ss ;; Save off the current allocated stack.
106 mov ss,si ;; Restore the old stack
109 push bx ;; Free the stack. Push the pointer to it
114 add di,32 ;; Get a pointer to ax on the stack
[all...]
/haiku-fatelf/src/bin/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...]
/haiku-fatelf/headers/private/app/
H A DTokenSpace.h14 #include <stack>

Completed in 147 milliseconds

1234567