Searched refs:pu (Results 1 - 13 of 13) sorted by relevance

/vbox/src/VBox/ValidationKit/utils/cpu/
H A Dcpu-alloc-all-mem.cpp71 size_t const *pu = (size_t const *)pCur; local
72 size_t const *puEnd = pu + pCur->cb / sizeof(size_t);
73 while (pu != puEnd)
75 RTTESTI_CHECK_RET(*pu == iPageSeq, false);
77 pu += PAGE_SIZE / sizeof(size_t);
116 size_t *pu = (size_t *)pCur; local
117 size_t *puEnd = pu + cbOne / sizeof(size_t);
118 while (pu != puEnd)
120 *pu = iPageSeq++;
121 pu
[all...]
/vbox/src/VBox/Runtime/generic/
H A Dmemsafer-generic.cpp71 uintptr_t *pu = (uintptr_t *)pv; local
75 *pu ^= g_uScramblerXor;
76 pu++;
77 cb -= sizeof(*pu);
91 uintptr_t *pu = (uintptr_t *)pv; local
95 *pu ^= g_uScramblerXor;
96 pu++;
97 cb -= sizeof(*pu);
/vbox/include/iprt/
H A Dasm.h600 * @param hNew The new value to assigned to *pu.
628 * @param pu Pointer to the variable to update.
629 * @param uNew The value to assign to *pu.
632 #define ASMAtomicXchgSize(pu, uNew) \
634 switch (sizeof(*(pu))) { \
635 case 1: ASMAtomicXchgU8((volatile uint8_t *)(void *)(pu), (uint8_t)(uNew)); break; \
636 case 2: ASMAtomicXchgU16((volatile uint16_t *)(void *)(pu), (uint16_t)(uNew)); break; \
637 case 4: ASMAtomicXchgU32((volatile uint32_t *)(void *)(pu), (uint32_t)(uNew)); break; \
638 case 8: ASMAtomicXchgU64((volatile uint64_t *)(void *)(pu), (uint64_t)(uNew)); break; \
639 default: AssertMsgFailed(("ASMAtomicXchgSize: size %d is not supported\n", sizeof(*(pu)))); \
[all...]
H A Dtypes.h2431 unsigned int *pu; member in union:RTPTRUNION
2470 unsigned int const *pu; member in union:RTCPTRUNION
2509 unsigned int volatile *pu; member in union:RTVPTRUNION
2548 unsigned int const volatile *pu; member in union:RTCVPTRUNION
/vbox/src/VBox/Runtime/r3/
H A Dmemsafer-r3.cpp208 uintptr_t *pu = (uintptr_t *)pv; local
212 *pu ^= g_uMemSaferScramblerXor;
213 pu++;
214 cb -= sizeof(*pu);
231 uintptr_t *pu = (uintptr_t *)pv; local
235 *pu ^= g_uMemSaferScramblerXor;
236 pu++;
237 cb -= sizeof(*pu);
/vbox/src/VBox/VMM/VMMR3/
H A DMMPagePool.cpp194 unsigned *pu = &pSub->auBitmap[0]; local
196 while (pu < puEnd)
199 if ((u = *pu) != ~0U)
207 *pu |= uMask;
209 + PAGE_SIZE * (iBit + ((uint8_t *)pu - (uint8_t *)&pSub->auBitmap[0]) * 8);
218 pu++;
H A DDBGFReg.cpp1038 PCRTUINT128U pu = (PCRTUINT128U)((uintptr_t)pCtx + pDesc->offCtx);
1042 case DBGFREGVALTYPE_U8: pReg->Val.u8 = pu->au8[0]; break;
1043 case DBGFREGVALTYPE_U16: pReg->Val.u16 = pu->au16[0]; break;
1044 case DBGFREGVALTYPE_U32: pReg->Val.u32 = pu->au32[0]; break;
1045 case DBGFREGVALTYPE_U64: pReg->Val.u64 = pu->au64[0]; break;
1047 pReg->Val.au64[0] = pu->au64[0];
1048 pReg->Val.au64[1] = pu->au64[1];
1051 pReg->Val.au64[0] = pu->au64[0];
1052 pReg->Val.au16[5] = pu->au16[5];
H A DCFGM.cpp2778 * @param pu Where to store the value.
2780 VMMR3DECL(int) CFGMR3QueryUInt(PCFGMNODE pNode, const char *pszName, unsigned int *pu) argument
2783 return CFGMR3QueryU32(pNode, pszName, (uint32_t *)pu);
2793 * @param pu Where to store the value. Set to default on failure.
2796 VMMR3DECL(int) CFGMR3QueryUIntDef(PCFGMNODE pNode, const char *pszName, unsigned int *pu, unsigned int uDef) argument
2799 return CFGMR3QueryU32Def(pNode, pszName, (uint32_t *)pu, uDef);
H A DSSM.cpp7095 * @param pu Where to store the integer.
7097 VMMR3DECL(int) SSMR3GetUInt(PSSMHANDLE pSSM, PRTUINT pu)
7101 return ssmR3DataRead(pSSM, pu, sizeof(*pu));
7125 * @param pu Where to store the integer.
7129 VMMR3DECL(int) SSMR3GetGCUInt(PSSMHANDLE pSSM, PRTGCUINT pu)
7131 AssertCompile(sizeof(RTGCPTR) == sizeof(*pu));
7132 return SSMR3GetGCPtr(pSSM, (PRTGCPTR)pu);
7141 * @param pu Where to store the integer.
7143 VMMR3DECL(int) SSMR3GetGCUIntReg(PSSMHANDLE pSSM, PRTGCUINTREG pu)
[all...]
/vbox/include/VBox/vmm/
H A Dcfgm.h168 VMMR3DECL(int) CFGMR3QueryUInt( PCFGMNODE pNode, const char *pszName, unsigned int *pu);
169 VMMR3DECL(int) CFGMR3QueryUIntDef( PCFGMNODE pNode, const char *pszName, unsigned int *pu, unsigned int uDef);
H A Dssm.h1262 VMMR3DECL(int) SSMR3GetUInt(PSSMHANDLE pSSM, PRTUINT pu);
1264 VMMR3DECL(int) SSMR3GetGCUInt(PSSMHANDLE pSSM, PRTGCUINT pu);
1265 VMMR3DECL(int) SSMR3GetGCUIntReg(PSSMHANDLE pSSM, PRTGCUINTREG pu);
/vbox/include/iprt/cpp/
H A Dxml.h733 bool getAttributeValue(const char *pcszMatch, uint32_t *pu, const char *pcszNamespace = NULL) const;
735 bool getAttributeValue(const char *pcszMatch, uint64_t *pu, const char *pcszNamespace = NULL) const;
/vbox/src/bldprogs/
H A Dscmsubversion.cpp643 * @param pu Where to return the value.
645 static bool scmSvnReadNumber(const char *pch, size_t cch, size_t *pu) argument
656 *pu = u;

Completed in 99 milliseconds