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

/vbox/src/VBox/VMM/VMMR3/
H A DPGM.cpp2837 * @param uShwType The shadow paging mode type.
2840 DECLINLINE(unsigned) pgmModeDataIndex(unsigned uShwType, unsigned uGstType) argument
2842 Assert(uShwType >= PGM_TYPE_32BIT && uShwType <= PGM_TYPE_MAX);
2844 return (uShwType - PGM_TYPE_32BIT) * (PGM_TYPE_AMD64 - PGM_TYPE_REAL + 1)
2900 pModeData->uShwType = PGM_TYPE_32BIT;
2907 pModeData->uShwType = PGM_TYPE_32BIT;
2914 pModeData->uShwType = PGM_TYPE_32BIT;
2921 pModeData->uShwType = PGM_TYPE_PAE;
2928 pModeData->uShwType
[all...]
/vbox/src/VBox/VMM/include/
H A DPGMInternal.h218 * @param uShwType PGM_TYPE_*
221 #define PGM_WITH_PAGING(uGstType, uShwType) \
223 && (uShwType) != PGM_TYPE_NESTED \
224 && (uShwType) != PGM_TYPE_EPT)
228 * @param uShwType PGM_TYPE_*
231 #define PGM_WITH_NX(uGstType, uShwType) \
233 && (uShwType) != PGM_TYPE_NESTED \
234 && (uShwType) != PGM_TYPE_EPT)
2914 uint32_t uShwType; member in struct:PGMMODEDATA

Completed in 57 milliseconds