/bionic/tests/ |
malloc_test.cpp | 303 size_t pagesize = sysconf(_SC_PAGESIZE); local 306 ASSERT_TRUE((reinterpret_cast<uintptr_t>(ptr) & (pagesize-1)) == 0); 307 ASSERT_LE(pagesize, malloc_usable_size(ptr)); 316 size_t pagesize = sysconf(_SC_PAGESIZE); local 319 ASSERT_TRUE((reinterpret_cast<uintptr_t>(ptr) & (pagesize-1)) == 0);
|
/external/llvm/lib/Support/ |
MemoryBuffer.cpp | 279 int PageSize, 289 if (MapSize < 4 * 4096 || MapSize < (unsigned)PageSize) 316 if ((FileSize & (PageSize -1)) == 0) 334 static int PageSize = sys::Process::getPageSize(); 360 PageSize, IsVolatileSize)) {
|
/external/llvm/unittests/Support/ |
MemoryTest.cpp | 24 PageSize = sys::Process::getPageSize(); 56 size_t PageSize; 266 MemoryBlock Near((void*)(3*PageSize), 16); 314 MemoryBlock Near((void*)(4*PageSize), 0); 340 MemoryBlock Near((void*)(2*PageSize+5), 0);
|
/external/compiler-rt/lib/safestack/ |
safestack.cc | 73 static unsigned pageSize; 192 CHECK_EQ((guard & (pageSize - 1)), 0); 224 pageSize = sysconf(_SC_PAGESIZE);
|
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_posix_libcdep.cc | 259 uptr PageSize = GetPageSizeCached(); 260 uptr p = internal_mmap((void *)(fixed_addr & ~(PageSize - 1)), 261 RoundUpTo(size, PageSize), PROT_READ | PROT_WRITE,
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
msrdc.h | 261 STDMETHOD(GetPageSize)(THIS_ DWORD *pageSize) PURE; 275 #define ISimilarityTraitsMapping_GetPageSize(This,pageSize) (This)->lpVtbl->GetPageSize(This,pageSize)
|
psapi.h | 112 SIZE_T PageSize;
|
/dalvik/libdex/ |
SysUtil.h | 27 * sysconf(_SC_PAGESIZE) or some system-specific define (usually PAGESIZE
|
/external/kernel-headers/original/uapi/asm-arm/asm/ |
setup.h | 34 __u32 pagesize; member in struct:tag_core
|
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
OrcTargetSupport.h | 29 static const unsigned PageSize = 4096;
|
/external/strace/ |
mem.c | 40 static unsigned long pagesize; local 42 if (!pagesize) 43 pagesize = sysconf(_SC_PAGESIZE); 44 return pagesize;
|
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteGlobal.java | 66 return SystemProperties.getInt("debug.sqlite.pagesize", sDefaultPageSize);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/bits/ |
xopen_lim.h | 50 PAGESIZE
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/ |
xopen_lim.h | 50 PAGESIZE
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/ |
virtio_pci.h | 93 * x86 pagesize again. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/ |
xopen_lim.h | 50 PAGESIZE
|
/system/extras/libpagemap/ |
pm_kernel.c | 54 ker->pagesize = getpagesize();
|
pm_process.c | 125 firstpage = low / proc->ker->pagesize; 126 numpages = (high - low) / proc->ker->pagesize;
|
/toolchain/binutils/binutils-2.25/ld/ |
ldexp.h | 159 bfd_vma base, min_base, relro_end, end, pagesize, maxpagesize; member in struct:ldexp_control::__anon74693
|
/libcore/ojluni/src/main/java/java/nio/ |
MappedByteBuffer.java | 106 int ps = Bits.pageSize(); 171 int ps = Bits.pageSize();
|
/prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/ |
heap.py | 94 def __init__(self, size=mmap.PAGESIZE): 117 length = self._roundup(max(self._size, size), mmap.PAGESIZE)
|
/prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/ |
heap.py | 94 def __init__(self, size=mmap.PAGESIZE): 117 length = self._roundup(max(self._size, size), mmap.PAGESIZE)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/ |
heap.py | 94 def __init__(self, size=mmap.PAGESIZE): 117 length = self._roundup(max(self._size, size), mmap.PAGESIZE)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/ |
heap.py | 94 def __init__(self, size=mmap.PAGESIZE): 117 length = self._roundup(max(self._size, size), mmap.PAGESIZE)
|
/system/extras/libpagemap/include/pagemap/ |
pagemap.h | 83 int pagesize; member in struct:pm_kernel 115 #define pm_kernel_pagesize(ker) ((ker)->pagesize)
|