Home
last modified time | relevance | path

Searched refs:FIRST_32_SECOND_64 (Results 1 – 14 of 14) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_platform.h91 # define FIRST_32_SECOND_64(a, b) (b) macro
93 # define FIRST_32_SECOND_64(a, b) (a) macro
182 # define SANITIZER_MMAP_RANGE_SIZE FIRST_32_SECOND_64(1ULL << 32, 1ULL << 40)
184 # define SANITIZER_MMAP_RANGE_SIZE FIRST_32_SECOND_64(1ULL << 32, 1ULL << 47)
212 # define SANITIZER_POINTER_FORMAT_LENGTH FIRST_32_SECOND_64(8, 10)
214 # define SANITIZER_POINTER_FORMAT_LENGTH FIRST_32_SECOND_64(8, 12)
Dsanitizer_linux_libcdep.cc216 val = FIRST_32_SECOND_64(1104, 1696); in ThreadDescriptorSize()
218 val = FIRST_32_SECOND_64(1120, 1728); in ThreadDescriptorSize()
220 val = FIRST_32_SECOND_64(1136, 1728); in ThreadDescriptorSize()
222 val = FIRST_32_SECOND_64(1136, 1712); in ThreadDescriptorSize()
224 val = FIRST_32_SECOND_64(1168, 1776); in ThreadDescriptorSize()
226 val = FIRST_32_SECOND_64(1168, 2288); in ThreadDescriptorSize()
228 val = FIRST_32_SECOND_64(1168, 2304); in ThreadDescriptorSize()
230 val = FIRST_32_SECOND_64(1216, 2304); in ThreadDescriptorSize()
239 val = FIRST_32_SECOND_64(1152, 1776); in ThreadDescriptorSize()
253 val = FIRST_32_SECOND_64(1152, 1776); // valid for glibc 2.22 in ThreadDescriptorSize()
[all …]
Dsanitizer_lfstack.h64 static const int kCounterBits = FIRST_32_SECOND_64(32, 17);
Dsanitizer_coverage_libcdep.cc128 static const uptr kPcArrayMaxSize = FIRST_32_SECOND_64(
164 static const uptr kCcArrayMaxSize = FIRST_32_SECOND_64(1 << 18, 1 << 24);
176 static const uptr kTrEventArrayMaxSize = FIRST_32_SECOND_64(1 << 22, 1 << 30);
180 static const uptr kTrPcArrayMaxSize = FIRST_32_SECOND_64(1 << 22, 1 << 27);
Dsanitizer_platform_limits_posix.h81 SANITIZER_ANDROID ? FIRST_32_SECOND_64(104, 128) :
82 FIRST_32_SECOND_64(144, 216);
Dsanitizer_libc.cc269 CHECK_LE(size, 1ULL << FIRST_32_SECOND_64(30, 40)); // Sanity check. in mem_is_zero()
Dsanitizer_symbolizer_posix_libcdep.cc322 FIRST_32_SECOND_64(UINT32_MAX, UINT64_MAX);
Dsanitizer_allocator.h1246 static const int kMaxNumChunks = 1 << FIRST_32_SECOND_64(15, 18);
/external/compiler-rt/lib/interception/
Dinterception_win.cc137 static const int kAddressLength = FIRST_32_SECOND_64(4, 8);
142 FIRST_32_SECOND_64(kJumpInstructionLength, kIndirectJumpInstructionLength);
625 WriteJumpInstruction(old_func, FIRST_32_SECOND_64(new_func, trampoline)); in OverrideFunctionWithRedirectJump()
/external/compiler-rt/lib/asan/
Dasan_fake_stack.cc47 static uptr kMaxStackSizeLog = FIRST_32_SECOND_64(24, 28); in Create()
Dasan_allocator.cc226 FIRST_32_SECOND_64(3UL << 30, 1ULL << 40);
228 FIRST_32_SECOND_64(1 << 18, 1 << 20);
Dasan_poisoning.cc346 FIRST_32_SECOND_64(1UL << 30, 1ULL << 34)); // Sanity check. in __sanitizer_annotate_contiguous_container()
/external/compiler-rt/lib/interception/tests/
Dinterception_win_test.cc227 padding = FIRST_32_SECOND_64(5, 6); in LoadActiveCode()
/external/compiler-rt/lib/sanitizer_common/tests/
Dsanitizer_allocator_test.cc59 static const uptr kRegionSizeLog = FIRST_32_SECOND_64(20, 24);