Searched refs:nRoot (Results 1 – 7 of 7) sorted by relevance
| /sqlite-3.40.0/ext/fts3/tool/ |
| H A D | fts3view.c | 290 int nRoot = 0; in showSegmentStats() local 325 nRoot = sqlite3_column_int(pStmt, 0); in showSegmentStats() 331 printf("Number of segments....................... %9d\n", nSeg+nRoot); in showSegmentStats() 334 printf("Number of root segments.................. %9d\n", nRoot); in showSegmentStats() 341 (double)(szSeg+szRoot)/(double)(nSeg+nRoot)); in showSegmentStats() 349 if( nRoot>0 ){ in showSegmentStats() 351 (double)szRoot/(double)nRoot); in showSegmentStats()
|
| /sqlite-3.40.0/src/ |
| H A D | test_fs.c | 486 int nRoot; in fstreeFilter() local 499 nRoot = sqlite3Strlen30(zRoot); in fstreeFilter() 504 nRoot = 1; in fstreeFilter() 510 nDir = nRoot; in fstreeFilter() 543 sqlite3_bind_text(pCsr->pStmt, 2, zRoot, nRoot, SQLITE_TRANSIENT); in fstreeFilter()
|
| H A D | btree.h | 332 char *sqlite3BtreeIntegrityCheck(sqlite3*,Btree*,Pgno*aRoot,int nRoot,int,int*);
|
| H A D | vdbe.c | 6934 int nRoot; /* Number of tables to check. (Number of root pages.) */ in sqlite3VdbeExec() local 6941 nRoot = pOp->p2; in sqlite3VdbeExec() 6943 assert( nRoot>0 ); in sqlite3VdbeExec() 6944 assert( aRoot[0]==(Pgno)nRoot ); in sqlite3VdbeExec() 6952 z = sqlite3BtreeIntegrityCheck(db, db->aDb[pOp->p5].pBt, &aRoot[1], nRoot, in sqlite3VdbeExec()
|
| H A D | btree.c | 10670 int nRoot, /* Number of entries in aRoot[] */ in sqlite3BtreeIntegrityCheck() argument 10682 assert( nRoot>0 ); in sqlite3BtreeIntegrityCheck() 10686 assert( nRoot>1 ); in sqlite3BtreeIntegrityCheck() 10743 for(i=0; (int)i<nRoot; i++) if( mx<aRoot[i] ) mx = aRoot[i]; in sqlite3BtreeIntegrityCheck() 10760 for(i=0; (int)i<nRoot && sCheck.mxErr; i++){ in sqlite3BtreeIntegrityCheck()
|
| /sqlite-3.40.0/ext/fts3/ |
| H A D | fts3_write.c | 1627 assert( zRoot!=0 || nRoot==0 ); in sqlite3Fts3SegReaderNew() 1634 nExtra = nRoot + FTS3_NODE_PADDING; in sqlite3Fts3SegReaderNew() 1652 pReader->nNode = nRoot; in sqlite3Fts3SegReaderNew() 1653 if( nRoot ) memcpy(pReader->aNode, zRoot, nRoot); in sqlite3Fts3SegReaderNew() 1654 memset(&pReader->aNode[nRoot], 0, FTS3_NODE_PADDING); in sqlite3Fts3SegReaderNew() 4279 nRoot = sqlite3_column_bytes(pSelect, 4); in fts3IncrmergeLoad() 4283 return nRoot ? SQLITE_NOMEM : FTS_CORRUPT_VTAB; in fts3IncrmergeLoad() 4338 MAX(nRoot, p->nNodeSize)+FTS3_NODE_PADDING, &rc in fts3IncrmergeLoad() 4341 memcpy(pNode->block.a, aRoot, nRoot); in fts3IncrmergeLoad() 4342 pNode->block.n = nRoot; in fts3IncrmergeLoad() [all …]
|
| H A D | fts3.c | 3007 int nRoot = sqlite3_column_bytes(pStmt, 4); in fts3SegReaderCursor() local 3014 rc = fts3SelectLeaf(p, zTerm, nTerm, zRoot, nRoot, &iStartBlock, pi); in fts3SegReaderCursor() 3022 iEndBlock, zRoot, nRoot, &pSeg in fts3SegReaderCursor()
|