Lines Matching defs:nRoot

15447 SQLITE_PRIVATE char *sqlite3BtreeIntegrityCheck(sqlite3*,Btree*,Pgno*aRoot,int nRoot,int,int*);
75247 ** a table. nRoot is the number of entries in aRoot.
75270 int nRoot, /* Number of entries in aRoot[] */
75282 assert( nRoot>0 );
75286 assert( nRoot>1 );
75343 for(i=0; (int)i<nRoot; i++) if( mx<aRoot[i] ) mx = aRoot[i];
75360 for(i=0; (int)i<nRoot && sCheck.mxErr; i++){
92429 int nRoot; /* Number of tables to check. (Number of root pages.) */
92436 nRoot = pOp->p2;
92438 assert( nRoot>0 );
92439 assert( aRoot[0]==(Pgno)nRoot );
92447 z = sqlite3BtreeIntegrityCheck(db, db->aDb[pOp->p5].pBt, &aRoot[1], nRoot,
173010 int nRoot = sqlite3_column_bytes(pStmt, 4);
173017 rc = fts3SelectLeaf(p, zTerm, nTerm, zRoot, nRoot, &iStartBlock, pi);
173025 iEndBlock, zRoot, nRoot, &pSeg
181838 int nRoot, /* Size of buffer containing root node */
181844 assert( zRoot!=0 || nRoot==0 );
181851 nExtra = nRoot + FTS3_NODE_PADDING;
181869 pReader->nNode = nRoot;
181870 if( nRoot ) memcpy(pReader->aNode, zRoot, nRoot);
181871 memset(&pReader->aNode[nRoot], 0, FTS3_NODE_PADDING);
182192 int nRoot /* Number of bytes in buffer zRoot */
182208 sqlite3_bind_blob(pStmt, 6, zRoot, nRoot, SQLITE_STATIC);
182613 int nRoot = 0; /* Size of buffer zRoot */
182619 pWriter->iFirst, pWriter->iFree, &iLast, &zRoot, &nRoot);
182623 pWriter->iFirst, iLastLeaf, iLast, pWriter->nLeafData, zRoot, nRoot);
184472 int nRoot = 0; /* Size of aRoot[] in bytes */
184487 nRoot = sqlite3_column_bytes(pSelect, 4);
184491 return nRoot ? SQLITE_NOMEM : FTS_CORRUPT_VTAB;
184546 MAX(nRoot, p->nNodeSize)+FTS3_NODE_PADDING, &rc
184549 memcpy(pNode->block.a, aRoot, nRoot);
184550 pNode->block.n = nRoot;
184551 memset(&pNode->block.a[nRoot], 0, FTS3_NODE_PADDING);
184895 int nRoot = sqlite3_column_bytes(pFetch, 4);
184897 rc = fts3TruncateNode(aRoot, nRoot, &root, zTerm, nTerm, &iBlock);