For mul we are calculating the full 256-bit result with knuth which is irrelevant since we do our math mod 2^128. We should be able to calculate just the low words and escape.
For div we currently have a slightly more optimized version for MSVC. Potentially we could use this instead of Knuth for other platforms.
For mul we are calculating the full 256-bit result with knuth which is irrelevant since we do our math mod 2^128. We should be able to calculate just the low words and escape.
For div we currently have a slightly more optimized version for MSVC. Potentially we could use this instead of Knuth for other platforms.