MCPcopy Create free account
hub / github.com/KentBeck/BPlusTree3 / node_get_child

Function node_get_child

python/bplustree_c_src/bplustree.h:86–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84}
85
86static inline BPlusNode* node_get_child(BPlusNode *node, int index) {
87 return (BPlusNode*)node->data[node->capacity + index];
88}
89
90static inline void node_set_key(BPlusNode *node, int index, PyObject *key) {
91 node->data[index] = key;

Callers 8

node_prefetch_childFunction · 0.85
tree_insert_recursiveFunction · 0.85
node_insert_branchFunction · 0.85
BPlusTree_iterFunction · 0.85
BPlusTree_itemsFunction · 0.85
node_gc_opFunction · 0.85
node_destroyFunction · 0.85
node_clear_slotFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected