/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_fuchsia.cpp | 115 uptr GetPageSize() { return _zx_system_get_page_size(); } in GetPageSize() function 188 size = RoundUpTo(size, GetPageSize()); in DoAnonymousMmapOrDie() 232 init_size = RoundUpTo(init_size, GetPageSize()); in Init() 253 map_size = RoundUpTo(map_size, GetPageSize()); in DoMmapFixedOrDie() 295 size = RoundUpTo(size, GetPageSize()); in UnmapOrDieVmar() 354 CHECK_GE(size, GetPageSize()); in MmapAlignedOrDieOnFatalError() 420 uptr beg_aligned = RoundUpTo(beg, GetPageSize()); in ReleaseMemoryPagesToOS() 421 uptr end_aligned = RoundDownTo(end, GetPageSize()); in ReleaseMemoryPagesToOS()
|
H A D | sanitizer_common.h | 65 inline uptr GetPageSize() { return 4096; } in GetPageSize() function 68 uptr GetPageSize(); 72 PageSizeCached = GetPageSize(); in GetPageSizeCached()
|
H A D | sanitizer_posix.cpp | 41 return GetPageSize(); in GetMmapGranularity()
|
H A D | sanitizer_win.cpp | 70 uptr GetPageSize() { in GetPageSize() function
|
H A D | sanitizer_mac.cpp | 496 uptr GetPageSize() { in GetPageSize() function
|
H A D | sanitizer_linux.cpp | 1209 uptr GetPageSize() { in GetPageSize() function
|
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
H A D | asan_fuchsia.cpp | 79 bottom = RoundDownTo(local_stack, GetPageSize()); in PlatformUnpoisonStacks() 85 bottom = RoundDownTo(local_stack, GetPageSize()); in PlatformUnpoisonStacks() 86 top = bottom + GetPageSize(); in PlatformUnpoisonStacks()
|
H A D | asan_interceptors.cpp | 158 DCHECK(IsAligned(beg, GetPageSize())); 159 SIZE_T rounded_length = RoundUpTo(length, GetPageSize()); 162 PoisonShadow(beg, RoundUpTo(length, GetPageSize()), 0); 172 if (length && IsAligned(beg, GetPageSize())) { in munmap_interceptor() 173 SIZE_T rounded_length = RoundUpTo(length, GetPageSize()); in munmap_interceptor()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_interceptors.cpp | 184 SIZE_T rounded_length = RoundUpTo(length, GetPageSize()); in mmap_interceptor() 201 DCHECK(IsAligned(beg, GetPageSize())); in mmap_interceptor() 220 if (length && IsAligned(beg, GetPageSize())) { in munmap_interceptor() 221 SIZE_T rounded_length = RoundUpTo(length, GetPageSize()); in munmap_interceptor()
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBMemoryRegionInfo.cpp | 157 int SBMemoryRegionInfo::GetPageSize() { in GetPageSize() function in SBMemoryRegionInfo 160 return m_opaque_up->GetPageSize(); in GetPageSize()
|
/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBMemoryRegionInfoDocstrings.i | 31 ) lldb::SBMemoryRegionInfo::GetPageSize();
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/posix/ |
H A D | HostInfoPosix.h | 24 static size_t GetPageSize();
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBMemoryRegionInfo.h | 112 int GetPageSize();
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | ThreadPlanCallUserExpression.cpp | 80 function_stack_bottom = function_stack_pointer - HostInfo::GetPageSize(); in MischiefManaged()
|
H A D | Process.cpp | 6488 const addr_t page_size = region.GetPageSize(); in AddDirtyPages()
|
/freebsd/contrib/llvm-project/lldb/source/Host/posix/ |
H A D | HostInfoPosix.cpp | 30 size_t HostInfoPosix::GetPageSize() { return ::getpagesize(); } in GetPageSize() function in HostInfoPosix
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | MemoryRegionInfo.h | 117 int GetPageSize() const { return m_pagesize; } in GetPageSize() function
|
/freebsd/contrib/llvm-project/lldb/source/Expression/ |
H A D | LLVMUserExpression.cpp | 168 function_stack_bottom = function_stack_pointer - HostInfo::GetPageSize(); in DoExecute()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
H A D | msan_interceptors.cpp | 1065 SIZE_T rounded_length = RoundUpTo(length, GetPageSize()); in mmap_interceptor()
|
/freebsd/lib/clang/liblldb/ |
H A D | LLDBWrapLua.cpp | 37983 result = (int)(arg1)->GetPageSize(); in _wrap_SBMemoryRegionInfo_GetPageSize()
|