package math
Import Path
runtime/internal/math (on go.dev)
Dependency Relation
imports one package, and imported by one package
Involved Source Files
math.go
Package-Level Functions (total 3)
Add64 returns the sum with carry of x, y and carry: sum = x + y + carry.
The carry input must be 0 or 1; otherwise the behavior is undefined.
The carryOut output is guaranteed to be 0 or 1.
This function's execution time does not depend on the inputs.
On supported platforms this is an intrinsic lowered by the compiler.
Mul64 returns the 128-bit product of x and y: (hi, lo) = x * y
with the product bits' upper half returned in hi and the lower
half returned in lo.
This is a copy from math/bits.Mul64
On supported platforms this is an intrinsic lowered by the compiler.
MulUintptr returns a * b and whether the multiplication overflowed.
On supported platforms this is an intrinsic lowered by the compiler.
Package-Level Constants (only one)
const MaxUintptr uintptr = 18446744073709551615
The pages are generated with Golds v0.7.0-preview. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |