Searched defs:pRemainder (Results 1 - 2 of 2) sorted by relevance

/vbox/include/iprt/
H A Duint128.h311 DECLINLINE(PRTUINT128U) RTUInt128DivRem(PRTUINT128U pQuotient, PRTUINT128U pRemainder, PCRTUINT128U pValue1, PCRTUINT128U pValue2);
1288 * @param pRemainder Where to return the remainder.
1292 DECLINLINE(PRTUINT128U) RTUInt128DivRem(PRTUINT128U pQuotient, PRTUINT128U pRemainder, PCRTUINT128U pValue1, PCRTUINT128U pValue2) argument
1307 RTUInt128SetZero(pRemainder);
1318 *pRemainder = *pValue1;
1325 RTUInt128SetZero(pRemainder);
1348 *pRemainder = *pValue1;
1353 if (RTUInt128IsLargerOrEqual(pRemainder, pValue2))
1357 if (RTUInt128IsLargerOrEqual(pRemainder, &NormDivisor))
1359 RTUInt128AssignSub(pRemainder,
[all...]
/vbox/src/VBox/Runtime/common/string/
H A Dstrcache.cpp579 PRTSTRCACHEFREEMERGE pRemainder = pFree; local
582 Assert((pRemainder->cbFree - cbEntry) == cRemainder * sizeof(*pFree));
583 pRemainder->cbFree = cRemainder * sizeof(*pFree);
585 rtStrCacheRelinkMerged(pThis, pRemainder);

Completed in 66 milliseconds