const math.MaxInt32
22 uses
math (current package)
const.go#L48: MaxInt32 = 1<<31 - 1 // 2147483647
logb.go#L40: return MaxInt32
logb.go#L42: return MaxInt32
math/big
float.go#L97: MaxExp = math.MaxInt32 // largest supported exponent
compress/flate
deflate.go#L58: skipNever = math.MaxInt32
deflate.go#L133: d.blockStart = math.MaxInt32
deflatefast.go#L23: bufferReset = math.MaxInt32 - maxStoreBlockSize*2
huffman_code.go#L57: func maxNode() literalNode { return literalNode{math.MaxUint16, math.MaxInt32} }
huffman_code.go#L168: levels[level].nextPairFreq = math.MaxInt32
huffman_code.go#L178: if l.nextPairFreq == math.MaxInt32 && l.nextCharFreq == math.MaxInt32 {
huffman_code.go#L184: levels[level+1].nextPairFreq = math.MaxInt32
crypto/x509
oid.go#L228: if ret64 > math.MaxInt32 {
encoding/asn1
asn1.go#L330: if ret64 > math.MaxInt32 {
net/http
h2_bundle.go#L8176: int64(cc.nextStreamID)+2*int64(cc.pendingRequests) < math.MaxInt32 &&
h2_bundle.go#L10080: if s.Val > math.MaxInt32 {
h2_bundle.go#L11147: ws.writeThrottleLimit = math.MaxInt32
h2_bundle.go#L11476: limit := int32(math.MaxInt32)
h2_bundle.go#L11491: ws.writeThrottleLimit = math.MaxInt32
h2_bundle.go#L11582: if wr, ok := q.consume(math.MaxInt32); ok {
h2_bundle.go#L11690: if wr, ok := q.consume(math.MaxInt32); ok {
vendor/golang.org/x/net/idna
punycode.go#L175: if p > math.MaxInt32-int64(a) {
![]() |
The pages are generated with Golds v0.7.6. (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. |