Lines Matching refs:iRowid

8018   sqlite3_int64 iRowid;             /* Rowid for current entry */  member
41430 SQLITE_PRIVATE int sqlite3RowSetTest(RowSet *pRowSet, int iBatch, sqlite3_int64 iRowid){
41478 if( p->v<iRowid ){
41480 }else if( p->v>iRowid ){
88334 i64 iRowid; /* Rowid in main table of the key */
88390 static void sampleSetRowidInt64(sqlite3 *db, Stat4Sample *p, i64 iRowid){
88394 p->u.iRowid = iRowid;
88413 sampleSetRowidInt64(p->db, pTo, pFrom->u.iRowid);
88941 sqlite3_result_int64(context, pS->u.iRowid);
138924 sqlite3_int64 iRowid; /* Current rowid */
139161 pCsr->iRowid++;
139398 *pRowid = pCsr->iRowid;
142569 int iRowid; /* Current 'rowid' value */
142796 pCsr->iRowid = 0;
142818 pCsr->iRowid++;
142917 *pRowid = (sqlite3_int64)pCsr->iRowid;
151280 i64 iRowid; /* Node or entry ID */
151573 p += writeInt64(p, pCell->iRowid);
151709 pCell->iRowid = nodeGetRowid(pRtree, pNode, iCell);
151936 pInfo->iRowid = readInt64(pCellData);
152039 i64 iRowid,
152046 if( nodeGetRowid(pRtree, pNode, ii)==iRowid ){
152420 i64 iRowid, /* The rowid searching for */
152426 sqlite3_bind_int64(pRtree->pReadRowid, 1, iRowid);
152515 i64 iRowid = sqlite3_value_int64(argv[0]);
152517 rc = findLeafNode(pRtree, iRowid, &pLeaf, &iNode);
152524 rc = nodeRowidIndex(pRtree, pLeaf, iRowid, &iCell);
152854 iBest = cell.iRowid;
152902 static int rowidWrite(Rtree *pRtree, sqlite3_int64 iRowid, sqlite3_int64 iNode){
152903 sqlite3_bind_int64(pRtree->pWriteRowid, 1, iRowid);
153164 i64 iRowid,
153171 RtreeNode *pChild = nodeHashLookup(pRtree, iRowid);
153178 return xSetMapping(pRtree, iRowid, pNode->iNode);
153255 rightbbox.iRowid = pRight->iNode;
153256 leftbbox.iRowid = pLeft->iNode;
153280 i64 iRowid = nodeGetRowid(pRtree, pRight, i);
153281 rc = updateMapping(pRtree, iRowid, pRight, iHeight);
153282 if( iRowid==pCell->iRowid ){
153291 i64 iRowid = nodeGetRowid(pRtree, pLeft, i);
153292 rc = updateMapping(pRtree, iRowid, pLeft, iHeight);
153298 rc = updateMapping(pRtree, pCell->iRowid, pLeft, iHeight);
153422 box.iRowid = pNode->iNode;
153536 if( p->iRowid==pCell->iRowid ){
153538 rc = rowidWrite(pRtree, p->iRowid, pNode->iNode);
153540 rc = parentWrite(pRtree, p->iRowid, pNode->iNode);
153580 RtreeNode *pChild = nodeHashLookup(pRtree, pCell->iRowid);
153598 rc = rowidWrite(pRtree, pCell->iRowid, pNode->iNode);
153600 rc = parentWrite(pRtree, pCell->iRowid, pNode->iNode);
153777 cell.iRowid = 0; /* Used only to suppress a compiler warning */
153829 cell.iRowid = sqlite3_value_int64(azData[2]);
153831 || sqlite3_value_int64(azData[0])!=cell.iRowid
153834 sqlite3_bind_int64(pRtree->pReadRowid, 1, cell.iRowid);
153839 rc = rtreeDeleteRowid(pRtree, cell.iRowid);
153868 rc = newRowid(pRtree, &cell.iRowid);
153870 *pRowid = cell.iRowid;
154257 sqlite3_snprintf(512-nCell,&zCell[nCell],"%lld", cell.iRowid);