Home
last modified time | relevance | path

Searched refs:nSlot (Results 1 – 2 of 2) sorted by relevance

/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dwhere.c66 static int exprSplit(int nSlot, ExprInfo *aSlot, Expr *pExpr){ in exprSplit() argument
68 if( pExpr==0 || nSlot<1 ) return 0; in exprSplit()
69 if( nSlot==1 || pExpr->op!=TK_AND ){ in exprSplit()
75 cnt = 1 + exprSplit(nSlot-1, &aSlot[1], pExpr->pRight); in exprSplit()
77 cnt = exprSplit(nSlot, aSlot, pExpr->pLeft); in exprSplit()
78 cnt += exprSplit(nSlot-cnt, &aSlot[cnt], pExpr->pRight); in exprSplit()
/PHP-5.3/ext/sqlite3/libsqlite/
H A Dsqlite3.c35404 int nSlot; /* The number of pcache slots */
35463 pcache1.nSlot = pcache1.nFreeSlot = n;
35533 assert( pcache1.nFreeSlot<=pcache1.nSlot );
35634 if( pcache1.nSlot && pCache->szPage<=pcache1.szSlot ){
98469 int nSlot; /* Number of entries in a[] */
98600 pWC->nSlot = ArraySize(pWC->aStatic);
98670 if( pWC->nTerm>=pWC->nSlot ){
98673 pWC->a = sqlite3DbMallocRaw(db, sizeof(pWC->a[0])*pWC->nSlot*2 );
98685 pWC->nSlot = sqlite3DbMallocSize(db, pWC->a)/sizeof(pWC->a[0]);

Completed in 396 milliseconds