Searched defs:BtRbNode (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbtree_rb.c35 typedef struct BtRbNode BtRbNode; typedef in typeref:struct:BtRbNode
104 BtRbNode *pNode;
120 BtRbNode *pHead; /* Head of the tree, or NULL */
123 struct BtRbNode { struct
129 BtRbNode *pParent; /* Nodes parent node, NULL for the tree head */
130 BtRbNode *pLeft; /* Nodes left child, or NULL */
131 BtRbNode *pRight; /* Nodes right child, or NULL */
208 static void leftRotate(BtRbTree *pTree, BtRbNode *pX)
210 BtRbNode *p
[all...]

Completed in 61 milliseconds