Home
last modified time | relevance | path

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

/external/chromium_org/third_party/sqlite/src/ext/fts3/
Dfts3_write.c40 typedef struct SegmentNode SegmentNode; typedef
149 struct SegmentNode { struct
150 SegmentNode *pParent; /* Parent node (or NULL for root node) */ argument
151 SegmentNode *pRight; /* Pointer to right-sibling */ argument
152 SegmentNode *pLeftmost; /* Pointer to left-most node of this depth */ argument
153 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 …]