| 1316 | /// Returns the spillable memory reservation growth percentage of the previous |
| 1317 | /// memory reservation size. 10 means exponential growth along a series of |
| 1318 | /// integer powers of 11/10. The reservation grows by this much until it no |
| 1319 | /// longer can, after which it starts spilling. |
| 1320 | int32_t spillableReservationGrowthPct() const { |
| 1321 | constexpr int32_t kDefaultPct = 10; |
| 1322 | return get<int32_t>(kSpillableReservationGrowthPct, kDefaultPct); |
| 1323 | } |
no outgoing calls
no test coverage detected