Lines Matching defs:iRowid

36282 ** Check to see if element iRowid was inserted into the the rowset as
36285 SQLITE_PRIVATE int sqlite3RowSetTest(RowSet *pRowSet, u8 iBatch, sqlite3_int64 iRowid){
36298 if( p->v<iRowid ){
36300 }else if( p->v>iRowid ){
50643 ** set to iRowid.
50652 SQLITE_PRIVATE void sqlite3BtreeSetCachedRowid(BtCursor *pCur, sqlite3_int64 iRowid){
50655 if( p->pgnoRoot==pCur->pgnoRoot ) p->cachedRowid = iRowid;
50657 assert( pCur->cachedRowid==iRowid );
81425 int iRowid = ++pParse->nMem; /* Used for storing rowid values. */
81433 regRowid = sqlite3ExprCodeGetColumn(pParse, pTab, -1, iCur, iRowid);
81453 addr = sqlite3VdbeAddOp3(v, OP_RowSetRead, iRowSet, end, iRowid);
81460 sqlite3VdbeAddOp4(v, OP_VUpdate, 0, 1, iRowid, pVTab, P4_VTAB);
81466 sqlite3GenerateRowDelete(pParse, pTab, iCur, iRowid, count, pTrigger, OE_Default);
81530 ** memory cell iRowid.
81539 int iRowid, /* Memory cell that contains the rowid to delete */
81555 sqlite3VdbeAddOp3(v, OP_NotExists, iCur, iLabel, iRowid);
81574 sqlite3VdbeAddOp2(v, OP_Copy, iRowid, iOld);
81590 sqlite3VdbeAddOp3(v, OP_NotExists, iCur, iLabel, iRowid);
111348 i64 iRowid; /* rowid parsed. */
111542 u64 iRowid; /* iCell's rowid (in table). */
111584 nRead += getVarint(pCell + nRead, &iRowid);
111586 pCursor->iRowid = (i64)iRowid;
111656 return pCursor->iRowid;
116230 sqlite3_int64 iRowid;
116231 rc = fts3RowidMethod(pCursor, &iRowid);
116232 sqlite3_result_int64(pContext, iRowid);
116802 sqlite3_int64 iRowid; /* Current rowid */
117010 pCsr->iRowid++;
117199 *pRowid = pCsr->iRowid;
124539 i64 iRowid;
124828 p += writeInt64(p, pCell->iRowid);
124965 pCell->iRowid = nodeGetRowid(pRtree, pNode, iCell);
125269 sqlite3_int64 iRowid;
125285 iRowid = nodeGetRowid(pRtree, pCursor->pNode, pCursor->iCell);
125286 rc = nodeAcquire(pRtree, iRowid, pCursor->pNode, &pChild);
125317 ** integer value equal to iRowid. Return the index of this cell.
125322 i64 iRowid,
125328 if( nodeGetRowid(pRtree, pNode, ii)==iRowid ){
125415 i64 iRowid = nodeGetRowid(pRtree, pCsr->pNode, pCsr->iCell);
125416 sqlite3_result_int64(ctx, iRowid);
125433 ** rowid iRowid. If successful, set *ppLeaf to point to the node and
125438 static int findLeafNode(Rtree *pRtree, i64 iRowid, RtreeNode **ppLeaf){
125441 sqlite3_bind_int64(pRtree->pReadRowid, 1, iRowid);
125521 i64 iRowid = sqlite3_value_int64(argv[0]);
125522 rc = findLeafNode(pRtree, iRowid, &pLeaf);
125526 rc = nodeRowidIndex(pRtree, pLeaf, iRowid, &pCsr->iCell);
125897 iBest = cell.iRowid;
125943 ** Write mapping (iRowid->iNode) to the <rtree>_rowid table.
125945 static int rowidWrite(Rtree *pRtree, sqlite3_int64 iRowid, sqlite3_int64 iNode){
125946 sqlite3_bind_int64(pRtree->pWriteRowid, 1, iRowid);
126413 i64 iRowid,
126420 RtreeNode *pChild = nodeHashLookup(pRtree, iRowid);
126427 return xSetMapping(pRtree, iRowid, pNode->iNode);
126503 rightbbox.iRowid = pRight->iNode;
126504 leftbbox.iRowid = pLeft->iNode;
126528 i64 iRowid = nodeGetRowid(pRtree, pRight, i);
126529 rc = updateMapping(pRtree, iRowid, pRight, iHeight);
126530 if( iRowid==pCell->iRowid ){
126539 i64 iRowid = nodeGetRowid(pRtree, pLeft, i);
126540 rc = updateMapping(pRtree, iRowid, pLeft, iHeight);
126546 rc = updateMapping(pRtree, pCell->iRowid, pLeft, iHeight);
126670 box.iRowid = pNode->iNode;
126782 if( p->iRowid==pCell->iRowid ){
126784 rc = rowidWrite(pRtree, p->iRowid, pNode->iNode);
126786 rc = parentWrite(pRtree, p->iRowid, pNode->iNode);
126826 RtreeNode *pChild = nodeHashLookup(pRtree, pCell->iRowid);
126848 rc = rowidWrite(pRtree, pCell->iRowid, pNode->iNode);
126850 rc = parentWrite(pRtree, pCell->iRowid, pNode->iNode);
127029 rc = newRowid(pRtree, &cell.iRowid);
127031 cell.iRowid = sqlite3_value_int64(azData[2]);
127032 sqlite3_bind_int64(pRtree->pReadRowid, 1, cell.iRowid);
127040 *pRowid = cell.iRowid;
127375 sqlite3_snprintf(512-nCell,&zCell[nCell],"%lld", cell.iRowid);