Searched refs:pDivisor (Results 1 - 3 of 3) sorted by relevance
/vbox/include/iprt/ |
H A D | bignum.h | 169 RTDECL(int) RTBigNumDivide(PRTBIGNUM pQuotient, PRTBIGNUM pRemainder, PCRTBIGNUM pDividend, PCRTBIGNUM pDivisor); 170 RTDECL(int) RTBigNumDivideKnuth(PRTBIGNUM pQuotient, PRTBIGNUM pRemainder, PCRTBIGNUM pDividend, PCRTBIGNUM pDivisor); 171 RTDECL(int) RTBigNumDivideLong(PRTBIGNUM pQuotient, PRTBIGNUM pRemainder, PCRTBIGNUM pDividend, PCRTBIGNUM pDivisor); 172 RTDECL(int) RTBigNumModulo(PRTBIGNUM pRemainder, PCRTBIGNUM pDividend, PCRTBIGNUM pDivisor);
|
/vbox/src/VBox/Runtime/common/math/ |
H A D | bignum.cpp | 2114 * @param pDivisor What to divide by. 2116 static int rtBigNumMagnitudeDivideKnuth(PRTBIGNUM pQuotient, PRTBIGNUM pRemainder, PCRTBIGNUM pDividend, PCRTBIGNUM pDivisor) 2118 Assert(pDivisor->cUsed > 1); 2119 uint32_t const cDivisor = pDivisor->cUsed; 2146 uint32_t cNormShift = (RTBIGNUM_ELEMENT_BITS - rtBigNumMagnitudeBitWidth(pDivisor)) & (RTBIGNUM_ELEMENT_BITS - 1); 2152 rc = rtBigNumMagnitudeShiftLeft(&NormDivisor, pDivisor, cNormShift); 2156 pNormDivisor = pDivisor; 2222 if (pDivisor == &NormDivisor) 2228 static int rtBigNumMagnitudeDivideSlowLong(PRTBIGNUM pQuotient, PRTBIGNUM pRemainder, PCRTBIGNUM pDividend, PCRTBIGNUM pDivisor) 2239 int iDiff = rtBigNumMagnitudeCompare(pRemainder, pDivisor); [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Sockets/WebServer/ |
H A D | HTTP.c | 1489 CONST UINT64 * pDivisor; local 1523 pDivisor = &pDivisors[0]; 1524 pEnd = &pDivisor[ sizeof ( pDivisors ) / sizeof ( pDivisors[0])]; 1525 while ( pEnd > pDivisor ) { 1529 Digit = Value / *pDivisor; 1548 Temp = *pDivisor * Digit; 1555 pDivisor += 1;
|
Completed in 201 milliseconds