Searched refs:uPrev (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Runtime/common/math/
H A Dbignum.cpp1776 RTBIGNUMELEMENT uPrev = 0;
1780 pauDst[i] = (uCur << cBits) | (uPrev >> (RTBIGNUM_ELEMENT_BITS - cBits));
1781 uPrev = uCur;
1783 uPrev >>= RTBIGNUM_ELEMENT_BITS - cBits;
1784 if (uPrev)
1785 pauDst[pValue->cUsed] = uPrev;
1861 RTBIGNUMELEMENT uPrev = &pauSrc[i] == &pValue->pauElements[pValue->cUsed] ? 0 : pauSrc[i];
1865 pauDst[i] = (uCur >> cBits) | (uPrev << (RTBIGNUM_ELEMENT_BITS - cBits));
1866 uPrev = uCur;
/vbox/src/VBox/Debugger/
H A DVBoxDbgStatsQt4.cpp1217 uint8_t uPrev = pNode->Data.u8;
1219 iDelta = (int32_t)pNode->Data.u8 - (int32_t)uPrev;
1233 uint16_t uPrev = pNode->Data.u16;
1235 iDelta = (int32_t)pNode->Data.u16 - (int32_t)uPrev;
1249 uint32_t uPrev = pNode->Data.u32;
1251 iDelta = (int64_t)pNode->Data.u32 - (int64_t)uPrev;
1265 uint64_t uPrev = pNode->Data.u64;
1267 iDelta = pNode->Data.u64 - uPrev;
/vbox/src/VBox/VMM/VMMR3/
H A DCPUMR3CpuId.cpp4046 * The uPrev stuff is a kludge for working around a week worth of bad saved
4053 uint32_t uPrev = 0; local
4061 || Leaf.uLeaf >= uPrev)
4064 uPrev = Leaf.uLeaf;
4067 uPrev = UINT32_MAX;

Completed in 1448 milliseconds