Searched defs:fuzzer_cursor (Results 1 – 1 of 1) sorted by relevance
109 typedef struct fuzzer_cursor fuzzer_cursor; typedef170 struct fuzzer_cursor { struct171 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 …]