Lines Matching defs:poff
41 * @param poff Where to store the offset into the HMA memory chunk.
43 DECLINLINE(PMMLOOKUPHYPER) mmHyperLookupR3(PVM pVM, RTR3PTR R3Ptr, uint32_t *poff)
56 *poff = off;
67 *poff = off;
101 * @param poff Where to store the offset into the HMA memory chunk.
103 DECLINLINE(PMMLOOKUPHYPER) mmHyperLookupR0(PVM pVM, RTR0PTR R0Ptr, uint32_t *poff)
118 *poff = off;
129 *poff = off;
163 * @param poff Where to store the offset into the HMA memory chunk.
165 DECLINLINE(PMMLOOKUPHYPER) mmHyperLookupRC(PVM pVM, RTRCPTR RCPtr, uint32_t *poff)
179 *poff = off;
185 *poff = 0; /* shut up gcc */
196 *poff = 0; /* shut up gcc */
208 * @param poff Where to store the offset into the HMA memory chunk.
210 DECLINLINE(PMMLOOKUPHYPER) mmHyperLookupCC(PVM pVM, void *pv, uint32_t *poff)
213 return mmHyperLookupRC(pVM, (RTRCPTR)pv, poff);
215 return mmHyperLookupR0(pVM, pv, poff);
217 return mmHyperLookupR3(pVM, pv, poff);