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

/vbox/src/VBox/VMM/VMMRZ/
H A DPGMRZDynMap.cpp2161 * @param pvHint The page that is now unused. This does not have to
2165 void pgmRZDynMapUnusedHint(PVMCPU pVCpu, void *pvHint, RT_SRC_POS_DECL) argument
2167 void pgmRZDynMapUnusedHint(PVMCPU pVCpu, void *pvHint)
2173 if (pvHint == NULL)
2175 pvHint = (void *)((uintptr_t)pvHint & ~(uintptr_t)PAGE_OFFSET_MASK);
2186 #define IS_MATCHING_ENTRY(pSet, iEntry, pvHint) \
2187 ( (pSet)->aEntries[(iEntry)].pvPage == (pvHint) \
2190 if ( iEntry >= 1 && IS_MATCHING_ENTRY(pSet, iEntry - 1, pvHint))
2192 else if (iEntry >= 2 && IS_MATCHING_ENTRY(pSet, iEntry - 2, pvHint))
[all...]

Completed in 39 milliseconds