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

12345

/haiku/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/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/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/headers/private/kernel/arch/arm64/
H A Darch_thread.h17 void arm64_push_iframe(struct iframe_stack *stack, struct iframe *frame);
18 void arm64_pop_iframe(struct iframe_stack *stack);
/haiku/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/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/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/src/apps/haikudepot/edits_generic/
H A DEditManager.h10 #include <stack>
55 std::stack<UndoableEditRef>
57 std::stack<UndoableEditRef>
/haiku/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/src/apps/icon-o-matic/generic/command/
H A DCommandStack.h12 #include <stack>
42 typedef std::stack<Command*> command_stack;
/haiku/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/src/system/boot/platform/riscv/
H A Dcrt0.S7 .section .bss.stack
/haiku/src/add-ons/kernel/network/datalink_protocols/loopback_frame/
H A Dloopback_frame.cpp54 net_stack_module_info* stack; local
55 status_t status = get_module(NET_STACK_MODULE_NAME, (module_info**)&stack);
58 status = stack->register_device_deframer(interface->device,
67 status = stack->register_domain_device_handler(
85 stack->unregister_device_deframer(interface->device);
95 net_stack_module_info* stack; local
96 if (get_module(NET_STACK_MODULE_NAME, (module_info**)&stack) == B_OK) {
97 stack->unregister_device_deframer(protocol->interface->device);
98 stack->unregister_device_handler(protocol->interface->device, 0);
/haiku/src/add-ons/kernel/bus_managers/usb/
H A DObject.cpp12 Object::Object(Stack *stack, BusManager *bus) argument
15 fStack(stack),
/haiku/src/tests/servers/app/stacktile/
H A Dmain.cpp44 BApplication("application/x.vnd-Haiku.stack-tile"),
61 BWindowStack* stack = NULL; local
68 if (!stack) stack = new BWindowStack(window);
69 else stack->AddWindow(window);
/haiku/src/system/boot/platform/openfirmware/arch/ppc/
H A Dcpu.cpp108 addr_t stack = (addr_t)arch_mmu_allocate((void*)0x80000000, local
111 if (!stack) {
112 printf("boot_arch_cpu_init(): Failed to allocate kernel stack(s)!\n");
117 gKernelArgs.cpu_kstack[i].start = stack;
120 stack += KERNEL_STACK_SIZE + KERNEL_STACK_GUARD_PAGES * B_PAGE_SIZE;
/haiku/src/system/boot/platform/openfirmware/arch/sparc/
H A Dcpu.cpp92 addr_t stack = (addr_t)arch_mmu_allocate(NULL, local
95 if (!stack) {
96 printf("boot_arch_cpu_init(): Failed to allocate kernel stack(s)!\n");
101 gKernelArgs.cpu_kstack[i].start = stack;
104 stack += KERNEL_STACK_SIZE + KERNEL_STACK_GUARD_PAGES * B_PAGE_SIZE;
/haiku/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/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/src/system/kernel/arch/arm64/
H A Darch_thread.cpp31 arm64_push_iframe(struct iframe_stack *stack, struct iframe *frame) argument
33 ASSERT(stack->index < IFRAME_TRACE_DEPTH);
34 stack->frames[stack->index++] = frame;
39 arm64_pop_iframe(struct iframe_stack *stack) argument
41 ASSERT(stack->index > 0);
42 stack->index--;
/haiku/src/bin/
H A Dleak_analyser.sh11 A file containing the allocations with stack traces from
19 The number after the "s" is the stack trace depth. Note that
30 Do not exclude allocations with no stack trace. By default
31 allocations without a stack trace are excluded. This should
32 only happen for very early allocations where the stack trace
41 stack trace lines. Note that the whole block is on a single
/haiku/src/apps/icon-o-matic/gui/
H A DIconObjectListView.h39 void SetCommandStack(CommandStack* stack);

Completed in 212 milliseconds

12345