Searched refs:end (Results 76 - 100 of 643) sorted by relevance

1234567891011>>

/haiku/src/tools/cppunit/
H A DThreadedTestCase.cpp28 i != fNumberMap.end(); i++)
45 if (i != fNumberMap.end() && i->second) {
71 isSingleThreaded = fNumberMap.find(id) == fNumberMap.end();
102 if (i != fNumberMap.end() && i->second) {
H A DTestShell.cpp72 i != map.end();
163 for (i = fTests.begin(); i != fTests.end(); ++i)
173 for (i = fTestsToRun.begin(); i != fTestsToRun.end(); ++i) {
175 if (fSuites.find(*i) != fSuites.end()) {
178 if (fTests.find(*i) == fTests.end()) {
183 for (j = tests.begin(); j != tests.end(); j++) {
192 for (i = suitesToRemove.begin(); i != suitesToRemove.end(); i++) {
197 for (i = fTestsToRun.begin(); i != fTestsToRun.end(); ++i) {
199 if (fTests.find(*i) != fTests.end()) {
310 for (j = fSuites.begin(); j != fSuites.end();
[all...]
/haiku/src/servers/registrar/mime/
H A DRegistrarThreadManager.cpp105 for (i = fThreads.begin(); i != fThreads.end();) {
131 for (i = fThreads.begin(); i != fThreads.end(); ) {
161 for (i = fThreads.begin(); i != fThreads.end(); ) {
200 for (i = fThreads.begin(); i != fThreads.end(); ) {
/haiku/src/servers/media/
H A DAppManager.cpp65 return fMap.find(team) != fMap.end();
124 if (found == fMap.end())
141 for (; iterator != fMap.end(); iterator++) {
149 printf("AppManager: list end\n");
159 for (; iterator != fMap.end(); iterator++)
H A DNodeManager.cpp171 if (found != fNodeMap.end())
207 if (found == fNodeMap.end()) {
252 if (found == fNodeMap.end()) {
261 if (teamRef == node.team_ref_count.end()) {
269 if (node.creator == team && teamRef != node.team_ref_count.end()) {
319 if (found == fNodeMap.end()) {
352 if (found == fNodeMap.end()) {
387 if (found == fNodeMap.end()) {
470 if (found == fNodeMap.end()) {
498 if (found == fNodeMap.end()) {
[all...]
/haiku/src/add-ons/disk_systems/intel/
H A DPartitionMapAddOn.cpp397 off_t end = offset + size; local
408 if ((spaceOffset >= offset && spaceOffset < end)
416 distance = spaceOffset - end;
439 end = offset + size;
441 end = spaceEnd;
442 offset = end - size;
449 end = offset + size;
450 if (end > spaceEnd) {
451 end = spaceEnd;
452 size = end
517 off_t end = offset + size; local
[all...]
H A DExtendedPartitionAddOn.cpp346 off_t end = offset + size; local
357 if ((spaceOffset >= offset && spaceOffset < end)
365 distance = spaceOffset - end;
388 end = offset + size;
390 end = spaceEnd;
391 offset = end - size;
398 end = offset + size;
399 if (end > spaceEnd) {
400 end = spaceEnd;
401 size = end
445 off_t end = offset + size; local
[all...]
/haiku/src/bin/
H A Dchop.c195 char *end = Block; // end of the current block (init to beginning to force first block read) local
200 if (beg >= end) {
207 end = Block + got - 1;
224 avail = end - beg + 1;
/haiku/src/system/boot/platform/efi/arch/x86_64/
H A Darch_mmu.cpp93 uint64_t end = entry->PhysicalStart + entry->NumberOfPages * 4096; local
94 uint64_t originalSize = end - base;
97 if (end > (512ull * 1024 * 1024 * 1024))
98 end = 512ull * 1024 * 1024 * 1024;
101 += originalSize - (max_c(end, base) - base);
103 if (base >= end)
105 uint64_t size = end - base;
139 uint64_t end = entry->PhysicalStart + entry->NumberOfPages * 4096; local
140 remove_physical_memory_range(base, end - base);
/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...]
H A DAddressTextControl.h39 void GetSelection(int32* start, int32* end) const;
40 void Select(int32 start, int32 end);
/haiku/src/kits/storage/
H A DAddOnMonitorHandler.cpp45 for (; it != fDirectories.end(); it++) {
47 for (; eiter != it->entries.end(); eiter++)
78 for (; it != fDirectories.end(); it++) {
223 while (eiter != fPendingEntries.end()) {
266 for (diter++; diter != fDirectories.end(); diter++) {
331 for (fromIter++; fromIter != fDirectories.end(); fromIter++) {
369 for (diter++ ; diter != fDirectories.end(); diter++) {
429 for (; oldIter != fDirectories.end(); oldIter++) {
461 for (; newIter != fDirectories.end(); newIter++) {
488 for (; diter != fDirectories.end(); dite
[all...]
/haiku/src/system/kernel/vm/
H A DVMUserAddressSpace.cpp420 VMUserAddressSpace::_RandomizeAddress(addr_t start, addr_t end, argument
424 ASSERT(start <= end);
426 if (start == end)
429 addr_t range = end - start + 1;
483 // the area is at the end of the reserved range
518 VMUserAddressSpace::_InsertAreaSlot(addr_t start, addr_t size, addr_t end, argument
523 "0x%lx, size %ld, end 0x%lx, addressSpec %" B_PRIu32 ", area %p\n",
524 this, start, size, end, addressSpec, area));
527 if (start < fBase || size == 0 || end > fEndAddress
528 || start + (size - 1) > end)
[all...]
/haiku/src/libs/libfdt/
H A Dfdt_ro.c252 const char *end = path + namelen; local
260 const char *q = memchr(path, '/', end - p);
263 q = end;
273 while (p < end) {
278 if (p == end)
281 q = memchr(p, '/', end - p);
283 q = end;
725 const char *list, *end; local
732 end = list + length;
734 while (list < end) {
752 const char *list, *end; local
782 const char *list, *end; local
[all...]
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dstrtol.c239 const STRING_TYPE *save, *end; variable
342 /* Find the end of the digit string and check its grouping. */
343 end = s;
349 if (thousands[cnt] != end[cnt])
355 for (c = *end; c != L_('\0'); c = *++end)
361 if (thousands[cnt] != end[cnt])
369 end = correctly_grouped_prefix (s, end, thousands, grouping);
374 end
[all...]
/haiku/src/bin/network/arp/
H A Darp.cpp133 char *end = start; local
134 while (end[0] && !isspace(end[0])) {
135 end++;
138 if (end[0]) {
139 // skip all whitespace until next argument (or end of line)
140 end[0] = '\0';
141 end++;
143 while (end[0] && isspace(end[
[all...]
/haiku/src/system/kernel/arch/x86/paging/32bit/
H A DX86VMTranslationMap32Bit.cpp125 X86VMTranslationMap32Bit::MaxPagesNeededToMap(addr_t start, addr_t end) const
132 end += 1023 * B_PAGE_SIZE;
135 return VADDR_TO_PDENT(end) + 1 - VADDR_TO_PDENT(start);
213 X86VMTranslationMap32Bit::Unmap(addr_t start, addr_t end) argument
216 if (start >= end)
219 TRACE("unmap_tmap: asked to free pages 0x%lx to 0x%lx\n", start, end);
238 for (index = VADDR_TO_PTENT(start); (index < 1024) && (start < end);
259 } while (start != 0 && start < end);
266 X86VMTranslationMap32Bit::DebugMarkRangePresent(addr_t start, addr_t end, argument
270 if (start >= end)
395 addr_t end = base + size - 1; local
692 Protect(addr_t start, addr_t end, uint32 attributes, uint32 memoryType) argument
[all...]
/haiku/src/system/kernel/arch/arm/paging/32bit/
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/headers/cpp/
H A Dstl_list.h315 iterator end() { return _M_node; } function in class:list
316 const_iterator end() const { return _M_node; } function in class:list
319 { return reverse_iterator(end()); }
321 { return const_reverse_iterator(end()); }
331 distance(begin(), end(), __result);
338 reference back() { return *(--end()); }
339 const_reference back() const { return *(--end()); }
381 void push_back(const _Tp& __x) { insert(end(), __x); }
382 void push_back() {insert(end());}
401 iterator __tmp = end();
[all...]
/haiku/headers/libs/agg/
H A Dagg_gamma_functions.h80 void end(double e) { m_end = e; } function in class:agg::gamma_linear
82 double end() const { return m_end; } function in class:agg::gamma_linear
/haiku/src/libs/agg/src/
H A Dagg_image_filters.cpp97 unsigned end = (diameter() << image_subpixel_shift) - 1; local
98 m_weight_array[0] = m_weight_array[end];
/haiku/src/system/kernel/arch/m68k/paging/040/
H A DM68KVMTranslationMap040.h21 addr_t end) const;
27 virtual status_t Unmap(addr_t start, addr_t end);
/haiku/src/kits/media/
H A DTimeSourceObjectManager.cpp46 for (; iterator != fMap.end(); iterator++) {
74 if (found != fMap.end())
/haiku/src/system/kernel/arch/ppc/
H A Darch_vm_translation_map.cpp136 addr_t end) const;
142 virtual status_t Unmap(addr_t start, addr_t end);
227 phys_addr_t end = start + args->physical_memory_range[i].size; local
229 end);
235 phys_addr_t end = start + args->physical_allocated_range[i].size; local
237 end);
243 addr_t end = start + args->virtual_allocated_range[i].size; local
244 TRACE(" %#10" B_PRIxADDR " - %#10" B_PRIxADDR "\n", start, end);
/haiku/headers/private/debugger/types/
H A DTargetAddressRange.h75 target_addr_t end = std::max(End(), other.End()); local
77 fSize = end - fStart;

Completed in 156 milliseconds

1234567891011>>