| 2319 | } |
| 2320 | |
| 2321 | JEMALLOC_ALWAYS_INLINE bool |
| 2322 | zero_get(bool guarantee, bool slow) { |
| 2323 | if (config_fill && slow && unlikely(opt_zero)) { |
| 2324 | return true; |
| 2325 | } else { |
| 2326 | return guarantee; |
| 2327 | } |
| 2328 | } |
| 2329 | |
| 2330 | JEMALLOC_ALWAYS_INLINE tcache_t * |
| 2331 | tcache_get_from_ind(tsd_t *tsd, unsigned tcache_ind, bool slow, bool is_alloc) { |
no outgoing calls
no test coverage detected