Searched refs:start (Results 226 - 250 of 624) sorted by relevance

1234567891011>>

/haiku/headers/libs/agg/
H A Dagg_rasterizer_cells_aa.h57 unsigned start; member in struct:agg::rasterizer_cells_aa::sorted_y
91 return m_sorted_cells.data() + m_sorted_y[y - m_min_y].start;
359 //Vertical line - we have to calculate start and end cells,
513 void qsort_cells(Cell** start, unsigned num) argument
520 limit = start + num;
521 base = start;
666 m_sorted_y[cell_ptr->y - m_min_y].start++;
675 m_sorted_y[cell_ptr->y - m_min_y].start++;
680 unsigned start = 0; local
683 unsigned v = m_sorted_y[i].start;
[all...]
/haiku/headers/private/kernel/util/
H A DVector.h71 int32 IndexOf(const Value &value, int32 start = 0) const;
73 Iterator Find(const Value &value, const Iterator &start);
75 ConstIterator Find(const Value &value, const ConstIterator &start) const;
595 \param start The index at which to be started to search for the element.
601 _VECTOR_CLASS_NAME::IndexOf(const Value &value, int32 start) const
603 if (start >= 0) {
604 for (int32 i = start; i < fItemCount; i++) {
631 \param start And iterator specifying where to start searching for the
634 further with the given value could be found or \a start wa
639 Find(const Value &value, const Iterator &start) argument
[all...]
/haiku/headers/private/userlandfs/shared/
H A DVector.h67 int32 IndexOf(const Value &value, int32 start = 0) const;
69 Iterator Find(const Value &value, const Iterator &start);
71 ConstIterator Find(const Value &value, const ConstIterator &start) const;
591 \param start The index at which to be started to search for the element.
597 _VECTOR_CLASS_NAME::IndexOf(const Value &value, int32 start) const
599 if (start >= 0) {
600 for (int32 i = start; i < fItemCount; i++) {
627 \param start And iterator specifying where to start searching for the
630 further with the given value could be found or \a start wa
635 Find(const Value &value, const Iterator &start) argument
[all...]
/haiku/src/system/boot/platform/openfirmware/arch/sparc/
H A Dmmu.cpp54 insert_virtual_range_to_keep(void *start, uint32 size) argument
58 MAX_VIRTUAL_RANGES_TO_KEEP, (addr_t)start, size);
63 remove_virtual_range_to_keep(void *start, uint32 size) argument
67 MAX_VIRTUAL_RANGES_TO_KEEP, (addr_t)start, size);
293 return (void *)(addr_t)gKernelArgs.physical_memory_range[i].start;
313 = (void *)(addr_t)(gKernelArgs.physical_allocated_range[i].start
321 // Check if there is enough space at the start of one of the physical ranges
324 // allocation at the start)
326 void *address = (void *)gKernelArgs.physical_memory_range[i].start;
348 = (void *)(addr_t)(gKernelArgs.virtual_allocated_range[i].start
[all...]
/haiku/src/add-ons/translators/sgi/
H A DSGIImage.cpp904 uint8* start; // start of sequence local
909 start = row;
921 count = row - start;
931 if (_WriteChar(*start) == EOF)
933 start ++;
942 start = row;
953 count = row - start;
990 uint16* start; // start o local
[all...]
/haiku/src/system/boot/platform/bios_ia32/
H A Dmmu.cpp583 gKernelArgs.virtual_allocated_range[0].start = KERNEL_LOAD_BASE;
603 gKernelArgs.physical_memory_range[i].start,
610 gKernelArgs.physical_allocated_range[i].start,
617 gKernelArgs.virtual_allocated_range[i].start,
632 gKernelArgs.physical_allocated_range[0].start = sNextPhysicalAddress;
635 // remember the start of the allocated physical pages
651 gKernelArgs.cpu_kstack[0].start = (addr_t)mmu_allocate(NULL,
657 gKernelArgs.cpu_kstack[0].start, gKernelArgs.cpu_kstack[0].start
744 uint64 start local
[all...]
/haiku/src/apps/terminal/
H A DTermView.cpp976 TermView::_InvalidateTextRange(TermPos start, TermPos end) argument
978 if (end < start)
979 std::swap(start, end);
981 if (start.y == end.y) {
982 _InvalidateTextRect(start.x, start.y, end.x, end.y);
984 _InvalidateTextRect(start.x, start.y, fColumns, start.y);
986 if (end.y - start
2634 _Select(TermPos start, TermPos end, bool inclusive, bool setInitialSelection) argument
2748 TermPos start, end; local
2771 TermPos start = TermPos(0, _ConvertToTerminal(where).y); local
2898 TermPos start; local
2961 BPoint start = _ConvertFromTerminal(fSelection.Start()); local
2990 _ScrollToRange(TermPos start, TermPos end) argument
[all...]
/haiku/src/apps/debuganalyzer/gui/thread_window/
H A DActivityPage.cpp66 virtual void GetSamples(double start, double end, double* samples, argument
71 double sampleLength = (end - start) / (double)sampleCount;
73 int32 startIndex = fModel->FindSchedulingEvent((nanotime_t)start);
96 double previousEventTime = start;
147 double nextSampleTime = start;
312 nextSampleTime = start
313 + (end - start)
/haiku/src/apps/haikudepot/textview/
H A DTextDocumentLayout.cpp121 TextDocumentLayout::InvalidateParagraphs(int32 start, int32 count) argument
123 if (start < 0 || count == 0 || !fDocument.IsSet())
130 if (start >= paragraphCount)
132 const Paragraph& paragraph = fDocument->ParagraphAtIndex(start);
133 if (start >= static_cast<int32>(fParagraphLayouts.size())) {
149 const ParagraphLayoutInfo& info = fParagraphLayouts[start];
153 start++;
H A DTextDocumentView.cpp409 TextDocumentView::GetSelection(int32& start, int32& end) const argument
412 start = fTextEditor->SelectionStart();
433 int32 start; local
435 GetSelection(start, end);
437 BString text = fTextDocument->Text(start, end - start);
561 int32 start; local
563 GetSelection(start, end);
566 _GetSelectionShape(shape, start, end);
584 TextDocumentView::_GetSelectionShape(BShape& shape, int32 start, int3 argument
[all...]
/haiku/src/system/kernel/arch/riscv64/
H A Darch_vm.cpp283 void* address = (void*)args->arch_args.physMap.start;
313 TRACE((" start: %p, size: %#" B_PRIxSIZE "\n", (void*)range.start, range.size));
317 if (!IS_KERNEL_ADDRESS(range.start)) {
323 void *address = (void*)range.start;
324 if (vm_get_page_mapping(VMAddressSpace::KernelID(), range.start,
334 "reserved area: %p - %p\n", (void*)range.start,
335 (void*)(range.start + range.size));
/haiku/src/apps/stylededit/
H A DStyledEditWindow.cpp674 int32 start, length; local
675 if (message->FindInt32("be:selection_offset", &start) == B_OK) {
679 fTextView->Select(start, start + length);
680 fTextView->ScrollToOffset(start);
1495 int32 start, end; local
1496 fTextView->GetSelection(&start, &end);
1498 B_INT32_TYPE, 0, &start, sizeof(start));
1729 int32 start; local
1799 int32 start; local
1833 int32 start; local
[all...]
/haiku/src/apps/mail/
H A DSignature.cpp137 int32 start = 0; local
139 textView->GetSelection(&start, &finish);
141 fSigView->fTextView->GetSelection(&start, &finish);
143 fCut->SetEnabled(start != finish);
144 fCopy->SetEnabled(start != finish);
551 int32 start; local
571 GetSelection(&start, &end);
573 Select(start, start + size);
/haiku/src/bin/keymap/
H A DKeymap.cpp365 sscanf(buffer + regs.start[1], "%" B_SCNu32, &fKeys.version);
368 sscanf(buffer + regs.start[1], "0x%" B_SCNx32, &fKeys.caps_key);
371 sscanf(buffer + regs.start[1], "0x%" B_SCNx32, &fKeys.scroll_key);
374 sscanf(buffer + regs.start[1], "0x%" B_SCNx32, &fKeys.num_key);
377 sscanf(buffer + regs.start[1], "0x%" B_SCNx32,
381 sscanf(buffer + regs.start[1], "0x%" B_SCNx32,
385 sscanf(buffer + regs.start[1], "0x%" B_SCNx32,
389 sscanf(buffer + regs.start[1], "0x%" B_SCNx32,
393 sscanf(buffer + regs.start[1], "0x%" B_SCNx32,
397 sscanf(buffer + regs.start[
414 const char* start = buffer + regs.start[i]; local
1085 const char* start = buffer + regs.start[i]; local
[all...]
/haiku/headers/cpp/
H A Deditbuf.h41 // Logical pos from start of buffer (does not count gap).
44 // Pos from start of buffer, possibly including gap_size.
59 // A edit_string is defined as the region between the 'start' and 'end' marks.
60 // Normally (always?) 'start->insert_before()' should be false,
64 struct edit_buffer *buffer; // buffer that 'start' and 'end' belong to
65 struct edit_mark *start, *end; member in struct:edit_string
69 { buffer = b; start = ms; end = me; }
130 // The gap start is defined by de-referencing a (buf_char**).
168 void delete_range(struct edit_mark *start, struct edit_mark *end);
/haiku/headers/private/kernel/disk_device_manager/
H A Dddm_modules.h46 bool (*validate_move)(partition_data* partition, off_t* start);
48 partition_data* child, off_t* start);
59 bool (*validate_create_child)(partition_data* partition, off_t* start,
/haiku/src/add-ons/kernel/generic/scsi_periph/
H A Dremovable.cpp197 start - true for start, false for stop
198 withLoadEject - if true, then lock drive on start and eject on stop
202 bool start, bool withLoadEject)
221 cmd->start = start;
201 periph_send_start_stop(scsi_periph_device_info *device, scsi_ccb *request, bool start, bool withLoadEject) argument
/haiku/src/libs/stdc++/legacy/
H A Deditbuf.cc47 // replacing) // must have its pptr() pointing to the start of the gap.
50 // That edit_streambuf "owns" the gap, and the actual start of the
323 __off == index at start of buffer (need only be valid after seek ? )
414 // Current pos is at start of gap; move to end of gap.
446 buf_index start_pos = buffer->tell(str->start);
478 buf_char *str_start = cookie->str->start->ptr(buffer);
541 void edit_buffer::delete_range(struct edit_mark *start, struct edit_mark *end) argument
543 delete_range(tell(start), tell(end));
558 char* buf_ptr = bstr->start->ptr(buffer);
634 if (_pos < str->start
[all...]
/haiku/src/system/boot/platform/amiga_m68k/
H A Dvideo.cpp72 gKernelArgs.frame_buffer.physical_buffer.start
225 addr_t lastBase = gKernelArgs.frame_buffer.physical_buffer.start;
235 sFrameBuffer = gKernelArgs.frame_buffer.physical_buffer.start;
/haiku/src/apps/deskbar/
H A DResourceSet.cpp545 const char* start = in; local
549 if (start < in)
550 out->Append(start, (int32)(in - start));
569 start = in;
583 if (start < in)
584 out->Append(start, (int32)(in - start));
586 start = in;
592 if (start < i
[all...]
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DExtentAllocator.h145 uint64 start = (uint64)-1,
148 uint64 start = (uint64)-1,
154 status_t _Allocate(uint64& found, uint64 start,
/haiku/src/add-ons/kernel/partitioning_systems/sun/
H A Dsun.cpp156 off_t start = B_BENDIAN_TO_HOST_INT32( local
160 TRACE(("Part %d type %d start %" B_PRIdOFF " size %" B_PRIdOFF "\n", i,
161 type, start, size));
163 start, size, -1);
/haiku/headers/private/kernel/vm/
H A DVMTranslationMap.h33 virtual size_t MaxPagesNeededToMap(addr_t start,
40 virtual status_t Unmap(addr_t start, addr_t end) = 0;
42 virtual status_t DebugMarkRangePresent(addr_t start, addr_t end,
/haiku/src/add-ons/translators/rtf/
H A DRTF.h147 Iterator(Element &start, group_destination destination = ALL_DESTINATIONS);
149 void SetTo(Element &start, group_destination destination = ALL_DESTINATIONS);
163 Worker(RTF::Header &start);
/haiku/src/system/kernel/arch/arm64/
H A DVMSAv8TranslationMap.cpp100 VMSAv8TranslationMap::MaxPagesNeededToMap(addr_t start, addr_t end) const argument
103 size_t size = end - start + 1;
397 VMSAv8TranslationMap::Unmap(addr_t start, addr_t end)
401 size_t size = end - start + 1;
406 ASSERT((start & pageMask) == 0);
408 ASSERT(ValidateVa(start));
410 MapRange(fPageTable, fInitialLevel, start & vaMask, 0, size, VMAction::UNMAP, 0, NULL);
544 VMSAv8TranslationMap::Protect(addr_t start, addr_t end, uint32 attributes, uint32 memoryType)
548 size_t size = end - start + 1;
553 ASSERT((start
[all...]

Completed in 155 milliseconds

1234567891011>>