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

/vbox/src/VBox/Runtime/r3/posix/
H A Drtmempage-exec-mmap-heap-posix.cpp59 #define RTMEMPAGEPOSIX_BLOCK_SIZE _2M macro
60 AssertCompile(RTMEMPAGEPOSIX_BLOCK_SIZE == (RTMEMPAGEPOSIX_BLOCK_SIZE / PAGE_SIZE) * PAGE_SIZE);
62 #define RTMEMPAGEPOSIX_BLOCK_PAGE_COUNT (RTMEMPAGEPOSIX_BLOCK_SIZE / PAGE_SIZE)
404 pvPages = mmap(NULL, RTMEMPAGEPOSIX_BLOCK_SIZE,
424 munmap(pvPages, RTMEMPAGEPOSIX_BLOCK_SIZE);
431 pBlock->Core.KeyLast = (uint8_t *)pvPages + RTMEMPAGEPOSIX_BLOCK_SIZE - 1;
470 AssertMsgReturn(cPages < RTMEMPAGEPOSIX_BLOCK_SIZE, ("%#zx\n", cPages), VERR_OUT_OF_RANGE);
589 munmap(pBlock->Core.Key, RTMEMPAGEPOSIX_BLOCK_SIZE);

Completed in 35 milliseconds