| 1657 | }; |
| 1658 | |
| 1659 | JEMALLOC_ALWAYS_INLINE void |
| 1660 | dynamic_opts_init(dynamic_opts_t *dynamic_opts) { |
| 1661 | dynamic_opts->result = NULL; |
| 1662 | dynamic_opts->num_items = 0; |
| 1663 | dynamic_opts->item_size = 0; |
| 1664 | dynamic_opts->alignment = 0; |
| 1665 | dynamic_opts->zero = false; |
| 1666 | dynamic_opts->tcache_ind = TCACHE_IND_AUTOMATIC; |
| 1667 | dynamic_opts->arena_ind = ARENA_IND_AUTOMATIC; |
| 1668 | } |
| 1669 | |
| 1670 | /* ind is ignored if dopts->alignment > 0. */ |
| 1671 | JEMALLOC_ALWAYS_INLINE void * |
no outgoing calls
no test coverage detected