Searched defs:SegmentNode (Results 1 – 1 of 1) sorted by relevance
40 typedef struct SegmentNode SegmentNode; typedef149 struct SegmentNode { struct150 SegmentNode *pParent; /* Parent node (or NULL for root node) */ argument151 SegmentNode *pRight; /* Pointer to right-sibling */ argument152 SegmentNode *pLeftmost; /* Pointer to left-most node of this depth */ argument153 int nEntry; /* Number of terms written to node so far */154 char *zTerm; /* Pointer to previous term buffer */155 int nTerm; /* Number of bytes in zTerm */156 int nMalloc; /* Size of malloc'd buffer at zMalloc */157 char *zMalloc; /* Malloc'd space (possibly) used for zTerm */[all …]