Home
last modified time | relevance | path

Searched refs:pTail (Results 1 – 7 of 7) sorted by relevance

/sqlite-3.40.0/src/
H A Drowset.c246 struct RowSetEntry *pTail; in rowSetEntryMerge() local
248 pTail = &head; in rowSetEntryMerge()
254 if( pA->v<pB->v ) pTail = pTail->pRight = pA; in rowSetEntryMerge()
257 pTail->pRight = pB; in rowSetEntryMerge()
261 pTail = pTail->pRight = pB; in rowSetEntryMerge()
264 pTail->pRight = pA; in rowSetEntryMerge()
465 struct RowSetEntry *pAux, *pTail; in sqlite3RowSetTest() local
466 rowSetTreeToList(pTree->pLeft, &pAux, &pTail); in sqlite3RowSetTest()
H A Dpcache.c733 PgHdr result, *pTail; in pcacheMergeDirtyList() local
734 pTail = &result; in pcacheMergeDirtyList()
738 pTail->pDirty = pA; in pcacheMergeDirtyList()
739 pTail = pA; in pcacheMergeDirtyList()
742 pTail->pDirty = pB; in pcacheMergeDirtyList()
746 pTail->pDirty = pB; in pcacheMergeDirtyList()
747 pTail = pB; in pcacheMergeDirtyList()
750 pTail->pDirty = pA; in pcacheMergeDirtyList()
H A Dtest1.c4794 Tcl_Obj *pTail = 0; in test_prepare16() local
4822 pTail = Tcl_NewByteArrayObj((u8 *)zTail, objlen); in test_prepare16()
4823 Tcl_IncrRefCount(pTail); in test_prepare16()
4824 Tcl_ObjSetVar2(interp, objv[4], 0, pTail, 0); in test_prepare16()
4825 Tcl_DecrRefCount(pTail); in test_prepare16()
4854 Tcl_Obj *pTail = 0; in test_prepare16_v2() local
4882 pTail = Tcl_NewByteArrayObj((u8 *)zTail, objlen); in test_prepare16_v2()
4883 Tcl_IncrRefCount(pTail); in test_prepare16_v2()
4884 Tcl_ObjSetVar2(interp, objv[4], 0, pTail, 0); in test_prepare16_v2()
4885 Tcl_DecrRefCount(pTail); in test_prepare16_v2()
/sqlite-3.40.0/ext/misc/
H A Dfuzzer.c263 fuzzer_rule *pTail; in fuzzerMergeRules() local
265 pTail = &head; in fuzzerMergeRules()
269 pTail = pA; in fuzzerMergeRules()
273 pTail = pB; in fuzzerMergeRules()
278 pTail->pNext = pB; in fuzzerMergeRules()
280 pTail->pNext = pA; in fuzzerMergeRules()
768 fuzzer_stem *pTail; in fuzzerMergeStems() local
770 pTail = &head; in fuzzerMergeStems()
774 pTail = pA; in fuzzerMergeStems()
778 pTail = pB; in fuzzerMergeStems()
[all …]
H A Damatch.c536 amatch_rule *pTail; in amatchMergeRules() local
538 pTail = &head; in amatchMergeRules()
541 pTail->pNext = pA; in amatchMergeRules()
542 pTail = pA; in amatchMergeRules()
545 pTail->pNext = pB; in amatchMergeRules()
546 pTail = pB; in amatchMergeRules()
551 pTail->pNext = pB; in amatchMergeRules()
553 pTail->pNext = pA; in amatchMergeRules()
/sqlite-3.40.0/ext/expert/
H A Dsqlite3expert.c886 IdxConstraint *pTail /* List of range constraints */ in idxFindCompatible() argument
900 IdxConstraint *pT = pTail; in idxFindCompatible()
966 IdxConstraint *pTail in idxCreateFromCons() argument
970 if( (pEq || pTail) && 0==idxFindCompatible(&rc, dbm, pScan, pEq, pTail) ){ in idxCreateFromCons()
981 for(pCons=pTail; pCons; pCons=pCons->pLink){ in idxCreateFromCons()
1061 IdxConstraint *pTail /* range/ORDER BY constraints for inclusion */ in idxCreateFromWhere() argument
1069 if( !idxFindConstraint(p1, pCon) && !idxFindConstraint(pTail, pCon) ){ in idxCreateFromWhere()
1077 rc = idxCreateFromCons(p, pScan, p1, pTail); in idxCreateFromWhere()
1081 if( pTail==0 ){ in idxCreateFromWhere()
1084 if( !idxFindConstraint(p1, pCon) && !idxFindConstraint(pTail, pCon) ){ in idxCreateFromWhere()
/sqlite-3.40.0/ext/fts3/
H A Dfts3_snippet.c77 char *pTail; /* Position list data following iTail */ member
406 fts3SnippetAdvance(&pPhrase->pTail, &pPhrase->iTail, iStart); in fts3SnippetNextCandidate()
433 if( pPhrase->pTail ){ in fts3SnippetDetails()
434 char *pCsr = pPhrase->pTail; in fts3SnippetDetails()
488 pPhrase->pTail = pCsr; in fts3SnippetFindPositions()
494 pPhrase->pList==0 && pPhrase->pHead==0 && pPhrase->pTail==0 in fts3SnippetFindPositions()