Home
last modified time | relevance | path

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

/freebsd/contrib/bsddialog/lib/
H A Dslider.c85 signed long new_start, new_end; in handlesliderctl() local
91 new_end = old_end; in handlesliderctl()
97 new_end = old_end + step; in handlesliderctl()
103 if (crashes(x, y, new_start, new_end)) { in handlesliderctl()
105 new_end = new_start + size - 1; in handlesliderctl()
112 new_end = old_end - step; in handlesliderctl()
118 if (crashes(x, y, new_start, new_end)) { in handlesliderctl()
119 new_end = x - 1; in handlesliderctl()
120 new_start = new_end - size + 1; in handlesliderctl()
134 if (crashes(x, y, new_start, new_end)) { in handlesliderctl()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_poisoning.cpp439 uptr &new_end) { in FixUnalignedStorage() argument
447 if ((((old_end != new_end) && Max(old_end, new_end) > end_down) || in FixUnalignedStorage()
453 new_end = Min(end_down, new_end); in FixUnalignedStorage()
462 if ((new_beg == new_end || new_beg >= beg_up) && old_beg != old_end && in FixUnalignedStorage()
470 new_end = Max(beg_up, new_end); in FixUnalignedStorage()
486 uptr new_end = reinterpret_cast<uptr>(new_mid_p); in __sanitizer_annotate_contiguous_container() local
490 if (!(storage_beg <= old_end && storage_beg <= new_end && in __sanitizer_annotate_contiguous_container()
491 old_end <= storage_end && new_end <= storage_end)) { in __sanitizer_annotate_contiguous_container()
494 old_end, new_end, &stack); in __sanitizer_annotate_contiguous_container()
499 if (old_end == new_end) in __sanitizer_annotate_contiguous_container()
[all …]
/freebsd/sys/dev/pci/
H A Dpci_subr.c207 rman_res_t new_start, new_end; in pcib_host_res_alloc() local
232 new_end = ummin(end, rle->end); in pcib_host_res_alloc()
233 if (new_start > new_end || in pcib_host_res_alloc()
234 new_start + count - 1 > new_end || in pcib_host_res_alloc()
238 new_start, new_end, count, flags); in pcib_host_res_alloc()
H A Dpci_pci.c742 pcib_grow_subbus(struct pcib_secbus *bus, rman_res_t new_end) in pcib_grow_subbus() argument
748 KASSERT(new_end > old_end, ("attempt to shrink subbus")); in pcib_grow_subbus()
750 rman_get_start(bus->res), new_end); in pcib_grow_subbus()
770 rman_res_t start_free, end_free, new_end; in pcib_alloc_subbus() local
790 new_end = start_free + count - 1; in pcib_alloc_subbus()
796 if (new_end > end) in pcib_alloc_subbus()
804 new_end); in pcib_alloc_subbus()
806 if (pcib_grow_subbus(bus, new_end) == 0) in pcib_alloc_subbus()
/freebsd/contrib/kyua/utils/fs/
H A Ddirectory.cpp242 detail::directory_iterator::new_end(void) in new_end() function in detail::directory_iterator
353 return const_iterator::new_end(); in end()
H A Ddirectory.hpp77 static directory_iterator new_end(void);
/freebsd/sys/vm/
H A Dvm_page.c542 vm_paddr_t new_end; in vm_page_array_alloc() local
554 new_end = trunc_page(end - page_range * sizeof(struct vm_page)); in vm_page_array_alloc()
555 vm_page_array = (vm_page_t)pmap_map(vaddr, new_end, end, in vm_page_array_alloc()
559 return (new_end); in vm_page_array_alloc()
578 vm_paddr_t end, high_avail, low_avail, new_end, size; in vm_page_startup() local
611 new_end = end; in vm_page_startup()
614 new_end -= witness_size; in vm_page_startup()
615 mapped = pmap_map(&vaddr, new_end, new_end + witness_size, in vm_page_startup()
642 new_end -= vm_page_dump_size; in vm_page_startup()
643 vm_page_dump = pmap_map(&vaddr, new_end, in vm_page_startup()
[all …]
H A Dvm_reserv.c1434 vm_paddr_t new_end; in vm_reserv_startup() local
1473 new_end = end - round_page(size); in vm_reserv_startup()
1474 vm_reserv_array = pmap_map(vaddr, new_end, end, in vm_reserv_startup()
1481 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()