Home
last modified time | relevance | path

Searched refs:kPageSize (Results 1 – 3 of 3) sorted by relevance

/bionic/linker/tests/
Dlinker_block_allocator_test.cpp48 static size_t kPageSize = sysconf(_SC_PAGE_SIZE); variable
96 size_t n = kPageSize/sizeof(test_struct_larger) + 1 - 2; in TEST()
111 size_t n = kPageSize/sizeof(test_struct_larger) - 1; in protect_all()
Dlinker_memory_allocator_test.cpp50 static size_t kPageSize = sysconf(_SC_PAGE_SIZE); variable
156 reinterpret_cast<uintptr_t>(ptr1)/kPageSize != reinterpret_cast<uintptr_t>(ptr2)/kPageSize); in TEST()
177 size_t n = kPageSize / sizeof(test_struct_large) + 1 - 2; in TEST()
/bionic/tools/relocation_packer/src/
Delf_file.cc40 static const size_t kPageSize = 4096; variable
46 static const size_t kPreserveAlignment = kPageSize;
313 if (program_header->p_align > kPageSize) { in ClampLoadSegmentAlignment()
314 program_header->p_align = kPageSize; in ClampLoadSegmentAlignment()
334 if (program_header->p_align == kPageSize) { in RestoreLoadSegmentAlignment()