const math.mask
14 uses
math (current package)
bits.go#L12: mask = 0x7FF
floor.go#L75: e := uint(bits>>shift) & mask
floor.go#L113: e := uint(bits>>shift) & mask
fma.go#L78: exp = int32(b>>52) & mask
frexp.go#L28: exp += int((x>>shift)&mask) - bias + 1
frexp.go#L29: x &^= mask << shift
ldexp.go#L27: exp += int(x>>shift)&mask - bias
ldexp.go#L42: x &^= mask << shift
logb.go#L49: return int((Float64bits(x)>>shift)&mask) - bias + exp
modf.go#L28: e := uint(x>>shift)&mask - bias
sqrt.go#L109: exp := int((ix >> shift) & mask)
sqrt.go#L118: ix &^= mask << shift
trig_reduce.go#L37: exp := int(ix>>shift&mask) - bias - shift
trig_reduce.go#L38: ix &^= mask << shift
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |