Searched refs:end (Results 1 - 25 of 643) sorted by last modified time

1234567891011>>

/haiku/src/system/kernel/vm/
H A Dvm_page.cpp814 kprintf("end of page table\n");
1089 page_num_t end; member in struct:page_run
1091 page_num_t Length() const { return end - start; }
1121 currentFreeRun.end = i + 1;
1122 currentCachedRun.end = i + 1;
1126 currentFreeRun.start = currentFreeRun.end = i + 1;
1129 currentCachedRun.end = i + 1;
1133 currentCachedRun.start = currentCachedRun.end = i + 1;
2689 // page is busy -- requeue at the end
3314 TRACE(("first phys page = %#" B_PRIxPHYSADDR ", end
3880 page_num_t end; local
[all...]
H A Dvm.cpp664 area, it is deleted. If it covers the beginning or the end, the area is
707 // Cut the end only?
790 // new area for the end section.
3972 \a end is inclusive.
3975 unmap_and_free_physical_pages(VMTranslationMap* map, addr_t start, addr_t end) argument
3979 for (addr_t current = start; current < end; current += B_PAGE_SIZE) {
3996 map->Unmap(start, end);
4004 addr_t end = start + (size - 1); local
4008 (void*)start, (void*)end));
4025 if (areaStart > end) {
[all...]
/haiku/src/system/kernel/fs/
H A Dvfs.cpp184 off_t end; member in struct:__anon13::advisory_lock
789 const char* end = strchr(fsName, '/'); local
790 if (end == NULL) {
797 char* name = (char*)malloc(end + 1 - fsName);
801 strlcpy(name, fsName, end + 1 - fsName);
817 const char* end = strchr(fsNames, ':'); local
818 if (end == NULL) {
825 size_t length = end - fsNames + 1;
831 fsNames = end + 1;
1568 && lock->end >
[all...]
/haiku/src/system/kernel/arch/x86/
H A Darch_cpu.cpp1924 arch_cpu_invalidate_TLB_range(addr_t start, addr_t end)
1926 int32 num_pages = end / B_PAGE_SIZE - start / B_PAGE_SIZE;
/haiku/src/build/libroot/
H A Dfs_attr_untyped.cpp203 if (it != sAttributeDirectories.end())
215 if (it == sAttributeDirectories.end())
284 // keep going until we find an entry or hit the end of dir
312 // end of dir
/haiku/src/bin/network/telnetd/
H A Dslc.c72 } /* end of send_slc */
96 } /* end of default_slc */
118 } /* end of get_slc_defaults */
139 } /* end of add_slc */
160 } /* end of start_slc */
205 } /* end of end_slc */
268 } /* end of process_slc */
370 } /* end of change_slc */
432 unsigned char *end = ptr + len; local
435 while (ptr < end) {
[all...]
/haiku/src/kits/interface/
H A DTextView.cpp1534 long start, end; local
1539 end = startOffset;
1542 end = fSelStart;
1544 Highlight(start, end);
1548 // end of selection has changed
1551 end = endOffset;
1554 end = fSelEnd;
1556 Highlight(start, end);
1576 int32 end = 0; local
1580 end
[all...]
/haiku/headers/private/file_systems/
H A DQueryParser.h248 char* CopyString(char* start, char* end);
386 char* end = NULL; local
395 if (ParseQuotedString(&start, &end) < B_OK)
399 string = end + 2;
416 end = string - 1;
417 skipWhitespaceReverse(&end, start);
421 if (start > end)
424 // At this point, "start" points to the beginning of the string, "end"
461 fAttribute = CopyString(start, end);
468 if (ParseQuotedString(&start, &end) < B_O
532 char* end = start; local
550 CopyString(char* start, char* end) argument
[all...]
/haiku/src/apps/charactermap/
H A DCharacterView.cpp104 // be queried by searching for the start and end codepoints
114 kUnicodeBlocks[blockIndex].end))
533 for (uint32 c = kUnicodeBlocks[i].start; c <= kUnicodeBlocks[i].end;
631 for (uint32 c = kUnicodeBlocks[i].start; c <= kUnicodeBlocks[i].end;
637 if (c + pos > kUnicodeBlocks[i].end)
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DIMAPFolder.cpp227 if (found == fFlagsMap.end())
307 for (; pendingIterator != fPendingFlagsMap.end(); pendingIterator++)
317 for (; iterator != fRefMap.end(); iterator++) {
319 if (fSynchronizedUIDsSet.find(uid) == fSynchronizedUIDsSet.end())
327 for (; deleteIterator != deleteUIDs.end(); deleteIterator++)
410 for (; iterator != uids.end(); iterator++) {
550 // if (found != lastUIDs.end()) {
599 if (found != fPendingBodies.end()) {
605 for (; iterator != messengers.end(); iterator++)
615 if (found == fRefMap.end())
[all...]
/haiku/src/servers/app/
H A DServerApp.cpp579 for (; iterator != fBitmapMap.end(); iterator++) {
2377 // 4) uint32 end of unicode block
2383 uint32 start, end; local
2387 link.Read<uint32>(&end);
2396 status = font.IncludesUnicodeBlock(start, end, hasBlock);
3819 if (iterator == fBitmapMap.end())
3832 if (iterator == fPictureMap.end())
/haiku/src/apps/poorman/
H A DPoorManWindow.cpp517 int32 start = 0, end = 0; local
518 fLoggingView->GetSelection(&start, &end);
521 char * buffData = buffer.LockBuffer(end - start + 1);
523 fLoggingView->GetText(start, end - start, buffData);
524 buffer.UnlockBuffer(end - start + 1);
526 err = fwrite(buffer.String(), 1, end - start + 1, f);
/haiku/src/apps/diskprobe/
H A DProbeView.cpp926 message.AddInt64("end", position - fEditor.ViewOffset());
993 message.AddInt64("end", foundAt + dataSize - 1 - fEditor.ViewOffset());
1493 ProbeView::_UpdateSelectionMenuItems(int64 start, int64 end) argument
1506 if (end < start + 8)
1507 size = end + 1 - start;
1798 int64 start, end; local
1800 && message->FindInt64("end", &end) == B_OK)
1801 _UpdateSelectionMenuItems(start, end);
1818 int32 start, end; local
1914 int32 start, end; local
[all...]
/haiku/src/apps/codycam/
H A DVideoConsumer.cpp609 uint32* end = start + size / 4; local
610 for (uint32* p = start; p < end; p++)
/haiku/src/apps/aboutsystem/
H A DAboutSystem.cpp1288 it != fPackageCredits.end(); it++) {
2206 it != fPackageCredits.end(); ++it) {
2238 if (it != fPackageCredits.end()) {
/haiku/src/kits/shared/
H A DStringForSize.cpp65 char* end; local
66 parsedSize = strtoll(sizeString, &end, 0);
67 if (end != sizeString && parsedSize > 0) {
69 switch (tolower(*end)) {
78 end++;
/haiku/src/add-ons/kernel/drivers/audio/emuxki/
H A Demuxki.h207 uint32 end; /* index in the PTB (in samples) */ member in struct:_emuxki_chanparms_loop
H A Demuxki.c396 chan->loop.end = 0x000010; /* Why ? */
481 uint32 start, uint32 end)
484 chan->loop.end = end & EMU_CHAN_DSL_LOOPENDADDR_MASK;
526 (chan->fxsend.d.level << 24) | chan->loop.end);
1128 uint32 start, end; local
1148 end = start + bufsize / sample_size;
1150 start, end);
1153 start, end);
2188 // end Joystic
480 emuxki_channel_set_bufparms(emuxki_channel *chan, uint32 start, uint32 end) argument
2881 char *end; local
[all...]
/haiku/src/add-ons/kernel/drivers/audio/echo/
H A Dmulti.cpp979 char* end; local
984 value = strtoul (item, &end, 0);
985 if (*end == '\0') current_settings.channels = value;
991 value = strtoul (item, &end, 0);
992 if (*end == '\0') current_settings.bitsPerSample = value;
998 value = strtoul (item, &end, 0);
999 if (*end == '\0') current_settings.sample_rate = value;
1005 value = strtoul (item, &end, 0);
1006 if (*end == '\0') current_settings.buffer_frames = value;
1012 value = strtoul (item, &end,
[all...]
/haiku/src/add-ons/kernel/drivers/audio/ac97/es1370/
H A Dmulti.c827 char *end; local
831 value = strtoul (item, &end, 0);
832 if (*end == '\0')
836 value = strtoul (item, &end, 0);
837 if (*end == '\0')
841 value = strtoul (item, &end, 0);
842 if (*end == '\0')
H A Des1370.c515 char *end; local
519 value = strtoul (item, &end, 0);
520 if (*end == '\0') current_settings.sample_rate = value;
523 value = strtoul (item, &end, 0);
524 if (*end == '\0') current_settings.buffer_frames = value;
527 value = strtoul (item, &end, 0);
528 if (*end == '\0') current_settings.buffer_count = value;
/haiku/src/add-ons/kernel/drivers/audio/ac97/auich/
H A Dmulti.c1049 char *end; local
1053 value = strtoul (item, &end, 0);
1054 if (*end == '\0')
1058 value = strtoul (item, &end, 0);
1059 if (*end == '\0')
1063 value = strtoul (item, &end, 0);
1064 if (*end == '\0')
/haiku/src/tools/fs_shell/
H A Dvfs.cpp521 const char *end = fssh_strchr(fsName, '/'); local
522 if (end == NULL) {
529 char *name = (char *)malloc(end + 1 - fsName);
533 fssh_strlcpy(name, fsName, end + 1 - fsName);
1573 // complete path if there is a slash at the end
1777 // if we reached the end of the file, we can return as well
/haiku/src/kits/tracker/
H A DContainerWindow.cpp196 goto end;
201 goto end;
205 goto end;
210 goto end;
219 goto end;
226 end:
1508 // the end point of the drag
3684 // can't deal with a slash at end
/haiku/src/add-ons/media/plugins/ffmpeg/
H A DAVFormatReader.cpp1634 chapterData.AddInt64("end", bigtime_t(1000000.0
1635 * chapter->end * chapter->time_base.num

Completed in 359 milliseconds

1234567891011>>