Searched defs:pagesize (Results 1 - 3 of 3) sorted by relevance

/vbox/src/recompiler/tests/
H A Dtest-mmap.c5 * this test program about the pagesize because getpagesize() will not reflect
6 * the -p choice. Simply pass one argument beeing the pagesize.
54 static unsigned int pagesize; variable
74 len = pagesize + (pagesize * i & 7);
86 /* Make sure we get pages aligned with the pagesize. The
106 memcpy (dummybuf, p1, pagesize);
107 memcpy (dummybuf, p2, pagesize);
108 memcpy (dummybuf, p3, pagesize);
109 memcpy (dummybuf, p4, pagesize);
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/
H A Dmmap.c112 int pagesize = getpagesize(); local
121 if ( (uintptr_t)addr & (pagesize-1) )
146 for ( i = 0; i < len; i += pagesize )
147 if ( mincore( (caddr_t)addr + i, pagesize, &vec ) != -1 )
263 size_t i, pagesize = getpagesize(); local
268 for (i = 0; i < size; i += pagesize)
269 if (mincore( (caddr_t)addr + i, pagesize, &vec ) != -1) break;
/vbox/src/libs/xpcom18a4/xpcom/build/
H A Dmalloc.c83 Equivalent to memalign(pagesize, n), where pagesize is the page
88 round up n to nearest pagesize.
1449 * MORECORE must allocate in multiples of pagesize. It will
1450 only be called with arguments that are multiples of pagesize.
1461 * MORECORE need not allocate in multiples of pagesize.
1462 Calls to MORECORE need not have args of multiples of pagesize.
1483 Negative arguments are always multiples of pagesize. MORECORE
2157 unsigned int pagesize; /* Cache malloc_getpagesize */
2240 av->pagesize
2150 unsigned int pagesize; /* Cache malloc_getpagesize */ member in struct:malloc_state
[all...]

Completed in 74 milliseconds