Searched defs:SegmentNode (Results 1 – 1 of 1) sorted by relevance
93 typedef struct SegmentNode SegmentNode; typedef217 struct SegmentNode { struct218 SegmentNode *pParent; /* Parent node (or NULL for root node) */ argument219 SegmentNode *pRight; /* Pointer to right-sibling */ argument220 SegmentNode *pLeftmost; /* Pointer to left-most node of this depth */ argument221 int nEntry; /* Number of terms written to node so far */222 char *zTerm; /* Pointer to previous term buffer */223 int nTerm; /* Number of bytes in zTerm */224 int nMalloc; /* Size of malloc'd buffer at zMalloc */226 int nData; /* Bytes of valid data so far */[all …]