Searched refs:noverflow (Results 1 – 4 of 4) sorted by relevance
/prebuilts/go/linux-x86/src/runtime/ |
D | map.go | 115 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)
|
D | map_fast64.go | 176 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)) {
|
D | map_fast32.go | 176 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)) {
|
D | map_faststr.go | 295 if !h.growing() && (overLoadFactor(h.count+1, h.B) || tooManyOverflowBuckets(h.noverflow, h.B)) {
|