Home
last modified time | relevance | path

Searched defs:SegmentNode (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dsqlite3.c204392 typedef struct SegmentNode SegmentNode; typedef
204516 struct SegmentNode { struct
204517 SegmentNode *pParent; /* Parent node (or NULL for root node) */ argument
204518 SegmentNode *pRight; /* Pointer to right-sibling */ argument
204519 SegmentNode *pLeftmost; /* Pointer to left-most node of this depth */ argument
204520 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 …]