Searched refs:start (Results 151 - 175 of 624) sorted by relevance

1234567891011>>

/haiku/src/libs/glut/
H A Dglut_ext.c23 const GLubyte *start; local
37 start = extensions;
44 where = (GLubyte *) strstr((const char *) start, extension);
48 if (where == start || *(where - 1) == ' ') {
53 start = terminator;
/haiku/src/build/libgnuregex/
H A Dregex.h366 regoff_t *start;
384 regoff_t rm_so; /* Byte offset from string's start to substring's start. */
385 regoff_t rm_eo; /* Byte offset from string's start to substring's end. */
434 int length, int start, int range, struct re_registers *regs));
442 int start, int range, struct re_registers *regs, int stop));
449 int length, int start, struct re_registers *regs));
456 int start, struct re_registers *regs, int stop));
362 regoff_t *start; member in struct:re_registers
/haiku/src/system/libroot/posix/stdlib/
H A Dexit.cpp104 AddressRangePredicate(addr_t start, size_t size) argument
106 fStart(start),
107 fEnd(start + size - 1)
277 _call_atexit_hooks_for_range(addr_t start, addr_t size) argument
279 call_exit_hooks(AddressRangePredicate(start, size));
H A Dmktemp.c94 char *start, *trv, *suffp; local
128 start = trv + 1;
165 for (trv = start;;) {
/haiku/src/apps/stylededit/
H A DStyledEditView.cpp62 StyledEditView::DeleteText(int32 start, int32 finish) argument
67 BTextView::DeleteText(start, finish);
85 StyledEditView::Select(int32 start, int32 finish) argument
87 fMessenger->SendMessage(start == finish ? DISABLE_ITEMS : ENABLE_ITEMS);
88 BTextView::Select(start, finish);
/haiku/src/add-ons/media/media-add-ons/dvb/
H A DDVBCard.cpp156 bigtime_t start = system_time(); local
167 printf("got signal after %.6f\n", (system_time() - start) / 1e6);
171 printf("got carrier after %.6f\n", (system_time() - start) / 1e6);
175 printf("got lock after %.6f\n", (system_time() - start) / 1e6);
181 } while ((system_time() - start) < 5000000);
/haiku/src/system/kernel/arch/m68k/
H A Darch_vm_translation_map_impl.cpp488 map_max_pages_need(vm_translation_map */*map*/, addr_t start, addr_t end) argument
492 // If start == 0, the actual base address is not yet known to the caller
494 if (start == 0) {
496 start = (1023) * B_PAGE_SIZE;
497 end += start;
499 pgdirs = VADDR_TO_PRENT(end) + 1 - VADDR_TO_PRENT(start);
509 need += (VADDR_TO_PDENT(end) + 1 - VADDR_TO_PDENT(start) + NUM_PAGETBL_PER_PAGE - 1) / NUM_PAGETBL_PER_PAGE;
646 unmap_tmap(vm_translation_map *map, addr_t start, addr_t end) argument
655 start = ROUNDDOWN(start, B_PAGE_SIZ
868 protect_tmap(vm_translation_map *map, addr_t start, addr_t end, uint32 attributes) argument
[all...]
/haiku/src/apps/mediaconverter/
H A DMediaConverterApp.cpp252 bigtime_t start = 0; local
259 start = strtoimax(fWin->StartDuration(), &a, 0) * 1000;
315 audioQuality, videoQuality, start, end);
545 int64 start; local
554 start = 0;
560 start = inVidTrack->CurrentFrame();
563 if (start > end)
564 start = 0;
568 for (int64 i = start; (i < end) && !fCancel; i += framesRead) {
586 completePercent = (float)(i - start) / (floa
[all...]
/haiku/src/add-ons/media/media-add-ons/mixer/
H A DMixerInput.cpp125 bigtime_t start; local
136 start = buffer->Header()->start_time;
139 if (start < 0) {
140 ERROR("MixerInput::BufferReceived: buffer with negative start time of "
141 "%lld dropped\n", start);
149 int offset = frames_for_duration(fMixBufferFrameRate, start)
152 PRINT(4, "MixerInput::BufferReceived: buffer start %10Ld, offset %6d\n",
153 start, offset);
189 if (start > fLastDataAvailableTime) {
190 if ((start
[all...]
/haiku/src/system/kernel/debug/
H A Ddebug_builtin_commands.cpp44 const char *start = NULL; local
51 start = argv[1];
52 startLength = strlen(start);
59 } else if (start != NULL)
60 kprintf("debugger commands starting with \"%s\":\n", start);
68 if (start != NULL && strncmp(start, command->name, startLength))
/haiku/src/apps/aboutsystem/
H A DUtilities.cpp441 int32 start = 0; local
443 // find the next number start
444 while (string[start] != '\0' && !isdigit(string[start]))
445 start++;
447 if (string[start] == '\0')
451 int32 end = start + 1;
455 if (end - start == 4) {
456 int year = atoi(string + start);
461 start
[all...]
/haiku/src/kits/mail/
H A DMailContainer.cpp21 message_part(off_t start, off_t end) { this->start = start; this->end = end; } argument
25 int32 start; member in struct:message_part
27 // Offset just past the last byte of data, so total length == end - start.
29 // data, the end points at the start of the next CRLF+Boundary. This can
127 _io_data->Seek(part->start,SEEK_SET);
130 if (component.SetToRFC822(_io_data,part->end - part->start) < B_OK)
136 _io_data->Seek(part->start,SEEK_SET);
137 char *data = new char[part->end - part->start
[all...]
/haiku/src/system/boot/platform/u-boot/arch/ppc/
H A Darch_mmu.cpp162 gKernelArgs.physical_memory_range[i].start,
170 gKernelArgs.physical_allocated_range[i].start,
178 gKernelArgs.virtual_allocated_range[i].start,
311 // remember the start of the allocated physical pages
312 gKernelArgs.physical_allocated_range[0].start
313 = gKernelArgs.physical_memory_range[0].start;
319 gKernelArgs.virtual_allocated_range[0].start = KERNEL_BASE;
331 gKernelArgs.cpu_kstack[0].start = (addr_t)(tlbSize - KERNEL_STACK_SIZE);
335 TRACE(("kernel stack at 0x%Lx to 0x%Lx\n", gKernelArgs.cpu_kstack[0].start,
336 gKernelArgs.cpu_kstack[0].start
[all...]
/haiku/src/bin/bfs_tools/lib/
H A Ddump.cpp43 run.start, run.length, postfix);
271 Print(" (%" B_PRId32 ", %d)", run.allocation_group, run.start);
293 uint32 start = i; local
295 for (; i < start + kBlockSize; i++) {
306 for (i = start; i < start + kBlockSize; i++) {
321 for (uint32 offset = start; offset < start + kBlockSize;
324 Print("%s%" B_PRIdOFF, offset == start ? "" : ", ",
/haiku/src/system/kernel/arch/riscv64/
H A Darch_debug.cpp38 B_PRIdSSIZE "\n", image->text_region.start,
39 image->text_region.start + image->text_region.size,
42 B_PRIdSSIZE "\n", image->data_region.start,
43 image->data_region.start + image->data_region.size,
65 if (adr >= image->text_region.start
66 && adr < image->text_region.start + image->text_region.size) {
70 if (adr >= image->data_region.start
71 && adr < image->data_region.start + image->data_region.size) {
355 addr_t start, addr_t end)
354 arch_debug_contains_call(Thread *thread, const char *symbol, addr_t start, addr_t end) argument
/haiku/src/system/boot/arch/m68k/
H A Dmmu.cpp499 gKernelArgs.physical_allocated_range[0].size = sNextPhysicalAddress - gKernelArgs.physical_allocated_range[0].start;
502 gKernelArgs.virtual_allocated_range[0].start = KERNEL_LOAD_BASE;
521 gKernelArgs.physical_memory_range[i].start,
528 gKernelArgs.physical_allocated_range[i].start,
535 gKernelArgs.virtual_allocated_range[i].start,
578 gKernelArgs.physical_allocated_range[0].start = sNextPhysicalAddress;
581 // remember the start of the allocated physical pages
607 gKernelArgs.cpu_kstack[0].start = (addr_t)mmu_allocate(NULL,
612 TRACE(("kernel stack at 0x%lx to 0x%lx\n", gKernelArgs.cpu_kstack[0].start,
613 gKernelArgs.cpu_kstack[0].start
[all...]
/haiku/src/system/kernel/vm/
H A DVMUserAddressSpace.h59 static addr_t _RandomizeAddress(addr_t start, addr_t end,
62 status_t _InsertAreaIntoReservedRegion(addr_t start,
65 status_t _InsertAreaSlot(addr_t start, addr_t size,
/haiku/src/add-ons/kernel/partitioning_systems/intel/
H A Dwrite_support.cpp334 pm_validate_move(partition_data* partition, off_t* start) argument
338 if (!partition || !start)
351 off_t start = *_start; local
353 if (start < 0)
354 start = 0;
355 else if (start + childSize > partition->size)
356 start = partition->size - childSize;
358 start = sector_align(start, partition->block_size);
369 if (start < childOffse
389 pm_validate_move_child(partition_data* partition, partition_data* child, off_t* start) argument
478 validate_create_child_partition(partition_data* partition, off_t* start, off_t* size, fc_get_sibling_partitions getSiblingPartitions) argument
524 pm_validate_create_child(partition_data* partition, off_t* start, off_t* size, const char* type, const char* name, const char* parameters, int32* index) argument
1653 ep_validate_move(partition_data* partition, off_t* start) argument
[all...]
/haiku/src/system/boot/platform/efi/arch/arm/
H A Darch_dtb.cpp114 interrupt_controller.regs1.start,
117 interrupt_controller.regs2.start,
128 timer.regs.start,
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DBTree.cpp211 BTree::Node::Copy(const Node* origin, uint32 start, uint32 end, int length) argument
220 // like removing [0, start - 1] and keeping [start, end]
221 length = -origin->_CalculateSpace(0, start - 1, 2);
222 _Copy(origin, 0, start, end, length);
224 // removing all items in [start, end]
225 if (start > 0)
226 _Copy(origin, 0, 0, start - 1, 0); // <-- [start,...
230 length += origin->_CalculateSpace(start, en
248 MoveEntries(uint32 start, uint32 end, int length) const argument
412 CopyOnWrite(Transaction& transaction, int level, uint32 start, int num, int length) argument
[all...]
/haiku/src/system/boot/platform/atari_m68k/
H A Dmmu.cpp500 gKernelArgs.physical_allocated_range[0].size = sNextPhysicalAddress - gKernelArgs.physical_allocated_range[0].start;
503 gKernelArgs.virtual_allocated_range[0].start = KERNEL_LOAD_BASE;
522 gKernelArgs.physical_memory_range[i].start,
529 gKernelArgs.physical_allocated_range[i].start,
536 gKernelArgs.virtual_allocated_range[i].start,
579 gKernelArgs.physical_allocated_range[0].start = sNextPhysicalAddress;
582 // remember the start of the allocated physical pages
610 gKernelArgs.cpu_kstack[0].start = (addr_t)mmu_allocate(NULL,
615 TRACE(("kernel stack at 0x%lx to 0x%lx\n", gKernelArgs.cpu_kstack[0].start,
616 gKernelArgs.cpu_kstack[0].start
[all...]
/haiku/src/system/boot/platform/amiga_m68k/
H A Dmmu.cpp499 gKernelArgs.physical_allocated_range[0].size = sNextPhysicalAddress - gKernelArgs.physical_allocated_range[0].start;
502 gKernelArgs.virtual_allocated_range[0].start = KERNEL_LOAD_BASE;
521 gKernelArgs.physical_memory_range[i].start,
528 gKernelArgs.physical_allocated_range[i].start,
535 gKernelArgs.virtual_allocated_range[i].start,
579 gKernelArgs.physical_allocated_range[0].start = sNextPhysicalAddress;
582 // remember the start of the allocated physical pages
608 gKernelArgs.cpu_kstack[0].start = (addr_t)mmu_allocate(NULL,
613 TRACE(("kernel stack at 0x%lx to 0x%lx\n", gKernelArgs.cpu_kstack[0].start,
614 gKernelArgs.cpu_kstack[0].start
[all...]
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/
H A D_KPPPAuthenticationHandler.h16 KPPPProtocol *NextAuthenticator(const KPPPProtocol *start,
/haiku/src/apps/icon-o-matic/generic/gui/
H A DNummericalTextView.h40 virtual void Select(int32 start, int32 finish);
/haiku/src/apps/terminal/
H A DInlineInput.h37 bool GetClause(int32 index, int32 *start, int32 *end) const;

Completed in 109 milliseconds

1234567891011>>