| 96 | } |
| 97 | |
| 98 | static inline void node_set_child(BPlusNode *node, int index, BPlusNode *child) { |
| 99 | node->data[node->capacity + index] = (PyObject*)child; |
| 100 | } |
| 101 | |
| 102 | /* Prefetch child pointer for cache optimization */ |
| 103 | static inline BPlusNode *node_prefetch_child(BPlusNode *node, int index) { |
no outgoing calls
no test coverage detected