Searched defs:SegmentNode (Results 1 – 1 of 1) sorted by relevance
204392 typedef struct SegmentNode SegmentNode; typedef204516 struct SegmentNode { struct204517 SegmentNode *pParent; /* Parent node (or NULL for root node) */ argument204518 SegmentNode *pRight; /* Pointer to right-sibling */ argument204519 SegmentNode *pLeftmost; /* Pointer to left-most node of this depth */ argument204520 int nEntry; /* Number of terms written to node so far */204521 char *zTerm; /* Pointer to previous term buffer */204522 int nTerm; /* Number of bytes in zTerm */204523 int nMalloc; /* Size of malloc'd buffer at zMalloc */204524 char *zMalloc; /* Malloc'd space (possibly) used for zTerm */[all …]