Changeset 59243 in vbox for trunk/src/VBox/Runtime/common/math
- Timestamp:
- Jan 3, 2016 2:42:27 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 104871
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/math/bignum.cpp
r57944 r59243 264 264 /** @todo optimize this. */ 265 265 RTUInt128DivRem(puQuotient, &uRemainder2x, &uDividend, &uDivisor2x); 266 puRemainder->u= uRemainder2x.s.Lo;266 *puRemainder = uRemainder2x.s.Lo; 267 267 # else 268 268 puQuotient->u = uDividend.u / uDivisor;
Note:
See TracChangeset
for help on using the changeset viewer.