Home
last modified time | relevance | path

Searched refs:PAGE_SIZE (Results 1 – 4 of 4) sorted by relevance

/dalvik/vm/alloc/
DHeapBitmap.c26 #ifndef PAGE_SIZE
27 #define PAGE_SIZE 4096 macro
30 (((size_t)(p) + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1))
DHeapSource.c35 #ifndef PAGE_SIZE
36 #define PAGE_SIZE 4096 macro
39 (((size_t)(p) + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1))
41 ((size_t)(p) & ~(PAGE_SIZE - 1))
1289 end = (void *)((size_t)end & ~(PAGE_SIZE - 1)); in releasePagesInRange()
DMarkSweep.c76 #ifndef PAGE_SIZE
77 #define PAGE_SIZE 4096 macro
80 (((size_t)(p) + (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1))
/dalvik/vm/alloc/TEST/HeapBitmapTest/
Dmain.c11 #define PAGE_SIZE 4096 macro
13 #define HEAP_SIZE (5 * PAGE_SIZE + 888)