Lines Matching defs:sqlite3_rtree_query_info
7946 typedef struct sqlite3_rtree_query_info sqlite3_rtree_query_info; typedef
8007 struct sqlite3_rtree_query_info { struct
8008 void *pContext; /* pContext from when function registered */
8009 int nParam; /* Number of function parameters */
8010 sqlite3_rtree_dbl *aParam; /* value of function parameters */
8011 void *pUser; /* callback can use this, if desired */
8012 void (*xDelUser)(void*); /* function to free pUser */
8013 sqlite3_rtree_dbl *aCoord; /* Coordinates of node or entry to check */
8014 unsigned int *anQueue; /* Number of pending entries in the queue */
8015 int nCoord; /* Number of coordinates */
8016 int iLevel; /* Level of current node or entry */
8017 int mxLevel; /* The largest iLevel value in the tree */
8018 sqlite3_int64 iRowid; /* Rowid for current entry */
8019 sqlite3_rtree_dbl rParentScore; /* Score of parent node */
8020 int eParentWithin; /* Visibility of parent node */
8021 int eWithin; /* OUT: Visiblity */
8022 sqlite3_rtree_dbl rScore; /* OUT: Write the score here */