Searched refs:start (Results 201 - 225 of 624) sorted by relevance

1234567891011>>

/haiku/headers/cpp/std/
H A Dgslice.h58 size_t start () const;
69 gslice::start () const function in class:gslice
/haiku/headers/os/drivers/pcmcia/
H A Dss.h109 u_short start, stop; member in struct:pccard_io_map
123 u_int start, stop; member in struct:cb_bridge_map
/haiku/headers/private/firewire/
H A Dfwdma.h93 int start, int end, bus_dmasync_op_t op)
97 seg = &am->seg[am->esize * start / am->ssize];
92 fwdma_sync_multiseg(struct fwdma_alloc_multi *am, int start, int end, bus_dmasync_op_t op) argument
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/headers/
H A DKPPPLCP.h62 KPPPOptionHandler *OptionHandlerFor(uint8 type, int32 *start = NULL) const;
70 KPPPLCPExtension *LCPExtensionFor(uint8 code, int32 *start = NULL) const;
/haiku/src/add-ons/kernel/partitioning_systems/atari/
H A Datari.h30 uint32 start; member in struct:atari_partition_entry
34 uint32 Start() const { return B_BENDIAN_TO_HOST_INT32(start); }
/haiku/src/add-ons/kernel/partitioning_systems/apple/
H A Dapple.h42 int32 start; // in blocks member in struct:apple_partition_map
58 int32 StartBlock() { return B_BENDIAN_TO_HOST_INT32(start); }
/haiku/src/add-ons/screen_savers/message/
H A DMessage.cpp244 int start = 0; local
248 start = rand() % (strLength - drawingLength);
250 strncpy(toDraw, message->String()+start, drawingLength);
281 BPoint start = box.LeftTop(); local
282 start.x += 10;
283 start.y += 10 + fontHeight.ascent + fontHeight.leading;
285 offscreen.DrawString(lines.StringAt(i).String(), start);
286 start.y += lineHeight;
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DBlockAllocator.h43 int32 group, uint16 start, uint16 numBlocks,
49 status_t CheckBlocks(off_t start, off_t length,
/haiku/headers/private/kernel/platform/sbi/
H A Dsbi_syscalls.h70 unsigned long start,
74 unsigned long start,
/haiku/src/system/boot/platform/openfirmware/
H A Dstart.cpp9 #include "start.h"
69 addr_t stackTop = gKernelArgs.cpu_kstack[0].start
101 start(void *openFirmwareEntry) function
/haiku/src/kits/storage/
H A DQuery.cpp526 const char* start = fPredicate; local
527 const char* pos = start;
542 parsedPredicate.Append(start, pos - start);
543 start = end + 1;
546 BString date(pos + 1, start - 1 - pos);
554 parsedPredicate.Append(start, pos - start);
/haiku/src/system/boot/platform/riscv/
H A Dvideo.cpp91 gKernelArgs.frame_buffer.physical_buffer.start = (addr_t)gFramebuf.colors;
100 video_display_splash(gKernelArgs.frame_buffer.physical_buffer.start);
H A Dfdt.cpp70 case 1: range.start = fdt32_to_cpu(*(uint32*)prop); prop += 4; break;
71 case 2: range.start = fdt64_to_cpu(*(uint64*)prop); prop += 8; break;
124 sClint.start = fdt64_to_cpu(*(reg + 0));
126 gClintRegs = (ClintRegs*)sClint.start;
163 sUart.regs.start = fdt64_to_cpu(*(reg + 0));
220 gKernelArgs.arch_args.htif.start = (addr_t)gHtifRegs;
/haiku/headers/private/kernel/boot/
H A Delf.h17 uint32 start; member in struct:elf32_region
24 uint64 start; member in struct:elf64_region
/haiku/src/system/boot/platform/efi/arch/arm64/
H A Darch_dtb.cpp91 interrupt_controller.regs1.start,
94 interrupt_controller.regs2.start,
/haiku/src/apps/haikudepot/process/
H A DThreadedProcessNode.cpp112 bigtime_t start = system_time(); local
116 (system_time() - start) / 1000000.0);
121 thread. It will start a process that is part of the bulk-load.
/haiku/src/apps/haikudepot/textview/
H A DTextDocumentView.h72 void GetSelection(int32& start, int32& end) const;
86 int32 start, int32 end);
/haiku/headers/libs/agg/
H A Dagg_span_gouraud_gray.h165 int start = pc1->m_x - (x << subpixel_shift); local
166 v -= start;
167 a -= start;
168 nlen += start;
176 // for overflow. It lasts until "start" is positive;
179 while(len && start > 0)
190 start -= subpixel_scale;
/haiku/src/system/kernel/scheduler/
H A Dscheduler_profiler.cpp58 nanotime_t start = system_time_nsecs(); local
72 stackEntry->fEntryTime = start;
76 stackEntry->fProfilerTime = stop - start;
83 nanotime_t start = system_time_nsecs();
90 nanotime_t timeSpent = start - stackEntry->fEntryTime;
104 stackEntry->fProfilerTime += stop - start;
/haiku/src/servers/app/
H A DSimpleTransform.h114 BPoint start = linear->Start(); local
116 Apply(&start);
118 linear->SetStart(start);
179 BGradient::ColorStop* start = gradient->ColorStopAtFast(0); local
181 if (start->offset != 0)
182 gradient->AddColor(start->color, 0);
/haiku/src/kits/tracker/
H A DTrackerString.cpp192 char start = ConditionalToLower(*(pattern - 1), local
197 if (IsGlyph(start) || IsGlyph(stop))
201 if ((islower(start) && islower(stop))
202 || (isupper(start) && isupper(stop))
203 || (isdigit(start) && isdigit(stop))) {
204 // Make sure 'start' and 'stop' are of the same type.
205 match = start <= testChar && testChar <= stop;
/haiku/src/apps/stylededit/
H A DStyledEditApp.cpp272 int32 start, length; local
274 || message->FindInt32("be:selection_offset", index, &start) != B_OK)
276 start = -1;
281 if (line >= 0 || (start >= 0 && length >= 0)) {
285 if (start >= 0) {
286 selection->AddInt32("be:selection_offset", start);
/haiku/src/kits/storage/sniffer/
H A DPattern.cpp88 int32 start = range.Start(); local
93 for (int i = start; i <= end; i++) {
116 Pattern::Sniff(off_t start, off_t size, BPositionIO *data, bool caseInsensitive) const { argument
121 ssize_t bytesRead = data->ReadAt(start, buffer, len);
162 Pattern::Sniff(off_t start, off_t size, BPositionIO *data, bool caseInsensitive) const { argument
167 ssize_t bytesRead = data->ReadAt(start, buffer, len);
/haiku/src/kits/interface/layouter/
H A DComplexLayouter.cpp105 Constraint(int32 start, int32 end, int32 min, int32 max) argument
106 : start(start),
130 int32 value = sumValues[end] - sumValues[start - 1];
134 int32 start; member in struct:ComplexLayouter::Constraint
238 while (*slot != NULL && (*slot)->start > element)
241 if (*slot != NULL && (*slot)->start == element) {
377 *end = new(nothrow) Constraint(constraint->start, constraint->end,
476 SumItem& base = fSums[constraint->start];
489 success = fOptimizer->AddConstraint(constraint->start
[all...]
/haiku/src/bin/bfs_tools/lib/
H A DBitmap.cpp182 off_t start = fDisk->ToBlock(node->data.direct[i]); local
183 off_t end = start + node->data.direct[i].length;
184 for (off_t block = start; block < end; block++) {
219 off_t start = fDisk->ToBlock(indirect[i]); local
220 off_t end = start + indirect[i].length;
221 for (off_t block = start; block < end; block++) {

Completed in 99 milliseconds

1234567891011>>