Square64
Squares a 64-bit integer.
Synopsis
void Square64( uint64 *p, int64 *m )
Description
This function computes the square of a 64-bit integer in the location pointed to by m. The result is deposited in the location pointed to by p.
Arguments
- p
- A pointer to the result of the square operation.
- m
- A pointer to the location of the 64-bit integer to be squared.
Implementation
Folio call implemented in operamath V20.
Associated Files
operamath.h, operamath.lib
Caveats
The function does not detect overflows.
See Also
SquareSF16
(), SquareUF16()