Lines Matching defs:iPgno

68526       u32 iPgno, nDbSize;
68527 iPgno = sqlite3Get4byte(aBuf);
68530 walEncodeFrame(pWal, iPgno, nDbSize, &aBuf[WAL_FRAME_HDRSIZE], aFrame);
221799 u32 iPgno; /* Page number */
222099 u8 *aHdr = &aData[p->iPgno==1 ? 100 : 0];
222111 if( p->iPgno==1 ) nHdr += 100;
222291 pCsr->aPage[0].iPgno = iRoot;
222357 p[1].iPgno = p->iRightChildPg;
222359 p[1].iPgno = p->aCell[p->iCell].iChildPg;
222361 rc = statGetPage(pBt, p[1].iPgno, &p[1]);
222379 pCsr->iPageno = p->iPgno;
242933 i64 iPgno = (i==0 ? pWriter->writer.pgno : pDlidx[-1].pgno);
242936 sqlite3Fts5BufferAppendVarint(&p->rc, &pDlidx->buf, iPgno);
243620 ** DELETE FROM %_idx WHERE (segid, (pgno/2)) = ($iSegid, $iPgno);
243631 int iPgno /* Page number within segment */
243633 if( iPgno!=1 ){
243643 sqlite3_bind_int(p->pDeleteFromIdx, 2, iPgno);
243652 ** that overflows onto segment page iPgno of segment pSeg. This function
243653 ** rewrites node iPgno, and possibly one or more of its right-hand peers,
243663 int iPgno,
243669 assert( iPgno!=1 );
243672 for(pgno=iPgno; p->rc==SQLITE_OK && pgno<=pSeg->pgnoLast; pgno++){
243961 int iPgno;
243966 for(iPgno=pSeg->iLeafPgno-1; iPgno>pSeg->iTermLeafPgno; iPgno-- ){
243967 Fts5Data *pPg = fts5DataRead(p, FTS5_SEGMENT_ROWID(iSegid, iPgno));
243973 if( iPgno==pSeg->iTermLeafPgno ){
246870 int iSegid, iHeight, iPgno, bDlidx, bTomb; /* Rowid compenents */
246871 fts5DecodeRowid(iKey, &bTomb, &iSegid, &bDlidx, &iHeight, &iPgno);
246884 iSegid, iHeight, iPgno
247097 int iSegid,iHeight,iPgno,bDlidx;/* Rowid components */
247121 fts5DecodeRowid(iRowid, &bTomb, &iSegid, &bDlidx, &iHeight, &iPgno);
247133 lvl.iLeafPgno = iPgno;