Searched refs:aList (Results 1 – 3 of 3) sorted by relevance
| /sqlite-3.40.0/test/ |
| H A D | rowvalue2.test | 173 set aList [list] 175 lappend aList "$c == $v" 177 lappend aList "[lindex $cList end] $op [lindex $vList end]" 179 return "([join $aList { AND }])" 187 set aList [list] 188 foreach c $cList v $vList { lappend aList "($c $op $v)" } 189 set ret [join $aList " AND "]
|
| /sqlite-3.40.0/src/ |
| H A D | wal.c | 1703 ht_slot *aList, /* IN/OUT: List to sort */ in walMergesort() argument 1708 ht_slot *aList; /* Pointer to sub-list content */ in walMergesort() member 1724 aMerge = &aList[iList]; in walMergesort() 1729 assert( p->aList && p->nList<=(1<<iSub) ); in walMergesort() 1730 assert( p->aList==&aList[iList&~((2<<iSub)-1)] ); in walMergesort() 1731 walMerge(aContent, p->aList, p->nList, &aMerge, &nMerge, aBuffer); in walMergesort() 1733 aSub[iSub].aList = aMerge; in walMergesort() 1743 assert( p->aList==&aList[nList&~((2<<iSub)-1)] ); in walMergesort() 1744 walMerge(aContent, p->aList, p->nList, &aMerge, &nMerge, aBuffer); in walMergesort() 1747 assert( aMerge==aList ); in walMergesort() [all …]
|
| /sqlite-3.40.0/ext/fts3/ |
| H A D | fts3.c | 3220 static int fts3DoclistCountDocids(char *aList, int nList){ in fts3DoclistCountDocids() argument 3222 if( aList ){ in fts3DoclistCountDocids() 3223 char *aEnd = &aList[nList]; /* Pointer to one byte after EOF */ in fts3DoclistCountDocids() 3224 char *p = aList; /* Cursor */ in fts3DoclistCountDocids()
|