Home | History | Annotate | Download | only in dist

Lines Matching defs:iRowid

7589   sqlite3_int64 iRowid;             /* Rowid for current entry */
40059 ** Check to see if element iRowid was inserted into the rowset as
40066 SQLITE_PRIVATE int sqlite3RowSetTest(RowSet *pRowSet, int iBatch, sqlite3_int64 iRowid){
40108 /* Test to see if the iRowid value appears anywhere in the forest.
40114 if( p->v<iRowid ){
40116 }else if( p->v>iRowid ){
83703 i64 iRowid; /* Rowid in main table of the key */
83759 static void sampleSetRowidInt64(sqlite3 *db, Stat4Sample *p, i64 iRowid){
83763 p->u.iRowid = iRowid;
83782 sampleSetRowidInt64(p->db, pTo, pFrom->u.iRowid);
84306 sqlite3_result_int64(context, pS->u.iRowid);
132702 sqlite3_int64 iRowid; /* Current rowid */
132939 pCsr->iRowid++;
133176 *pRowid = pCsr->iRowid;
136341 int iRowid; /* Current 'rowid' value */
136568 pCsr->iRowid = 0;
136590 pCsr->iRowid++;
136689 *pRowid = (sqlite3_int64)pCsr->iRowid;
144987 i64 iRowid; /* Node or entry ID */
145281 p += writeInt64(p, pCell->iRowid);
145417 pCell->iRowid = nodeGetRowid(pRtree, pNode, iCell);
145645 pInfo->iRowid = readInt64(pCellData);
145743 ** integer value equal to iRowid. Return the index of this cell.
145748 i64 iRowid,
145755 if( nodeGetRowid(pRtree, pNode, ii)==iRowid ){
146122 ** rowid iRowid. If successful, set *ppLeaf to point to the node and
146129 i64 iRowid, /* The rowid searching for */
146135 sqlite3_bind_int64(pRtree->pReadRowid, 1, iRowid);
146224 i64 iRowid = sqlite3_value_int64(argv[0]);
146226 rc = findLeafNode(pRtree, iRowid, &pLeaf, &iNode);
146233 rc = nodeRowidIndex(pRtree, pLeaf, iRowid, &iCell);
146563 iBest = cell.iRowid;
146609 ** Write mapping (iRowid->iNode) to the <rtree>_rowid table.
146611 static int rowidWrite(Rtree *pRtree, sqlite3_int64 iRowid, sqlite3_int64 iNode){
146612 sqlite3_bind_int64(pRtree->pWriteRowid, 1, iRowid);
146873 i64 iRowid,
146880 RtreeNode *pChild = nodeHashLookup(pRtree, iRowid);
146887 return xSetMapping(pRtree, iRowid, pNode->iNode);
146964 rightbbox.iRowid = pRight->iNode;
146965 leftbbox.iRowid = pLeft->iNode;
146989 i64 iRowid = nodeGetRowid(pRtree, pRight, i);
146990 rc = updateMapping(pRtree, iRowid, pRight, iHeight);
146991 if( iRowid==pCell->iRowid ){
147000 i64 iRowid = nodeGetRowid(pRtree, pLeft, i);
147001 rc = updateMapping(pRtree, iRowid, pLeft, iHeight);
147007 rc = updateMapping(pRtree, pCell->iRowid, pLeft, iHeight);
147131 box.iRowid = pNode->iNode;
147245 if( p->iRowid==pCell->iRowid ){
147247 rc = rowidWrite(pRtree, p->iRowid, pNode->iNode);
147249 rc = parentWrite(pRtree, p->iRowid, pNode->iNode);
147289 RtreeNode *pChild = nodeHashLookup(pRtree, pCell->iRowid);
147307 rc = rowidWrite(pRtree, pCell->iRowid, pNode->iNode);
147309 rc = parentWrite(pRtree, pCell->iRowid, pNode->iNode);
147528 cell.iRowid = sqlite3_value_int64(azData[2]);
147530 || sqlite3_value_int64(azData[0])!=cell.iRowid
147533 sqlite3_bind_int64(pRtree->pReadRowid, 1, cell.iRowid);
147538 rc = rtreeDeleteRowid(pRtree, cell.iRowid);
147567 rc = newRowid(pRtree, &cell.iRowid);
147569 *pRowid = cell.iRowid;
147956 sqlite3_snprintf(512-nCell,&zCell[nCell],"%lld", cell.iRowid);