Searched refs:pBest (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dcallback.c334 FuncDef *pBest = 0; /* Best match found so far */ local
348 pBest = p;
366 if( !createFlag && (pBest==0 || (db->flags & SQLITE_PreferBuiltin)!=0) ){
373 pBest = p;
384 if( createFlag && (bestScore<6 || pBest->nArg!=nArg) &&
385 (pBest = sqlite3DbMallocZero(db, sizeof(*pBest)+nName+1))!=0 ){
386 pBest->zName = (char *)&pBest[1];
387 pBest
[all...]
H A Dtest_fuzzer.c496 fuzzer_stem *pBest, *pX; local
502 pBest = 0;
506 if( pBest==0 || pBest->rCostX>pX->rCostX ){
507 pBest = pX;
511 if( pBest ){
512 pCur->aQueue[iBest] = pBest->pNext;
513 pBest->pNext = 0;
514 pCur->pStem = pBest;
H A Dselect.c4228 Index *pBest = 0; /* Best index found so far */ local
4246 if( !pBest || pIdx->nColumn<pBest->nColumn ){
4247 pBest = pIdx;
4250 if( pBest && pBest->nColumn<pTab->nCol ){
4251 iRoot = pBest->tnum;
4252 pKeyInfo = sqlite3IndexKeyinfo(pParse, pBest);
4262 explainSimpleCount(pParse, pTab, pBest);
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3.c2828 ExprAndCost *pBest = 0; local
2832 if( pCand->pExpr && (pBest==0 || pCand->nCost<pBest->nCost) ){
2833 pBest = pCand;
2837 if( pBest->nCost>nDoc ){
2841 rc = fts3EvalExpr(p, pBest->pExpr, &aNew, &nNew, 0);
2843 pBest->pExpr = 0;
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c80932 FuncDef *pBest = 0; /* Best match found so far */ local
83020 Mem *pBest; local
94150 Index *pBest = 0; /* Best index found so far */ local
115889 ExprAndCost *pBest = 0; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c84055 Stat4Sample *pBest = &p->aBest[i]; local
90707 FuncDef *pBest = 0; /* Best match found so far */ local
93136 Mem *pBest; local
106610 Index *pBest = 0; /* Best index found so far */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c84075 Stat4Sample *pBest = &p->aBest[i]; local
90727 FuncDef *pBest = 0; /* Best match found so far */ local
93156 Mem *pBest; local
106630 Index *pBest = 0; /* Best index found so far */ local
[all...]

Completed in 656 milliseconds