()
| 27 | // coldBucketIdx/coldCellIdx returns the bucket/cell index in cold cache. |
| 28 | func (l location) coldBucketIdx() int { return int(l >> 24) } |
| 29 | func (l location) coldCellIdx() int { return int(l & 0x00ffffff) } |
| 30 | |
| 31 | func (l location) String() string { |
| 32 | return fmt.Sprintf("0x%x", uint32(l)) |
no outgoing calls