Home
last modified time | relevance | path

Searched refs:divMod (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dbigint.d2241 void divMod(const BigInt dividend, const BigInt divisor, out BigInt quotient, out BigInt remainder)… in divMod() function
2244 BigUint.divMod(dividend.data, divisor.data, q, r); in divMod()
2258 divMod(a, b, q, r);
2273 divMod(c, d, q, r);
2278 divMod(c, -d, q, r);
2283 divMod(-c, -d, q, r);
2288 divMod(-c, d, q, r);
2298 divMod(BigInt(-50), BigInt(1), quotient, remainder);
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/internal/math/
H A Dbiguintcore.d971 static void divMod(BigUint x, scope BigUint y,