Searched refs:pOther (Results 1 – 9 of 9) sorted by relevance
| /sqlite-3.40.0/tool/ |
| H A D | mkkeywordhash.c | 443 Keyword *pOther = &aKeywordTable[j]; in main() local 444 if( pOther->substrId ) continue; in main() 445 if( pOther->len<=p->len ) continue; in main() 446 for(k=0; k<=pOther->len-p->len; k++){ in main() 448 p->substrId = pOther->id; in main() 461 Keyword *pOther; in main() local 463 pOther = &aKeywordTable[j]; in main() 464 if( pOther->substrId ) continue; in main() 486 if( pOther->offset>0 || pOther->substrId ) continue; in main() 487 if( pOther->len<=k ) continue; in main() [all …]
|
| /sqlite-3.40.0/src/ |
| H A D | callback.c | 357 FuncDef *pOther; in sqlite3InsertBuiltinFuncs() local 362 pOther = sqlite3FunctionSearch(h, zName); in sqlite3InsertBuiltinFuncs() 363 if( pOther ){ in sqlite3InsertBuiltinFuncs() 364 assert( pOther!=&aDef[i] && pOther->pNext!=&aDef[i] ); in sqlite3InsertBuiltinFuncs() 365 aDef[i].pNext = pOther->pNext; in sqlite3InsertBuiltinFuncs() 366 pOther->pNext = &aDef[i]; in sqlite3InsertBuiltinFuncs() 457 FuncDef *pOther; in sqlite3FindFunction() local 464 pOther = (FuncDef*)sqlite3HashInsert(&db->aFunc, pBest->zName, pBest); in sqlite3FindFunction() 465 if( pOther==pBest ){ in sqlite3FindFunction() 470 pBest->pNext = pOther; in sqlite3FindFunction()
|
| H A D | pcache.c | 652 sqlite3_pcache_page *pOther; in sqlite3PcacheMove() local 657 pOther = sqlite3GlobalConfig.pcache2.xFetch(pCache->pCache, newPgno, 0); in sqlite3PcacheMove() 658 if( pOther ){ in sqlite3PcacheMove() 659 PgHdr *pXPage = (PgHdr*)pOther->pExtra; in sqlite3PcacheMove()
|
| H A D | pcache1.c | 904 PCache1 *pOther; in pcache1FetchStage2() local 909 pOther = pPage->pCache; in pcache1FetchStage2() 910 if( pOther->szAlloc != pCache->szAlloc ){ in pcache1FetchStage2() 914 pGroup->nPurgeable -= (pOther->bPurgeable - pCache->bPurgeable); in pcache1FetchStage2()
|
| H A D | build.c | 2532 Table *pOther = sqliteHashData(k); in sqlite3MarkAllShadowTablesOf() local 2533 assert( pOther->zName!=0 ); in sqlite3MarkAllShadowTablesOf() 2534 if( !IsOrdinaryTable(pOther) ) continue; in sqlite3MarkAllShadowTablesOf() 2535 if( pOther->tabFlags & TF_Shadow ) continue; in sqlite3MarkAllShadowTablesOf() 2536 if( sqlite3StrNICmp(pOther->zName, pTab->zName, nName)==0 in sqlite3MarkAllShadowTablesOf() 2537 && pOther->zName[nName]=='_' in sqlite3MarkAllShadowTablesOf() 2538 && pMod->pModule->xShadowName(pOther->zName+nName+1) in sqlite3MarkAllShadowTablesOf() 2540 pOther->tabFlags |= TF_Shadow; in sqlite3MarkAllShadowTablesOf()
|
| H A D | whereexpr.c | 719 WhereTerm *pOther = &pOrWc->a[pOrTerm->iParent]; in exprAnalyzeOrTerm() local 720 b |= sqlite3WhereGetMask(&pWInfo->sMaskSet, pOther->leftCursor); in exprAnalyzeOrTerm()
|
| H A D | btree.c | 8710 BtCursor *pOther; in anotherValidCursor() local 8711 for(pOther=pCur->pBt->pCursor; pOther; pOther=pOther->pNext){ in anotherValidCursor() 8712 if( pOther!=pCur in anotherValidCursor() 8713 && pOther->eState==CURSOR_VALID in anotherValidCursor() 8714 && pOther->pPage==pCur->pPage in anotherValidCursor()
|
| /sqlite-3.40.0/ext/misc/ |
| H A D | amatch.c | 1031 amatch_avl *pOther; in amatchAddWord() local 1068 pOther = amatchAvlInsert(&pCur->pCost, &pWord->sCost); in amatchAddWord() 1069 assert( pOther==0 ); (void)pOther; in amatchAddWord() 1084 pOther = amatchAvlInsert(&pCur->pCost, &pWord->sCost); in amatchAddWord() 1085 assert( pOther==0 ); (void)pOther; in amatchAddWord() 1089 pOther = amatchAvlInsert(&pCur->pWord, &pWord->sWord); in amatchAddWord() 1090 assert( pOther==0 ); (void)pOther; in amatchAddWord()
|
| /sqlite-3.40.0/ext/fts5/ |
| H A D | fts5_index.c | 2869 Fts5SegIter *pOther = &pIter->aSeg[iChanged ^ 0x0001]; in fts5MultiIterAdvanceRowid() local 2875 assert( pRes->bTermEq==0 || pOther->pLeaf ); in fts5MultiIterAdvanceRowid() 2878 if( pNew->iRowid==pOther->iRowid ){ in fts5MultiIterAdvanceRowid() 2880 }else if( (pOther->iRowid>pNew->iRowid)==pIter->bRev ){ in fts5MultiIterAdvanceRowid() 2881 pIter->iSwitchRowid = pOther->iRowid; in fts5MultiIterAdvanceRowid() 2882 pNew = pOther; in fts5MultiIterAdvanceRowid() 2883 }else if( (pOther->iRowid>pIter->iSwitchRowid)==pIter->bRev ){ in fts5MultiIterAdvanceRowid() 2884 pIter->iSwitchRowid = pOther->iRowid; in fts5MultiIterAdvanceRowid() 2890 pOther = &pIter->aSeg[ pIter->aFirst[i ^ 0x0001].iFirst ]; in fts5MultiIterAdvanceRowid()
|