Unsigned 32 by 32 bit division and modulus.
Source position: utility.pas line 377
| function UDivMod32( | 
| dividend: LongWord; | 
| divisor: LongWord | 
| ):LongWord; | 
Divides the unsigned 32 bit dividend by the unsigned 32 bit divisor and returns an unsigned 32 bit quotient and remainder.
It is impossible for Pascal/C programmers to obtain the value of remainder.
| 
 | Signed 32 by 32 bit division and modulus. | |
| 
 | Signed 32 by 32 bit multiply with 64 bit result. | |
| 
 | Unsigned 32 by 32 bit multiply with 32 bit result. | |
| 
 | Signed 32 by 32 bit multiply with 32 bit result. | |
| 
 | Unsigned 32 by 32 bit multiply with 64 bit result. |