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

/vbox/src/VBox/Devices/USB/testcase/
H A DtstOhciRegisterAccess.cpp73 static bool TestOhciWrites(RTVPTRUNION uPtr) argument
97 uPtrReg.pu32 = &uPtr.pu32[iReg];
245 static bool TestOhciReadOnly(RTVPTRUNION uPtr) argument
268 uPtrReg.pu32 = &uPtr.pu32[iReg];
375 static bool TestOhciReads(RTVPTRUNION uPtr) argument
384 for (uint32_t iReg = 0; iReg < cMaxReg; iReg++, uPtr.pu32++)
388 uint32_t uInitialValue = *uPtr.pu32;
392 LogRel(("TestOhciReads: %p iReg=%2d %20s = %08RX32\n", uPtr.pv, iReg, g_apszRegNms[iReg], uInitialValue));
401 uInitialValue = *uPtr.pu32;
406 u32A = *uPtr
561 RTVPTRUNION uPtr; local
[all...]
/vbox/src/VBox/HostDrivers/Support/testcase/
H A DtstNtQueryStuff.cpp286 DWORD_PTR uPtr = ~(DWORD_PTR)0; local
290 &uPtr, sizeof(uPtr), &cbActual);
293 RTTestIPrintf(RTTESTLVL_ALWAYS, "ProcessDebugPort: %p\n", uPtr);
296 uPtr = ~(DWORD_PTR)0;
300 &uPtr, sizeof(uPtr), &cbActual);
302 RTTestIPrintf(RTTESTLVL_ALWAYS, "ProcessDebugObjectHandle: %p\n", uPtr);
304 RTTestIPrintf(RTTESTLVL_ALWAYS, "ProcessDebugObjectHandle: rcNt=%#x (STATUS_PORT_NOT_SET)\n", uPtr);
309 uPtr
[all...]
/vbox/src/VBox/Runtime/r3/
H A Dmemsafer-r3.cpp139 uintptr_t uPtr = (uintptr_t)pvUser; local
140 uPtr ^= g_uMemSaferPtrScramblerXor;
142 uPtr = ASMRotateRightU64(uPtr, g_cMemSaferPtrScramblerRotate);
144 uPtr = ASMRotateRightU32(uPtr, g_cMemSaferPtrScramblerRotate);
148 return (void *)uPtr;
/vbox/src/VBox/Devices/Network/testcase/
H A DtstIntNetR0.cpp167 INTNETR3DECL(int) SUPR0MemFree(PSUPDRVSESSION pSession, RTHCUINTPTR uPtr) argument
170 RTTestGuardedFree(g_hTest, (void *)uPtr);
/vbox/src/VBox/VMM/VMMAll/
H A DIEMAllCImpl.cpp.h6359 * @param uPtr Where to store the state.
6362 static void iemCImplCommonFpuStoreEnv(PIEMCPU pIemCpu, IEMMODE enmEffOpSize, RTPTRUNION uPtr, PCCPUMCTX pCtx) argument
6367 uPtr.pu16[0] = pSrcX87->FCW;
6368 uPtr.pu16[1] = pSrcX87->FSW;
6369 uPtr.pu16[2] = iemFpuCalcFullFtw(pSrcX87);
6377 uPtr.pu16[3] = (uint16_t)pSrcX87->FPUIP;
6378 uPtr.pu16[4] = ((pSrcX87->FPUIP >> 4) & UINT16_C(0xf000)) | pSrcX87->FOP;
6379 uPtr.pu16[5] = (uint16_t)pSrcX87->FPUDP;
6380 uPtr.pu16[6] = (pSrcX87->FPUDP >> 4) & UINT16_C(0xf000);
6384 uPtr
6421 iemCImplCommonFpuRestoreEnv(PIEMCPU pIemCpu, IEMMODE enmEffOpSize, RTCPTRUNION uPtr, PCPUMCTX pCtx) argument
6496 RTPTRUNION uPtr; local
6523 RTPTRUNION uPtr; local
6574 RTCPTRUNION uPtr; local
6601 RTCPTRUNION uPtr; local
[all...]
/vbox/include/VBox/
H A DVBoxTpG.h385 uintptr_t uPtr; member in union:VTGOBJHDR::__anon84
/vbox/src/VBox/HostDrivers/Support/
H A DSUPDrv.cpp106 static int supdrvMemRelease(PSUPDRVSESSION pSession, RTHCUINTPTR uPtr, SUPDRVMEMREFTYPE eType);
3083 * @param uPtr Pointer to the memory (ring-3 or ring-0).
3085 SUPR0DECL(int) SUPR0ContFree(PSUPDRVSESSION pSession, RTHCUINTPTR uPtr) argument
3087 LogFlow(("SUPR0ContFree: pSession=%p uPtr=%p\n", pSession, (void *)uPtr));
3089 return supdrvMemRelease(pSession, uPtr, MEMREF_TYPE_CONT);
3171 * @param uPtr Pointer to the memory (ring-3 or ring-0).
3173 SUPR0DECL(int) SUPR0LowFree(PSUPDRVSESSION pSession, RTHCUINTPTR uPtr) argument
3175 LogFlow(("SUPR0LowFree: pSession=%p uPtr=%p\n", pSession, (void *)uPtr));
3250 SUPR0MemGetPhys(PSUPDRVSESSION pSession, RTHCUINTPTR uPtr, PSUPPAGE paPages) argument
3307 SUPR0MemFree(PSUPDRVSESSION pSession, RTHCUINTPTR uPtr) argument
4275 supdrvMemRelease(PSUPDRVSESSION pSession, RTHCUINTPTR uPtr, SUPDRVMEMREFTYPE eType) argument
[all...]
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPHardenedVerifyProcess-win.cpp326 static NTSTATUS supHardNtVpReadMem(HANDLE hProcess, uintptr_t uPtr, void *pvBuf, size_t cbRead) argument
331 int rc = RTR0MemUserCopyFrom(pvBuf, uPtr, cbRead);
337 NTSTATUS rcNt = NtReadVirtualMemory(hProcess, (PVOID)uPtr, pvBuf, cbRead, &cbIgn);
1076 uintptr_t uPtr = ~(uintptr_t)0; local
1079 &uPtr, sizeof(uPtr), &cbIgn);
1083 if (uPtr != 0)
1085 "Debugger attached (%#zx)", uPtr);

Completed in 85 milliseconds