Searched refs:kAllocSize (Results 1 – 5 of 5) sorted by relevance
/external/compiler-rt/test/asan/TestCases/Linux/ |
D | nohugepage_test.cc | 66 const int kAllocSize = 1 << 28; // 256Mb variable 78 x = (char *)mmap(0, kAllocSize, PROT_READ | PROT_WRITE, in main() 80 fprintf(stderr, "X: %p-%p\n", x, x + kAllocSize); in main() 84 for (size_t i = 0; i < kAllocSize; i += kTwoMb * kAsanShadowGranularity) in main() 89 for (size_t i = 0; i < kAllocSize; i += kTwoMb * kAsanShadowGranularity) in main() 94 __asan_poison_memory_region(x, kAllocSize); in main()
|
D | quarantine_size_mb.cc | 12 static const int kAllocSize = 1 << 20; variable 16 g = new char[kAllocSize]; in main() 17 memset(g, -1, kAllocSize); in main()
|
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/ |
D | hard_rss_limit_mb_test.cc | 23 const int kAllocSize = 1000; variable 31 char *x = new char[kAllocSize]; in main() 32 memset(x, 0, kAllocSize); in main()
|
D | soft_rss_limit_mb_test.cc | 22 static const int kAllocSize = 1 << 20; // Large enough to go via mmap. variable 36 allocs[j] = (char*)malloc(kAllocSize); in main() 38 memset(allocs[j], -1, kAllocSize); in main()
|
/external/compiler-rt/lib/asan/tests/ |
D | asan_test.cc | 1245 const size_t kAllocSize = (1 << 28) - 1024; in TEST() local 1248 void *x = malloc(kAllocSize); in TEST() 1249 memset(x, 0, kAllocSize); in TEST() 1250 total_size += kAllocSize; in TEST()
|