Searched refs:pSorter (Results 1 – 2 of 2) sorted by relevance
3927 Sorter *pSorter; in sqliteVdbeExec() local3930 pSorter = sqliteMallocRaw( sizeof(Sorter) ); in sqliteVdbeExec()3931 if( pSorter==0 ) goto no_mem; in sqliteVdbeExec()3932 pSorter->pNext = p->pSort; in sqliteVdbeExec()3933 p->pSort = pSorter; in sqliteVdbeExec()3935 pSorter->nKey = pTos->n; in sqliteVdbeExec()3936 pSorter->zKey = pTos->z; in sqliteVdbeExec()3938 pSorter->nData = pNos->n; in sqliteVdbeExec()3939 pSorter->pData = pNos->z; in sqliteVdbeExec()4093 Sorter *pSorter = p->pSort; in sqliteVdbeExec() local[all …]
664 Sorter *pSorter = p->pSort; in sqliteVdbeSorterReset() local665 p->pSort = pSorter->pNext; in sqliteVdbeSorterReset()666 sqliteFree(pSorter->zKey); in sqliteVdbeSorterReset()667 sqliteFree(pSorter->pData); in sqliteVdbeSorterReset()668 sqliteFree(pSorter); in sqliteVdbeSorterReset()