Home | History | Annotate | Download | only in linux

Lines Matching defs:PAGE

19 static int PAGE;
38 // set up working area so expansion limit is 20*PAGE
43 // A suitable attempted fixed dst is workingarea + 150*PAGE.
48 workingarea = mmap(0, 200*PAGE, PROT_NONE,
51 try_dst = workingarea + 150*PAGE;
52 unmap_and_check(workingarea, 200*PAGE);
60 unmap_and_check( workingarea, 200*PAGE);
63 mapanon_fixed( workingarea + 0*PAGE, 9*PAGE);
66 mapanon_fixed( workingarea + 10*PAGE, 20*PAGE );
69 mapanon_fixed( workingarea + 40*PAGE, 60*PAGE );
71 return workingarea + 10*PAGE;
79 r = mprotect( workingarea + i * PAGE, PAGE, PROT_NONE );
118 PAGE = sysconf(_SC_PAGESIZE);
127 int newsize = newsizes[nsi] * PAGE;
146 syscall(__NR_mremap, src, 20*PAGE, newsize, flags, dst, 0 );