Home
last modified time | relevance | path

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

/external/chromium_org/third_party/sqlite/src/src/
Dtest_fuzzer.c109 typedef struct fuzzer_cursor fuzzer_cursor; typedef
170 struct fuzzer_cursor { struct
171 sqlite3_vtab_cursor base; /* Base class - must be first */
172 sqlite3_int64 iRowid; /* The rowid of the current word */
173 fuzzer_vtab *pVtab; /* The virtual table this cursor belongs to */
174 fuzzer_cost rLimit; /* Maximum cost of any term */
175 fuzzer_stem *pStem; /* Stem with smallest rCostX */
176 fuzzer_stem *pDone; /* Stems already processed to completion */
177 fuzzer_stem *aQueue[FUZZER_NQUEUE]; /* Queue of stems with higher rCostX */
178 int mxQueue; /* Largest used index in aQueue[] */
[all …]