Searched refs:end (Results 201 - 225 of 643) sorted by relevance

1234567891011>>

/haiku/headers/private/storage/
H A DAddOnMonitorHandler.h108 const DirectoryList::const_iterator& end)
113 const DirectoryList::const_iterator& end)
/haiku/src/apps/pairs/
H A DPairs.cpp81 for (IconMap::iterator iter = fIconMap.begin(); iter != fIconMap.end();
121 if (fIconMap.find(hash) != fIconMap.end()) {
/haiku/src/system/kernel/arch/m68k/
H A Darch_cpu.cpp129 arch_cpu_invalidate_TLB_range(addr_t start, addr_t end) argument
131 int32 num_pages = end / B_PAGE_SIZE - start / B_PAGE_SIZE;
/haiku/src/libs/print/libprint/
H A DPrintProcess.cpp145 for (fIt = fPages.begin(); fIt != fPages.end(); fIt++) {
163 if (fIt == fPages.end()) {
/haiku/src/tools/
H A Dexec.c39 char end = str[*pos]; local
48 if (c == end)
/haiku/src/system/kernel/vm/
H A DVMUserAddressSpace.h59 static addr_t _RandomizeAddress(addr_t start, addr_t end,
66 addr_t end, uint32 addressSpec,
/haiku/src/system/kernel/arch/m68k/paging/040/
H A DM68KVMTranslationMap040.cpp180 M68KVMTranslationMap040::MaxPagesNeededToMap(addr_t start, addr_t end) const
191 end += 1023 * B_PAGE_SIZE;
194 pgdirs = VADDR_TO_PRENT(end) + 1 - VADDR_TO_PRENT(start);
204 need += (VADDR_TO_PDENT(end) + 1 - VADDR_TO_PDENT(start) + NUM_PAGETBL_PER_PAGE - 1) / NUM_PAGETBL_PER_PAGE;
348 M68KVMTranslationMap040::Unmap(addr_t start, addr_t end) argument
351 if (start >= end)
354 TRACE("M68KVMTranslationMap040::Unmap: asked to free pages 0x%lx to 0x%lx\n", start, end);
393 (index < NUM_PAGEENT_PER_TBL) && (start < end);
414 } while (start != 0 && start < end);
513 addr_t end local
889 Protect(addr_t start, addr_t end, uint32 attributes, uint32 memoryType) argument
[all...]
/haiku/src/system/kernel/arch/arm64/
H A DVMSAv8TranslationMap.h24 addr_t end) const;
30 virtual status_t Unmap(addr_t start, addr_t end);
H A DVMSAv8TranslationMap.cpp100 VMSAv8TranslationMap::MaxPagesNeededToMap(addr_t start, addr_t end) const
103 size_t size = end - start + 1;
222 uint64_t end = va + size;
228 if (end > aligned) {
237 while (nextVa + entrySize <= end) {
287 if (nextVa < end) {
291 table, level + 1, nextVa, pa + (nextVa - va), end - nextVa, action, attr, reservation);
397 VMSAv8TranslationMap::Unmap(addr_t start, addr_t end)
401 size_t size = end - start + 1;
544 VMSAv8TranslationMap::Protect(addr_t start, addr_t end, uint3
[all...]
/haiku/src/kits/network/libnetservices2/
H A DHttpBuffer.cpp152 auto end = fBuffer.cbegin() + fCurrentOffset; variable
153 fBuffer.erase(fBuffer.cbegin(), end);
/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/add-ons/kernel/network/protocols/ipv6/
H A Dipv6.cpp92 status_t AddFragment(uint16 start, uint16 end,
307 FragmentPacket::AddFragment(uint16 start, uint16 end, net_buffer* buffer, argument
313 if (start >= end) {
335 && previous->fragment.end >= end) {
348 if (previous != NULL && previous->fragment.end > start) {
349 TRACE(" remove header %d bytes", previous->fragment.end - start);
350 gBufferModule->remove_header(buffer, previous->fragment.end - start);
351 start = previous->fragment.end;
353 if (next != NULL && end > nex
576 uint16 end = start + header.PayloadLength(); local
[all...]
/haiku/src/add-ons/kernel/network/protocols/ipv4/
H A Dipv4.cpp77 status_t AddFragment(uint16 start, uint16 end,
268 FragmentPacket::AddFragment(uint16 start, uint16 end, net_buffer* buffer, argument
274 if (start >= end) {
296 && previous->fragment.end >= end) {
309 if (previous != NULL && previous->fragment.end > start) {
310 TRACE(" remove header %d bytes", previous->fragment.end - start);
311 gBufferModule->remove_header(buffer, previous->fragment.end - start);
312 start = previous->fragment.end;
314 if (next != NULL && end > nex
570 uint16 end = start + header.TotalLength() - header.HeaderLength(); local
[all...]
/haiku/src/apps/haikudepot/textview/
H A DTextDocumentView.cpp409 TextDocumentView::GetSelection(int32& start, int32& end) const
413 end = fTextEditor->SelectionEnd();
434 int32 end; local
435 GetSelection(start, end);
437 BString text = fTextDocument->Text(start, end - start);
562 int32 end; local
563 GetSelection(start, end);
566 _GetSelectionShape(shape, start, end);
584 TextDocumentView::_GetSelectionShape(BShape& shape, int32 start, int32 end) argument
602 fTextDocumentLayout.GetTextBounds(end, endX
[all...]
/haiku/src/system/kernel/arch/riscv64/
H A DRISCV64VMTranslationMap.cpp119 uint64 end = pteCount - 1; local
122 end = VirtAdrPte(USER_TOP, 2);
124 for (uint64 i = beg; i <= end; i++) {
147 uint64 end = pteCount - 1; local
150 end = VirtAdrPte(USER_TOP, 2);
152 for (uint64 i = beg; i <= end; i++) {
293 RISCV64VMTranslationMap::MaxPagesNeededToMap(addr_t start, addr_t end) const
303 end += start;
306 size_t requiredLevel2 = end / level2Range + 1 - start / level2Range;
307 size_t requiredLevel1 = end / level1Rang
367 Unmap(addr_t start, addr_t end) argument
388 DebugMarkRangePresent(addr_t start, addr_t end, bool markPresent) argument
[all...]
/haiku/src/add-ons/accelerants/skeleton/engine/
H A Dinfo.c413 bool end = false; local
421 while (!end)
432 end = true;
460 end = true;
480 end = true;
496 end = true;
521 end = true;
550 end = true;
580 end = true;
605 end
926 bool end = false; local
[all...]
/haiku/headers/tools/cppunit/
H A DThreadedTestCaller.h82 for (typename ThreadManagerMap::iterator it = fThreads.begin(); it != fThreads.end (); ++it) {
91 if (fThreads.find(threadName) == fThreads.end()) {
141 i != fThreads.end ();
170 i != list.end();
197 i != fThreads.end ();
/haiku/src/add-ons/print/drivers/canon_lips/lips3/
H A DCompress3.cpp82 ifs.seekg(0, ios::end);
/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPCapabilities.cpp120 if (it == fDriverSpecificCapabilities.end())
/haiku/src/bin/network/telnetd/
H A Dslc.c76 } /* end of send_slc */
100 } /* end of default_slc */
122 } /* end of get_slc_defaults */
143 } /* end of add_slc */
164 } /* end of start_slc */
209 } /* end of end_slc */
272 } /* end of process_slc */
374 } /* end of change_slc */
436 unsigned char *end = ptr + len; local
439 while (ptr < end) {
[all...]
/haiku/src/tools/cppunit/cppunit/
H A DTestResultCollector.cpp19 while ( itFailure != m_failures.end() )
/haiku/src/kits/interface/textview_support/
H A DTextGapBuffer.h31 void RemoveRange(int32 start, int32 end);
/haiku/src/apps/diskprobe/
H A DProbeView.h49 int64 end);
/haiku/src/system/libroot/posix/glibc/arch/sparc/
H A Dlshift.S34 add %o1,%g1,%o1 ! make %o1 point at end of src
37 add %o0,%g1,%o0 ! make %o0 point at end of res
/haiku/src/system/libroot/posix/string/arch/x86_64/
H A Darch_string.cpp169 auto end = reinterpret_cast<__m128i*>(destination + length - 16); local
188 _mm_storeu_si128(end, packed);
198 auto end = reinterpret_cast<uint64_t*>(destination + length - 8); local
203 *end = packed;

Completed in 121 milliseconds

1234567891011>>