Lines Matching refs:eInt
145556 ** eInt is true and it stores 32-bit floating point records if eInt is
145569 #define RTREE_DECODE_COORD(eInt, a, r) { \
145574 r = eInt ? (sqlite3_rtree_dbl)c.i : (sqlite3_rtree_dbl)c.f; \
145577 #define RTREE_DECODE_COORD(eInt, a, r) { \
145580 r = eInt ? (sqlite3_rtree_dbl)c.i : (sqlite3_rtree_dbl)c.f; \
145583 #define RTREE_DECODE_COORD(eInt, a, r) { \
145587 r = eInt ? (sqlite3_rtree_dbl)c.i : (sqlite3_rtree_dbl)c.f; \
145597 int eInt, /* True if RTree holding integer coordinates */
145617 RTREE_DECODE_COORD(eInt, pCellData, aCoord[i]);
145645 int eInt, /* True if RTree holds integer coordinates */
145662 RTREE_DECODE_COORD(eInt, pCellData, val);
145670 RTREE_DECODE_COORD(eInt, pCellData, val);
145689 int eInt, /* True if RTree holds integer coordinates */
145698 RTREE_DECODE_COORD(eInt, pCellData, xN);
145971 int eInt;
145974 eInt = pRtree->eCoordType==RTREE_COORD_INT32;
145987 rc = rtreeCallbackConstraint(pConstraint, eInt, pCellData, p,
145991 rtreeLeafConstraint(pConstraint, eInt, pCellData, &eWithin);
145993 rtreeNonleafConstraint(pConstraint, eInt, pCellData, &eWithin);