vendor/golang.org/x/net/http2/hpack.headerFieldTable.evictCount (field)
9 uses
vendor/golang.org/x/net/http2/hpack (current package)
tables.go#L30: evictCount uint64
tables.go#L57: id := uint64(t.len()) + t.evictCount + 1
tables.go#L70: id := t.evictCount + uint64(k) + 1
tables.go#L83: if t.evictCount+uint64(n) < t.evictCount {
tables.go#L86: t.evictCount += uint64(n)
tables.go#L118: if id <= t.evictCount {
tables.go#L119: panic(fmt.Sprintf("id (%v) <= evictCount (%v)", id, t.evictCount))
tables.go#L121: k := id - t.evictCount - 1 // convert id to an index t.ents[k]
![]() |
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. |