Searched refs:pSorter (Results 1 – 2 of 2) sorted by relevance
3925 Sorter *pSorter; in sqliteVdbeExec() local3928 pSorter = sqliteMallocRaw( sizeof(Sorter) ); in sqliteVdbeExec()3929 if( pSorter==0 ) goto no_mem; in sqliteVdbeExec()3930 pSorter->pNext = p->pSort; in sqliteVdbeExec()3931 p->pSort = pSorter; in sqliteVdbeExec()3933 pSorter->nKey = pTos->n; in sqliteVdbeExec()3934 pSorter->zKey = pTos->z; in sqliteVdbeExec()3936 pSorter->nData = pNos->n; in sqliteVdbeExec()3937 pSorter->pData = pNos->z; in sqliteVdbeExec()4091 Sorter *pSorter = p->pSort; in sqliteVdbeExec() local[all …]
661 Sorter *pSorter = p->pSort; in sqliteVdbeSorterReset() local662 p->pSort = pSorter->pNext; in sqliteVdbeSorterReset()663 sqliteFree(pSorter->zKey); in sqliteVdbeSorterReset()664 sqliteFree(pSorter->pData); in sqliteVdbeSorterReset()665 sqliteFree(pSorter); in sqliteVdbeSorterReset()