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

Function node_get_key

python/bplustree_c_src/bplustree.h:78–80  ·  view source on GitHub ↗

Inline functions for fast array access */

Source from the content-addressed store, hash-verified

76
77/* Inline functions for fast array access */
78static inline PyObject* node_get_key(BPlusNode *node, int index) {
79 return node->data[index];
80}
81
82static inline PyObject* node_get_value(BPlusNode *node, int index) {
83 return node->data[node->capacity + index];

Callers 11

tree_find_leafFunction · 0.85
tree_insert_recursiveFunction · 0.85
node_insert_branchFunction · 0.85
BPlusTreeIterator_nextFunction · 0.85
node_gc_opFunction · 0.85
node_find_positionFunction · 0.85
node_destroyFunction · 0.85
node_clear_slotFunction · 0.85
node_insert_leafFunction · 0.85
node_deleteFunction · 0.85
node_getFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected