Home
last modified time | relevance | path

Searched refs:evictCount (Results 1 – 1 of 1) sorted by relevance

/external/syzkaller/vendor/golang.org/x/net/http2/hpack/
Dtables.go30 evictCount uint64 member
57 id := uint64(t.len()) + t.evictCount + 1
70 id := t.evictCount + uint64(k) + 1
83 if t.evictCount+uint64(n) < t.evictCount {
86 t.evictCount += uint64(n)
118 if id <= t.evictCount {
119 panic(fmt.Sprintf("id (%v) <= evictCount (%v)", id, t.evictCount))
121 k := id - t.evictCount - 1 // convert id to an index t.ents[k]