| /freebsd/contrib/bsddialog/lib/ |
| H A D | slider.c | 85 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 D | asan_poisoning.cpp | 439 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 D | pci_subr.c | 207 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 D | pci_pci.c | 742 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 D | directory.cpp | 242 detail::directory_iterator::new_end(void) in new_end() function in detail::directory_iterator 353 return const_iterator::new_end(); in end()
|
| H A D | directory.hpp | 77 static directory_iterator new_end(void);
|
| /freebsd/sys/vm/ |
| H A D | vm_page.c | 542 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 D | vm_reserv.c | 1434 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 D | RangeMap.h | 59 auto new_end = std::max<BaseType>(GetRangeEnd(), rhs.GetRangeEnd()); in Union() local 61 size = new_end - base; in Union()
|
| /freebsd/sys/kern/ |
| H A D | kern_lockf.c | 1176 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()
|