Searched refs:nRoot (Results 1 – 5 of 5) sorted by relevance
/PHP-5.3/ext/sqlite/libsqlite/src/ |
H A D | btree.h | 141 #define sqliteBtreeIntegrityCheck(pBt, aRoot, nRoot)\ argument 142 (btOps(pBt)->IntegrityCheck(pBt, aRoot, nRoot))
|
H A D | vdbe.c | 3718 int nRoot; in sqliteVdbeExec() local 3729 nRoot = sqliteHashCount(&pSet->hash); in sqliteVdbeExec() 3730 aRoot = sqliteMallocRaw( sizeof(int)*(nRoot+1) ); in sqliteVdbeExec() 3738 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 | 3424 char *fileBtreeIntegrityCheck(Btree *pBt, int *aRoot, int nRoot){ in fileBtreeIntegrityCheck() argument 3452 for(i=0; i<nRoot; i++){ in fileBtreeIntegrityCheck()
|
/PHP-5.3/ext/sqlite3/libsqlite/ |
H A D | sqlite3.c | 55342 int nRoot, /* Number of entries in aRoot[] */ 55387 for(i=0; (int)i<nRoot && sCheck.mxErr; i++){ 67634 u.bv.nRoot = pOp->p2; 67635 assert( u.bv.nRoot>0 ); 67643 for(u.bv.j=0; u.bv.j<u.bv.nRoot; u.bv.j++){ 114229 int nRoot = sqlite3_column_bytes(pStmt, 4); 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); [all …]
|
Completed in 317 milliseconds