Searched refs:nRoot (Results 1 – 5 of 5) sorted by relevance
/illumos-gate/usr/src/lib/libsqlite/src/ |
H A D | btree.h | 141 #define sqliteBtreeIntegrityCheck(pBt, aRoot, nRoot)\ argument 142 (btOps(pBt)->IntegrityCheck(pBt, aRoot, nRoot))
|
H A D | test3.c | 481 int nRoot; in btree_integrity_check() local 491 nRoot = argc-2; in btree_integrity_check() 496 zResult = sqliteBtreeIntegrityCheck(pBt, aRoot, nRoot); in btree_integrity_check()
|
H A D | vdbe.c | 3727 int nRoot; in sqliteVdbeExec() local 3738 nRoot = sqliteHashCount(&pSet->hash); in sqliteVdbeExec() 3739 aRoot = sqliteMallocRaw( sizeof(int)*(nRoot+1) ); in sqliteVdbeExec() 3747 z = sqliteBtreeIntegrityCheck(db->aDb[pOp->p2].pBt, aRoot, nRoot); in sqliteVdbeExec()
|
H A D | btree_rb.c | 1242 static char *memRbtreeIntegrityCheck(Rbtree* tree, int* aRoot, int nRoot) in memRbtreeIntegrityCheck() argument
|
H A D | btree.c | 3431 char *fileBtreeIntegrityCheck(Btree *pBt, int *aRoot, int nRoot){ in fileBtreeIntegrityCheck() argument 3459 for(i=0; i<nRoot; i++){ in fileBtreeIntegrityCheck()
|