Lines Matching refs:nRoot
17383 int nRoot, /* Number of entries in aRoot[] */
84252 int nRoot, /* Number of entries in aRoot[] */ argument
84266 assert( nRoot>0 );
84271 assert( nRoot>1 );
84322 for(i=0; (int)i<nRoot; i++) if( mx<aRoot[i] ) mx = aRoot[i];
84339 for(i=0; (int)i<nRoot && sCheck.mxErr; i++){
103712 int nRoot; /* Number of tables to check. (Number of root pages.) */ local
103720 nRoot = pOp->p2;
103722 assert( nRoot>0 );
103724 assert( aRoot[0]==(Pgno)nRoot );
103733 &aMem[pOp->p3], nRoot, (int)pnErr->u.i+1, &nErr, &z);
196636 int nRoot = sqlite3_column_bytes(pStmt, 4); local
196643 rc = fts3SelectLeaf(p, zTerm, nTerm, zRoot, nRoot, &iStartBlock, pi);
196651 iEndBlock, zRoot, nRoot, &pSeg
205628 int nRoot, /* Size of buffer containing root node */ argument
205634 assert( zRoot!=0 || nRoot==0 );
205641 nExtra = nRoot + FTS3_NODE_PADDING;
205659 pReader->nNode = nRoot;
205660 if( nRoot ) memcpy(pReader->aNode, zRoot, nRoot);
205661 memset(&pReader->aNode[nRoot], 0, FTS3_NODE_PADDING);
205982 int nRoot /* Number of bytes in buffer zRoot */ argument
205998 sqlite3_bind_blob(pStmt, 6, zRoot, nRoot, SQLITE_STATIC);
206403 int nRoot = 0; /* Size of buffer zRoot */ local
206409 pWriter->iFirst, pWriter->iFree, &iLast, &zRoot, &nRoot);
206413 pWriter->iFirst, iLastLeaf, iLast, pWriter->nLeafData, zRoot, nRoot);
208282 int nRoot = 0; /* Size of aRoot[] in bytes */ local
208297 nRoot = sqlite3_column_bytes(pSelect, 4);
208301 return nRoot ? SQLITE_NOMEM : FTS_CORRUPT_VTAB;
208356 MAX(nRoot, p->nNodeSize)+FTS3_NODE_PADDING, &rc
208359 memcpy(pNode->block.a, aRoot, nRoot);
208360 pNode->block.n = nRoot;
208361 memset(&pNode->block.a[nRoot], 0, FTS3_NODE_PADDING);
208706 int nRoot = sqlite3_column_bytes(pFetch, 4); local
208708 rc = fts3TruncateNode(aRoot, nRoot, &root, zTerm, nTerm, &iBlock);
217448 u32 nRoot; /* Size of the root path in bytes */ member
217714 if( p->nRoot==1 ) break;
217716 n = p->nRoot - j;
217784 sqlite3_result_text(ctx, p->path.zBuf, p->nRoot, SQLITE_STATIC);
217919 p->nRoot = sqlite3Strlen30(zRoot);
217945 jsonAppendRaw(&p->path, zRoot, p->nRoot);
217949 p->nRoot = 1;