Home
last modified time | relevance | path

Searched refs:BtRbNode (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbtree_rb.c32 typedef struct BtRbNode BtRbNode; typedef
101 BtRbNode *pNode;
117 BtRbNode *pHead; /* Head of the tree, or NULL */
120 struct BtRbNode { struct
126 BtRbNode *pParent; /* Nodes parent node, NULL for the tree head */ argument
127 BtRbNode *pLeft; /* Nodes left child, or NULL */ argument
128 BtRbNode *pRight; /* Nodes right child, or NULL */ argument
205 static void leftRotate(BtRbTree *pTree, BtRbNode *pX) in leftRotate()
207 BtRbNode *pY; in leftRotate()
208 BtRbNode *pb; in leftRotate()
[all …]