Home
last modified time | relevance | path

Searched refs:kAllocSize (Results 1 – 5 of 5) sorted by relevance

/external/compiler-rt/test/asan/TestCases/Linux/
Dnohugepage_test.cc66 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()
Dquarantine_size_mb.cc12 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/
Dhard_rss_limit_mb_test.cc23 const int kAllocSize = 1000; variable
31 char *x = new char[kAllocSize]; in main()
32 memset(x, 0, kAllocSize); in main()
Dsoft_rss_limit_mb_test.cc22 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/
Dasan_test.cc1245 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()