Home
last modified time | relevance | path

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

/prebuilts/go/linux-x86/src/runtime/
Dmap.go115 noverflow uint16 // approximate number of overflow buckets; see incrnoverflow for details member
225 h.noverflow++
235 h.noverflow++
694 if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
1111 h.noverflow = 0
1161 h.noverflow = 0
1190 func tooManyOverflowBuckets(noverflow uint16, B uint8) bool {
1199 return noverflow >= uint16(1)<<(B&15)
Dmap_fast64.go176 if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
277 if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
Dmap_fast32.go176 if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
275 if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
Dmap_faststr.go295 if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {