Home
last modified time | relevance | path

Searched refs:new_end (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_poisoning.cpp379 if ((((old_end != new_end) && Max(old_end, new_end) > end_down) || in FixUnalignedStorage()
385 new_end = Min(end_down, new_end); in FixUnalignedStorage()
402 new_end = Max(beg_up, new_end); in FixUnalignedStorage()
431 if (old_end == new_end) in __sanitizer_annotate_contiguous_container()
435 new_end); in __sanitizer_annotate_contiguous_container()
510 new_end); in __sanitizer_annotate_double_ended_contiguous_container()
514 if (old_beg == old_end || new_beg == new_end || new_end <= old_beg || in __sanitizer_annotate_double_ended_contiguous_container()
523 if (new_beg != new_end) { in __sanitizer_annotate_double_ended_contiguous_container()
537 CHECK_GT(new_end, old_beg); in __sanitizer_annotate_double_ended_contiguous_container()
557 if (new_end > old_end) { in __sanitizer_annotate_double_ended_contiguous_container()
[all …]
/freebsd/sys/dev/pci/
H A Dpci_subr.c208 rman_res_t new_start, new_end; in pcib_host_res_alloc() local
233 new_end = ummin(end, rle->end); in pcib_host_res_alloc()
234 if (new_start > new_end || in pcib_host_res_alloc()
235 new_start + count - 1 > new_end || in pcib_host_res_alloc()
239 new_start, new_end, count, flags); in pcib_host_res_alloc()
H A Dpci_pci.c740 pcib_grow_subbus(struct pcib_secbus *bus, rman_res_t new_end) in pcib_grow_subbus() argument
746 KASSERT(new_end > old_end, ("attempt to shrink subbus")); in pcib_grow_subbus()
748 rman_get_start(bus->res), new_end); in pcib_grow_subbus()
768 rman_res_t start_free, end_free, new_end; in pcib_alloc_subbus() local
788 new_end = start_free + count - 1; in pcib_alloc_subbus()
794 if (new_end > end) in pcib_alloc_subbus()
802 new_end); in pcib_alloc_subbus()
804 if (pcib_grow_subbus(bus, new_end) == 0) in pcib_alloc_subbus()
/freebsd/contrib/kyua/utils/fs/
H A Ddirectory.cpp248 detail::directory_iterator::new_end(void) in new_end() function in detail::directory_iterator
359 return const_iterator::new_end(); in end()
H A Ddirectory.hpp77 static directory_iterator new_end(void);
/freebsd/sys/vm/
H A Dvm_page.c521 vm_paddr_t new_end; in vm_page_array_alloc() local
538 return (new_end); in vm_page_array_alloc()
588 new_end = end; in vm_page_startup()
591 new_end -= witness_size; in vm_page_startup()
592 mapped = pmap_map(&vaddr, new_end, new_end + witness_size, in vm_page_startup()
619 new_end -= vm_page_dump_size; in vm_page_startup()
699 if (new_end != high_avail) in vm_page_startup()
715 if (new_end == high_avail) in vm_page_startup()
717 new_end -= PAGE_SIZE; in vm_page_startup()
720 end = new_end; in vm_page_startup()
[all …]
H A Dvm_reserv.c1375 vm_paddr_t new_end; in vm_reserv_startup() local
1414 new_end = end - round_page(size); in vm_reserv_startup()
1415 vm_reserv_array = (void *)(uintptr_t)pmap_map(vaddr, new_end, end, in vm_reserv_startup()
1422 return (new_end); in vm_reserv_startup()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRangeMap.h59 auto new_end = std::max<BaseType>(GetRangeEnd(), rhs.GetRangeEnd()); in Union() local
61 size = new_end - base; in Union()
/freebsd/sys/kern/
H A Dkern_lockf.c1176 lf_set_end(struct lockf *state, struct lockf_entry *lock, off_t new_end, in lf_set_end() argument
1180 KASSERT(new_end <= lock->lf_end, ("can't increase lock")); in lf_set_end()
1181 lock->lf_end = new_end; in lf_set_end()