Home | History | Annotate | Download | only in hpack

Lines Matching refs:For

14 	// For static tables, entries are never evicted.
16 // For dynamic tables, entries are evicted from ents[0] and added to the end.
17 // Each entry has a unique id that starts at one and increments for each
20 // are 1-based. The unique id for ents[k] is k + evictCount + 1.
28 // 2M years for evictCount to overflow.
33 // the same name. See above for a definition of "unique id".
37 // entry with the same name and value. See above for a definition of "unique id".
68 for k := 0; k < n; k++ {
79 for k := t.len() - n; k < t.len(); k++ {
94 // The returned index is a 1-based HPACK index. For dynamic tables, HPACK says
96 // meaning t.ents is reversed for dynamic tables. Hence, when t is a dynamic
99 // All tables are assumed to be a dynamic tables except for the global
197 for _, e := range staticTableEntries[:] {