Lines Matching refs:nRoot
8063 SQLITE_PRIVATE char *sqlite3BtreeIntegrityCheck(Btree*, int *aRoot, int nRoot, int, int*);
55342 int nRoot, /* Number of entries in aRoot[] */
55387 for(i=0; (int)i<nRoot && sCheck.mxErr; i++){
63214 int nRoot; /* Number of tables to check. (Number of root pages.) */
67626 int nRoot; /* Number of tables to check. (Number of root pages.) */
67634 u.bv.nRoot = pOp->p2;
67635 assert( u.bv.nRoot>0 );
67636 u.bv.aRoot = sqlite3DbMallocRaw(db, sizeof(int)*(u.bv.nRoot+1) );
67643 for(u.bv.j=0; u.bv.j<u.bv.nRoot; u.bv.j++){
67649 u.bv.z = sqlite3BtreeIntegrityCheck(db->aDb[pOp->p5].pBt, u.bv.aRoot, u.bv.nRoot,
114229 int nRoot = sqlite3_column_bytes(pStmt, 4);
114236 rc = fts3SelectLeaf(p, zTerm, nTerm, zRoot, nRoot, &iStartBlock, pi);
114242 iStartBlock, iLeavesEndBlock, iEndBlock, zRoot, nRoot, &pSeg
120982 int nRoot, /* Size of buffer containing root node */
120991 nExtra = nRoot + FTS3_NODE_PADDING;
121007 pReader->nNode = nRoot;
121008 memcpy(pReader->aNode, zRoot, nRoot);
121009 memset(&pReader->aNode[nRoot], 0, FTS3_NODE_PADDING);
121303 int nRoot /* Number of bytes in buffer zRoot */
121313 sqlite3_bind_blob(pStmt, 6, zRoot, nRoot, SQLITE_STATIC);
121699 int nRoot = 0; /* Size of buffer zRoot */
121705 pWriter->iFirst, pWriter->iFree, &iLast, &zRoot, &nRoot);
121709 p, iLevel, iIdx, pWriter->iFirst, iLastLeaf, iLast, zRoot, nRoot);