Searched refs:end (Results 126 - 150 of 643) sorted by last modified time

1234567891011>>

/haiku/src/apps/icon-o-matic/import_export/svg/
H A DDocumentBuilder.cpp175 int32 end = path->CountPoints() - 1; local
177 path->SetInOutConnected(end, false);
179 path->SetPointIn(end, vector2);
/haiku/src/system/kernel/arch/riscv64/
H A Darch_cpu.cpp105 arch_cpu_invalidate_TLB_range(addr_t start, addr_t end) argument
108 addr_t kernelEnd = std::min<addr_t>(end, KERNEL_TOP);
111 addr_t userEnd = std::min<addr_t>(end, USER_TOP);
/haiku/src/apps/mail/
H A DContent.cpp139 FilterHTMLTag(int32 &first, char **t, char *end)
252 for (; a[0] && a < end; a++) {
253 // Find the end of the HEAD section, or the start of the BODY,
261 // skip until tag end
262 while (a[0] && a[0] != '>' && a < end)
310 // find the end of the URL based on word boundaries
415 int32 start, end;
416 view->GetSelection(&end, &end);
430 for (start = end; star
[all...]
/haiku/headers/os/interface/
H A DView.h347 void StrokeLine(BPoint start, BPoint end,
350 void AddLine(BPoint start, BPoint end,
/haiku/headers/cpp/std/
H A Dbastring.h295 { erase(begin(), end()); }
430 iterator end () { selfish (); return &(*this)[length ()]; } function in class:basic_string
438 const_iterator end () const { return iend (); } function in class:basic_string
440 reverse_iterator rbegin() { return reverse_iterator (end ()); }
442 { return const_reverse_iterator (end ()); }
/haiku/src/apps/cortex/addons/LoggingConsumer/
H A DLogWriter.cpp232 if (mFilters.find(what) != mFilters.end()) return;
/haiku/src/system/libroot/os/
H A Ddriver_settings.cpp170 bool newLine = false, end = false; local
189 // if we just read some white space before an end of a
218 // "String exceeds line" - missing end quote
226 end = pos[0] == '\0';
227 newLine = is_parameter_separator(pos[0]) || end;
244 if (end) {
339 // check for level beginning and end
H A Dfind_paths.cpp359 char* end = buffer + strlen(buffer); local
368 // find component end
381 if (end + 1 + componentLength >= bufferEnd)
384 *end++ = '/';
385 memcpy(end, remainder, componentLength);
386 end += componentLength;
390 *end = '\0';
/haiku/src/system/kernel/arch/arm/paging/32bit/
H A DARMVMTranslationMap32Bit.h22 addr_t end) const;
28 virtual status_t Unmap(addr_t start, addr_t end);
30 virtual status_t DebugMarkRangePresent(addr_t start, addr_t end,
H A DARMVMTranslationMap32Bit.cpp142 ARMVMTranslationMap32Bit::MaxPagesNeededToMap(addr_t start, addr_t end) const
149 end += 1023 * B_PAGE_SIZE;
152 return VADDR_TO_PDENT(end) + 1 - VADDR_TO_PDENT(start);
228 ARMVMTranslationMap32Bit::Unmap(addr_t start, addr_t end) argument
231 if (start >= end)
234 TRACE("unmap_tmap: asked to free pages 0x%lx to 0x%lx\n", start, end);
253 for (index = VADDR_TO_PTENT(start); (index < 256) && (start < end);
274 } while (start != 0 && start < end);
281 ARMVMTranslationMap32Bit::DebugMarkRangePresent(addr_t start, addr_t end, argument
286 if (start >= end)
412 addr_t end = base + size - 1; local
695 Protect(addr_t start, addr_t end, uint32 attributes, uint32 memoryType) argument
[all...]
/haiku/src/system/kernel/arch/arm/
H A Darch_cpu.cpp93 arch_cpu_invalidate_TLB_range(addr_t start, addr_t end) argument
98 int32 num_pages = end / B_PAGE_SIZE - start / B_PAGE_SIZE;
/haiku/src/servers/launch/
H A DJob.cpp74 for (; constIterator != other.Ports().end(); constIterator++) {
80 for (; iterator != fPortMap.end(); iterator++)
258 if (dependencies.find(requirement) != dependencies.end()) {
320 if (found != fPortMap.end())
340 for (; iterator != fPortMap.end(); iterator++) {
514 for (; iterator != Ports().end(); iterator++) {
578 for (; iterator != fPortMap.end(); iterator++) {
617 iterator != fPortMap.end(); iterator++) {
/haiku/src/servers/app/drawing/Painter/
H A DPainter.cpp137 // We start out with all flags set and end up with only those flags
595 int32 end = min_c(fBaseRenderer.ymax(), y2); local
597 for (; i <= end; i++) {
627 int32 end = min_c(fBaseRenderer.xmax(), x2); local
629 for (; i <= end; i++) {
/haiku/src/kits/package/manager/
H A DPackageManager.cpp961 if (it == fPackagePaths.end()) {
/haiku/src/bin/network/ifconfig/
H A Difconfig.cpp179 char *end; local
180 uint32 prefixLength = strtoul(argument, &end, 10);
181 if (end == argument)
/haiku/src/bin/debug/strace/
H A Dstrace.cpp218 if (i == sSyscallMap.end())
520 for (; iterator != sSyscallStats.end(); iterator++)
524 std::sort(calls.begin(), calls.end(), compare_stats_by_time);
532 for (; callIterator != calls.end(); callIterator++) {
840 if (it == debuggedTeams.end())
867 if (it == debuggedTeams.end())
941 if (it == debuggedTeams.end())
H A DTypeHandler.cpp200 if (i != fMap.end() && i->second != NULL)
270 if (i != fMap.end())
H A DNetworkTypes.cpp539 if (i == fMap.end())
/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]
222 _Copy(origin, 0, start, end, length);
224 // removing all items in [start, end]
227 if (end + 1 < origin->ItemCount()) {
228 // ..., end] -->
230 length += origin->_CalculateSpace(start, end);
231 _Copy(origin, start, end + 1, origin->ItemCount() - 1, length);
234 // inserting in [start, end] - make a hole for later
238 length -= origin->_CalculateSpace(start, end);
248 MoveEntries(uint32 start, uint32 end, int length) const argument
[all...]
/haiku/src/system/kernel/debug/
H A Dsystem_profiler.cpp1338 size_t end = fBufferStart + fBufferSize; local
1339 if (end + size > fBufferCapacity) {
1341 if (end < fBufferCapacity) {
1344 = (system_profiler_event_header*)(fBufferBase + end);
1347 end = 0;
1349 end -= fBufferCapacity;
1351 if (end + size > fBufferStart) {
1358 = (system_profiler_event_header*)(fBufferBase + end);
/haiku/src/libs/compat/freebsd_network/
H A Dbus.cpp168 unsigned long end, unsigned long count, uint32 flags)
178 "0x%" B_PRIx32 ")\n", type, *rid, start, end, count, flags);
167 bus_alloc_resource(device_t dev, int type, int *rid, unsigned long start, unsigned long end, unsigned long count, uint32 flags) argument
/haiku/src/apps/haiku3d/
H A DRenderView.cpp203 for (; it != fMeshInstances.end(); it++) {
250 for (; it != fMeshInstances.end(); it++) {
/haiku/src/apps/mediaconverter/
H A DMediaConverterApp.cpp253 bigtime_t end = 0; local
260 end = strtoimax(fWin->EndDuration(), &a, 0) * 1000;
315 audioQuality, videoQuality, start, end);
546 int64 end; local
555 end = videoFrameCount;
558 end = inVidTrack->CurrentFrame();
561 if (end > videoFrameCount)
562 end = videoFrameCount;
563 if (start > end)
568 for (int64 i = start; (i < end)
[all...]
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dattrib.c230 * We have reached the end of data size so we were
649 * Map the runlist of an attribute from some point to the end
720 * Make sure we reached the end, unless the last
1022 * Truncate reads beyond end of attribute,
1210 * lower than @count this means that the read reached end of file or that an
1212 * end of file or nothing was read (also return 0 when @count is 0).
1243 s64 written, size, end = pos + count; local
1264 while (pos < end) {
1270 size = min(end - pos, NTFS_BUF_SIZE);
1280 size = min(end
2656 u8 *end; local
[all...]
/haiku/src/system/libroot/os/arch/riscv64/
H A Dcachectl.cpp10 __riscv_flush_icache(void *start, void *end, unsigned long int flags) argument
12 clear_caches(start, (uint8*)end - (uint8*)start, B_INVALIDATE_ICACHE);

Completed in 182 milliseconds

1234567891011>>