Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/compiler-rt/lib/asan/
Dasan_poisoning.cpp375 uptr &new_end) { in FixUnalignedStorage() argument
383 if ((((old_end != new_end) && Max(old_end, new_end) > end_down) || in FixUnalignedStorage()
389 new_end = Min(end_down, new_end); in FixUnalignedStorage()
398 if ((new_beg == new_end || new_beg >= beg_up) && old_beg != old_end && in FixUnalignedStorage()
406 new_end = Max(beg_up, new_end); in FixUnalignedStorage()
422 uptr new_end = reinterpret_cast<uptr>(new_mid_p); in __sanitizer_annotate_contiguous_container() local
426 if (!(storage_beg <= old_end && storage_beg <= new_end && in __sanitizer_annotate_contiguous_container()
427 old_end <= storage_end && new_end <= storage_end)) { in __sanitizer_annotate_contiguous_container()
430 old_end, new_end, &stack); in __sanitizer_annotate_contiguous_container()
435 if (old_end == new_end) in __sanitizer_annotate_contiguous_container()
[all …]
/openbsd/src/regress/lib/libcrypto/bio/
Dbio_chain.c316 BIO *new_start, *new_end; in link_chains_at() local
338 new_end = B[nitems(B) - 1]; in link_chains_at()
400 if (!check_chain(new_start, new_end, new_len, i, j, fn, "new chain")) in link_chains_at()
/openbsd/src/gnu/usr.bin/binutils-2.17/bfd/
Dbout.c1082 bfd_vma new_end; in aligncode() local
1094 new_end = ((dot - shrink + size) & ~size); in aligncode()
1099 shrink_delta = (old_end - new_end) - shrink; in aligncode()
Delf32-xtensa.c9177 bfd_vma new_end = offset_with_removed_text in relax_section_symbols() local
9179 new_size = new_end - new_address; in relax_section_symbols()
9207 bfd_vma new_end = offset_with_removed_text in relax_section_symbols() local
9210 new_size = new_end - new_address; in relax_section_symbols()
/openbsd/src/gnu/usr.bin/binutils/bfd/
Dbout.c1190 bfd_vma new_end; local
1202 new_end = ((dot - shrink + size) & ~size);
1207 shrink_delta = (old_end - new_end) - shrink;
/openbsd/src/gnu/llvm/lldb/include/lldb/Utility/
DRangeMap.h59 auto new_end = std::max<BaseType>(GetRangeEnd(), rhs.GetRangeEnd()); in Union() local
61 size = new_end - base; in Union()