Searched refs:pu64 (Results 26 - 40 of 40) sorted by relevance

12

/vbox/src/VBox/VMM/VMMR3/
H A DCFGM.cpp694 * @param pu64 Where to store the integer value.
696 VMMR3DECL(int) CFGMR3QueryInteger(PCFGMNODE pNode, const char *pszName, uint64_t *pu64) argument
703 *pu64 = pLeaf->Value.Integer.u64;
717 * @param pu64 Where to store the integer value. This is set to the default on failure.
720 VMMR3DECL(int) CFGMR3QueryIntegerDef(PCFGMNODE pNode, const char *pszName, uint64_t *pu64, uint64_t u64Def) argument
727 *pu64 = pLeaf->Value.Integer.u64;
734 *pu64 = u64Def;
2344 * @param pu64 Where to store the integer value.
2346 VMMR3DECL(int) CFGMR3QueryU64(PCFGMNODE pNode, const char *pszName, uint64_t *pu64) argument
2348 return CFGMR3QueryInteger(pNode, pszName, pu64);
2361 CFGMR3QueryU64Def(PCFGMNODE pNode, const char *pszName, uint64_t *pu64, uint64_t u64Def) argument
[all...]
H A DSTAM.cpp1753 ASMAtomicXchgU64(pDesc->u.pu64, 0);
1924 if (pDesc->enmVisibility == STAMVISIBILITY_USED && *pDesc->u.pu64 == 0)
1926 stamR3SnapshotPrintf(pThis, "<U64 val=\"%llu\"", *pDesc->u.pu64);
1931 if (pDesc->enmVisibility == STAMVISIBILITY_USED && *pDesc->u.pu64 == 0)
1933 stamR3SnapshotPrintf(pThis, "<X64 val=\"%#llx\"", *pDesc->u.pu64);
2301 if (pDesc->enmVisibility == STAMVISIBILITY_USED && *pDesc->u.pu64 == 0)
2303 pArgs->pfnPrintf(pArgs, "%-32s %8llu %s\n", pDesc->pszName, *pDesc->u.pu64, STAMR3GetUnit(pDesc->enmUnit));
2308 if (pDesc->enmVisibility == STAMVISIBILITY_USED && *pDesc->u.pu64 == 0)
2310 pArgs->pfnPrintf(pArgs, "%-32s %8llx %s\n", pDesc->pszName, *pDesc->u.pu64, STAMR3GetUnit(pDesc->enmUnit));
H A DDBGFReg.cpp980 * @param pu64 Where to store the register value.
982 VMMR3DECL(int) DBGFR3RegCpuQueryU64(PUVM pUVM, VMCPUID idCpu, DBGFREG enmReg, uint64_t *pu64)
987 *pu64 = Value.u64;
989 *pu64 = 0;
1613 * @param pu64 Where to store the register value.
1615 VMMR3DECL(int) DBGFR3RegNmQueryU64(PUVM pUVM, VMCPUID idDefCpu, const char *pszReg, uint64_t *pu64)
1620 *pu64 = Value.u64;
1622 *pu64 = 0;
H A DSSM.cpp7035 * @param pu64 Where to store the item.
7037 VMMR3DECL(int) SSMR3GetU64(PSSMHANDLE pSSM, uint64_t *pu64)
7041 return ssmR3DataRead(pSSM, pu64, sizeof(*pu64));
/vbox/src/VBox/VMM/VMMAll/
H A DIEMAll.cpp1360 * @param pu64 Where to return the opcode qword.
1362 DECL_NO_INLINE(static, VBOXSTRICTRC) iemOpcodeGetNextS8SxU64Slow(PIEMCPU pIemCpu, uint64_t *pu64) argument
1367 *pu64 = (int8_t)u8;
1378 * @param pu64 Where to return the unsigned qword.
1380 DECLINLINE(VBOXSTRICTRC) iemOpcodeGetNextS8SxU64(PIEMCPU pIemCpu, uint64_t *pu64) argument
1384 return iemOpcodeGetNextS8SxU64Slow(pIemCpu, pu64);
1386 *pu64 = (int8_t)pIemCpu->abOpcode[offOpcode];
1396 * @param pu64 Where to return the word.
1526 * @param pu64 Where to return the opcode quad word.
1528 DECL_NO_INLINE(static, VBOXSTRICTRC) iemOpcodeGetNextU16ZxU64Slow(PIEMCPU pIemCpu, uint64_t *pu64) argument
1550 iemOpcodeGetNextU16ZxU64(PIEMCPU pIemCpu, uint64_t *pu64) argument
1676 iemOpcodeGetNextU32ZxU64Slow(PIEMCPU pIemCpu, uint64_t *pu64) argument
1701 iemOpcodeGetNextU32ZxU64(PIEMCPU pIemCpu, uint64_t *pu64) argument
1767 iemOpcodeGetNextS32SxU64Slow(PIEMCPU pIemCpu, uint64_t *pu64) argument
1792 iemOpcodeGetNextS32SxU64(PIEMCPU pIemCpu, uint64_t *pu64) argument
1831 iemOpcodeGetNextU64Slow(PIEMCPU pIemCpu, uint64_t *pu64) argument
1860 iemOpcodeGetNextU64(PIEMCPU pIemCpu, uint64_t *pu64) argument
[all...]
H A DIEMAllCImpl.cpp.h1263 uNewRsp = uPtrTSS.pu64[0];
1445 uPtrRet.pu64[0] = pCtx->rip + cbInstr;
1446 uPtrRet.pu64[1] = pCtx->cs.Sel; /** @todo Testcase: What is written to the high words when pushing CS? */
1447 uPtrRet.pu64[2] = uOldRsp;
1448 uPtrRet.pu64[3] = uOldSS; /** @todo Testcase: What is written to the high words when pushing SS? */
1582 uPtrRet.pu64[0] = pCtx->rip + cbInstr;
1583 uPtrRet.pu64[1] = pCtx->cs.Sel; /** @todo Testcase: What is written to the high words when pushing CS? */
2019 uPtrRet.pu64[0] = pCtx->rip + cbInstr;
2020 uPtrRet.pu64[1] = pCtx->cs.Sel; /** @todo Testcase: What is written to the high words when callf is pushing CS? */
2079 uNewRip = uPtrFrame.pu64[
[all...]
/vbox/src/VBox/Main/src-server/darwin/
H A Diokit.cpp206 * @param pu64 Where to store the key value.
208 static bool darwinDictGetU64(CFDictionaryRef DictRef, CFStringRef KeyStrRef, uint64_t *pu64) argument
213 if (CFNumberGetValue((CFNumberRef)ValRef, kCFNumberSInt64Type, pu64))
216 *pu64 = 0;
/vbox/src/VBox/Debugger/testcase/
H A DtstDBGCStubs.cpp223 VMMR3DECL(int) DBGFR3RegCpuQueryU64( PUVM pUVM, VMCPUID idCpu, DBGFREG enmReg, uint64_t *pu64) argument
/vbox/include/iprt/
H A Dstring.h2622 * @param pu64 Where to store the converted number. (optional)
2624 RTDECL(int) RTStrToUInt64Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint64_t *pu64);
2642 * @param pu64 Where to store the converted number. (optional)
2644 RTDECL(int) RTStrToUInt64Full(const char *pszValue, unsigned uBase, uint64_t *pu64);
/vbox/src/VBox/Devices/USB/darwin/
H A DUSBProxyDevice-darwin.cpp1046 * @param pu64 Where to store the key value.
1048 static bool usbProxyDarwinDictGetU64(CFMutableDictionaryRef DictRef, CFStringRef KeyStrRef, uint64_t *pu64) argument
1053 if (CFNumberGetValue((CFNumberRef)ValRef, kCFNumberSInt64Type, pu64))
1056 *pu64 = 0;
/vbox/include/VBox/vmm/
H A Ddbgf.h1470 VMMR3DECL(int) DBGFR3RegCpuQueryU64( PUVM pUVM, VMCPUID idCpu, DBGFREG enmReg, uint64_t *pu64);
1516 VMMR3DECL(int) DBGFR3RegNmQueryU64( PUVM pUVM, VMCPUID idDefCpu, const char *pszReg, uint64_t *pu64);
H A Dssm.h1258 VMMR3DECL(int) SSMR3GetU64(PSSMHANDLE pSSM, uint64_t *pu64);
/vbox/src/VBox/Debugger/
H A DDBGCEmulateCodeView.cpp3480 uint64_t *pu64; member in union:__anon9837
3521 *u.pu64++ = u64;
3547 case 8: *u.pu64++ = *psz; break;
/vbox/src/VBox/Runtime/common/ldr/
H A DldrPE.cpp803 uint64_t *pu64; member in union:__anon16564
815 *u.pu64 += (RTINTPTR)uDelta;
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPHardenedVerifyImage-win.cpp1810 uint64_t const u64KeyId = pCert->TbsCertificate.SubjectPublicKeyInfo.SubjectPublicKey.uBits.pu64[1];

Completed in 333 milliseconds

12