/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_allocator_secondary.h | 101 CHECK(IsAligned(map_beg, page_size_)); in Allocate() 107 CHECK(IsAligned(res, alignment)); in Allocate() 108 CHECK(IsAligned(res, page_size_)); in Allocate() 175 if (!IsAligned(reinterpret_cast<uptr>(p), page_size_)) { in GetMetaData() 177 CHECK(IsAligned(reinterpret_cast<uptr>(p), page_size_)); in GetMetaData() 297 CHECK(IsAligned(p, page_size_)); in GetHeader() 305 CHECK(IsAligned((uptr)h, page_size_)); in GetUser()
|
H A D | sanitizer_stacktrace_sparc.cpp | 49 while (next_bp != bp && IsAligned(next_bp, sizeof(uhwptr)) && i++ < 8) { in UnwindFast() 59 while (IsValidFrame(bp, stack_top, bottom) && IsAligned(bp, sizeof(uhwptr)) && in UnwindFast()
|
H A D | sanitizer_stacktrace.cpp | 111 IsAligned((uptr)frame, sizeof(*frame)) && in UnwindFast() 119 !IsAligned((uptr)caller_frame, sizeof(uhwptr))) in UnwindFast()
|
H A D | sanitizer_win.cpp | 195 if (IsAligned(mapped_addr, alignment)) in MmapAlignedOrDieOnFatalError() 205 (mapped_addr == 0 || !IsAligned(mapped_addr, alignment)); in MmapAlignedOrDieOnFatalError() 397 CHECK(IsAligned(shadow_start, alignment)); in MapDynamicShadow()
|
H A D | sanitizer_posix.cpp | 97 if (!IsAligned(res, alignment)) { in MmapAlignedOrDieOnFatalError()
|
H A D | sanitizer_allocator_primary32.h | 306 CHECK(IsAligned(res, kRegionSize)); in AllocateRegion()
|
/freebsd/contrib/llvm-project/clang/lib/Format/ |
H A D | ContinuationIndenter.h | 201 NestedBlockIndent(Indent), IsAligned(false), in ParenState() 267 bool IsAligned : 1; member 364 if (IsAligned != Other.IsAligned) 365 return IsAligned;
|
H A D | WhitespaceManager.h | 53 unsigned StartOfTokenColumn, bool IsAligned = false, 113 bool IsAligned, bool ContinuesPPDirective, bool IsInsideToken); 129 bool IsAligned; member 358 bool IsAligned);
|
H A D | WhitespaceManager.cpp | 40 StringRef CurrentLinePrefix, bool IsAligned, in Change() argument 46 CurrentLinePrefix(CurrentLinePrefix), IsAligned(IsAligned), in Change() 56 bool IsAligned, bool InPPDirective) { in replaceWhitespace() argument 62 IsAligned, InPPDirective && !Tok.IsFirst, in replaceWhitespace() 1684 C.IsAligned); in generateChanges() 1737 bool IsAligned) { in appendIndentText() argument 1778 IsAligned ? IndentLevel * Style.IndentWidth : Spaces; in appendIndentText()
|
H A D | ContinuationIndenter.cpp | 836 CurrentState.IsAligned = true; in addTokenOnCurrentLine() 1081 CurrentState.IsAligned, ContinuePPDirective); in addTokenOnNewLine() 1746 NewParenState.IsAligned = true; in moveStatePastFakeLParens()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_fuchsia.cpp | 159 CHECK(IsAligned(p, kShadowAlignment)); in TagMemoryAligned() 160 CHECK(IsAligned(size, kShadowAlignment)); in TagMemoryAligned()
|
H A D | hwasan_interceptors.cpp | 201 DCHECK(IsAligned(beg, GetPageSize())); in mmap_interceptor() 220 if (length && IsAligned(beg, GetPageSize())) { in munmap_interceptor()
|
H A D | hwasan_linux.cpp | 511 CHECK(IsAligned(p, kShadowAlignment)); in TagMemoryAligned() 512 CHECK(IsAligned(size, kShadowAlignment)); in TagMemoryAligned()
|
H A D | hwasan_thread_list.h | 201 CHECK(IsAligned(free_space_, align)); in AllocThread()
|
H A D | hwasan_checks.h | 130 DCHECK(IsAligned(ptr, kShadowAlignment)); in ShortTagSize()
|
H A D | hwasan_allocator.cpp | 528 CHECK(IsAligned((uptr)ptr, alignment)); in hwasan_posix_memalign()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/safestack/ |
H A D | safestack_util.h | 36 inline constexpr bool IsAligned(size_t a, size_t alignment) { in IsAligned() function
|
H A D | safestack_platform.h | 154 SFS_CHECK(IsAligned(offset, 4096)); in Mmap()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/memprof/ |
H A D | memprof_allocator.cpp | 435 CHECK(IsAligned(needed_size, min_alignment)); in Allocate() 468 if (!IsAligned(user_beg, alignment)) in Allocate() 745 CHECK(IsAligned((uptr)ptr, alignment)); in memprof_posix_memalign()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_interceptors.cpp | 158 DCHECK(IsAligned(beg, GetPageSize())); 172 if (length && IsAligned(beg, GetPageSize())) { in munmap_interceptor()
|
H A D | asan_allocator.cpp | 565 CHECK(IsAligned(needed_size, min_alignment)); in Allocate() 598 if (!IsAligned(user_beg, alignment)) in Allocate() 1093 CHECK(IsAligned((uptr)ptr, alignment)); in asan_posix_memalign()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/dfsan/ |
H A D | dfsan_allocator.cpp | 293 CHECK(IsAligned((uptr)ptr, alignment)); in dfsan_posix_memalign()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/ |
H A D | lsan_allocator.cpp | 190 CHECK(IsAligned((uptr)ptr, alignment)); in lsan_posix_memalign()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
H A D | msan_allocator.cpp | 412 CHECK(IsAligned((uptr)ptr, alignment)); in msan_posix_memalign()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_mman.cpp | 334 CHECK(IsAligned((uptr)ptr, align)); in user_posix_memalign()
|