| 43 | rtree_node_dalloc_impl; |
| 44 | |
| 45 | static rtree_leaf_elm_t * |
| 46 | rtree_leaf_alloc_impl(tsdn_t *tsdn, rtree_t *rtree, size_t nelms) { |
| 47 | return (rtree_leaf_elm_t *)base_alloc(tsdn, b0get(), nelms * |
| 48 | sizeof(rtree_leaf_elm_t), CACHELINE); |
| 49 | } |
| 50 | rtree_leaf_alloc_t *JET_MUTABLE rtree_leaf_alloc = rtree_leaf_alloc_impl; |
| 51 | |
| 52 | static void |
nothing calls this directly
no test coverage detected