Searched refs:pbNormal (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/ValidationKit/utils/cpu/
H A Dcidet-app.cpp77 * There is a fence page before this as well as at pbNormal+cb. */
78 uint8_t *pbNormal; member in struct:CIDETAPPBUF
620 pBuf->pbNormal = (uint8_t *)RTMemPageAlloc(PAGE_SIZE + pBuf->cb + PAGE_SIZE);
621 if (pBuf->pbNormal)
623 memset(pBuf->pbNormal, 0x55, PAGE_SIZE);
624 memset(pBuf->pbNormal + PAGE_SIZE, 0xcc, pBuf->cb);
625 memset(pBuf->pbNormal + PAGE_SIZE + pBuf->cb, 0x77, PAGE_SIZE);
628 rc = RTMemProtect(pBuf->pbNormal, PAGE_SIZE, RTMEM_PROT_NONE); /* fence */
630 rc = RTMemProtect(pBuf->pbNormal + PAGE_SIZE + pBuf->cb, PAGE_SIZE, RTMEM_PROT_NONE); /* fence */
631 pBuf->pbNormal
[all...]

Completed in 33 milliseconds