HomeSort by relevance Sort by last modified time
    Searched refs:pgsize (Results 1 - 2 of 2) sorted by null

  /bionic/libc/stdlib/
atexit.c 65 int pgsize = getpagesize(); local
68 if (pgsize < (int)sizeof(*p))
75 else if (mprotect(p, pgsize, PROT_READ | PROT_WRITE))
79 p = mmap(NULL, pgsize, PROT_READ | PROT_WRITE,
88 p->max = (pgsize - ((char *)&p->fns[0] - (char *)p)) /
99 if (mprotect(p, pgsize, PROT_READ))
128 int n, pgsize = getpagesize(); local
148 if (mprotect(p, pgsize, PROT_READ | PROT_WRITE) == 0) {
150 mprotect(p, pgsize, PROT_READ);
177 munmap(q, pgsize);
190 int pgsize = getpagesize(); local
    [all...]
  /external/blktrace/btreplay/
btreplay.c 150 static size_t pgsize; // System Page size variable
314 for (i = 0; i < bsize; i += pgsize)
327 if (posix_memalign(&buf, pgsize, nbytes)) {
    [all...]

Completed in 5562 milliseconds