Searched refs:stack (Results 76 - 100 of 113) sorted by relevance

12345

/haiku/src/tests/servers/app/newerClipping/drawing/
H A DDrawingEngine.cpp3 #include <stack.h>
219 // (by using different stack impl inside node)
268 // put all nodes onto a stack that have an "indegree" count of zero
269 stack<node*> inDegreeZeroNodes;
275 // pop the rects from the stack, do the actual copy operation
277 // currently on the stack and to which the current rect pointed
279 // stack as well.
/haiku/src/apps/terminal/
H A DBasicTerminalBuffer.h14 #include <stack>
242 std::stack<TermPos> fSavedCursors;
/haiku/src/apps/icon-o-matic/gui/
H A DStyleView.cpp283 StyleView::SetCommandStack(CommandStack* stack) argument
285 fCommandStack = stack;
H A DTransformerListView.cpp499 TransformerListView::SetCommandStack(CommandStack* stack) argument
501 fCommandStack = stack;
H A DShapeListView.cpp728 ShapeListView::SetCommandStack(CommandStack* stack) argument
730 fCommandStack = stack;
H A DPathListView.cpp769 PathListView::SetCommandStack(CommandStack* stack) argument
771 fCommandStack = stack;
H A DStyleListView.cpp720 StyleListView::SetCommandStack(CommandStack* stack) argument
722 fCommandStack = stack;
/haiku/src/apps/icon-o-matic/generic/gui/stateview/
H A DStateView.cpp407 // (central place to prevent command stack mix up)
433 // (central place to prevent command stack mix up)
469 StateView::SetCommandStack(::CommandStack* stack) argument
471 fCommandStack = stack;
511 // if there is no command stack, then nobody
/haiku/src/add-ons/kernel/busses/usb/
H A Dxhci.h92 static status_t AddTo(Stack *stack);
94 XHCI(pci_info *info, pci_device_module_info* pci, pci_device* device, Stack *stack,
H A Duhci.cpp60 Stack *stack; local
61 if (gUSB->get_stack((void**)&stack) != B_OK)
64 UHCI *uhci = new(std::nothrow) UHCI(&bus->pciinfo, bus->pci, bus->device, stack, node);
296 Queue::Queue(Stack *stack) argument
298 fStack = stack;
503 UHCI::UHCI(pci_info *info, pci_device_module_info* pci, pci_device* device, Stack *stack, argument
505 : BusManager(stack, node),
509 fStack(stack),
H A Dehci.h55 pci_device* device, Stack *stack, device_node *node);
H A Dohci.h38 pci_device* device, Stack *stack, device_node* node);
/haiku/headers/private/file_systems/
H A DQueryParser.h1343 // create index on the stack and delete it afterwards
1402 // put the whole expression on the stack
1404 Stack<Term<QueryPolicy>*> stack;
1405 stack.Push(fExpression->Root());
1408 while (stack.Pop(&term)) {
1413 stack.Push(op->Left());
1414 stack.Push(op->Right());
1419 stack.Push(op->Right());
1421 stack.Push(op->Left());
1425 QUERY_FATAL("Unknown term on stack o
[all...]
/haiku/headers/libs/agg/
H A Dagg_rasterizer_cells_aa.h515 Cell** stack[80]; local
522 top = stack;
606 if(top > stack)
/haiku/src/system/libroot/posix/glibc/regex/
H A Dregexec.c1279 /* Otherwise, push the second epsilon-transition on the fail stack. */
1357 new_array = realloc (fs->stack, (sizeof (struct re_fail_stack_ent_t)
1362 fs->stack = new_array;
1364 fs->stack[num].idx = str_idx;
1365 fs->stack[num].node = dest_node;
1366 fs->stack[num].regs = re_malloc (regmatch_t, nregs);
1367 if (fs->stack[num].regs == NULL)
1369 memcpy (fs->stack[num].regs, regs, sizeof (regmatch_t) * nregs);
1370 err = re_node_set_init_copy (&fs->stack[num].eps_via_nodes, eps_via_nodes);
1381 *pidx = fs->stack[nu
[all...]
/haiku/src/system/kernel/fs/
H A Dvfs_boot.cpp325 stack. If the user selected a boot device, there is will only be one
326 entry in this stack; if not, the most likely is put up first.
380 BootPartitionVisitor(BootMethod* bootMethod, PartitionStack &stack) argument
381 : fPartitions(stack),
/haiku/src/servers/app/
H A DDesktop.cpp1265 WindowStack* stack = window->GetWindowStack(); local
1266 if (sendStack && stack != NULL)
1267 window = stack->TopLayerWindow();
1312 if (sendStack && stack != NULL) {
1313 for (int32 i = 0; i < stack->CountWindows(); i++) {
1314 Window* stackWindow = stack->LayerOrder().ItemAt(i);
1465 WindowStack* stack = window->GetWindowStack(); local
1466 if (stack != NULL) {
1467 for (int32 s = 0; s < stack->CountWindows(); s++) {
1468 Window* stackWindow = stack
1671 WindowStack* stack = window->GetWindowStack(); local
3731 WindowStack* stack = movedWindow->GetWindowStack(); local
[all...]
H A DServerPicture.cpp17 #include <stack>
47 using std::stack;
69 stack<uint32> fOpStack;
70 stack<BPoint> fPtStack;
/haiku/headers/private/kernel/
H A Dksignal.h210 void signal_get_user_stack(addr_t address, stack_t* stack);
/haiku/src/kits/app/
H A DLooper.cpp638 uint32 stack; local
639 return ((addr_t)&stack & ~(B_PAGE_SIZE - 1)) == fCachedStack
1428 uint32 stack; local
1429 if (((addr_t)&stack & ~(B_PAGE_SIZE - 1)) == fCachedStack
/haiku/src/system/boot/platform/efi/
H A Dstart.cpp54 extern "C" void efi_enter_kernel(uint64 pml4, uint64 entry_point, uint64 stack);
197 // map in a kernel stack
202 panic("Unabled to allocate a stack");
207 dprintf("Kernel stack at %#" B_PRIx64 "\n", gKernelArgs.cpu_kstack[0].start);
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DBPlusTree.cpp1104 /*! Prepares the stack to contain all nodes that were passed while
1109 BPlusTree::_SeekDown(Stack<node_and_key>& stack, const uint8* key, argument
1124 stack.Push(nodeAndKey);
1135 if ((uint32)stack.CountItems() > fHeader.MaxNumberOfLevels()) {
1140 // put the node offset & the correct keyIndex on the stack
1141 stack.Push(nodeAndKey);
1691 Stack<node_and_key> stack; local
1692 if (_SeekDown(stack, key, keyLength) != B_OK)
1702 while (stack.Pop(&nodeAndKey)
2107 Stack<node_and_key> stack; local
[all...]
/haiku/src/system/kernel/
H A Dsignal.cpp876 // prepare the data, we need to copy onto the user stack
1319 /*! Gets (guesses) the current thread's currently used stack from the given
1320 stack pointer.
1321 Fills in \a stack with either the signal stack or the thread's user stack.
1322 \param address A stack pointer address to be used to determine the used
1323 stack.
1324 \param stack Filled in by the function.
1327 signal_get_user_stack(addr_t address, stack_t* stack) argument
[all...]
/haiku/src/apps/mediaplayer/playlist/
H A DPlaylistListView.cpp227 Controller* controller, CommandStack* stack)
238 fCommandStack(stack),
226 PlaylistListView(BRect frame, Playlist* playlist, Controller* controller, CommandStack* stack) argument
/haiku/src/bin/bfs_tools/lib/
H A DBPlusTree.h154 status_t SeekDown(Stack<node_and_key> &stack, uint8 *key, uint16 keyLength);

Completed in 136 milliseconds

12345