Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dfunc.c1808 int *pnsl = pGCC->pnSepLengths; in groupConcatStep() local
1809 if( pnsl == 0 ){ in groupConcatStep()
1811 pnsl = (int*)sqlite3_malloc64((pGCC->nAccum+1) * sizeof(int)); in groupConcatStep()
1812 if( pnsl!=0 ){ in groupConcatStep()
1814 while( i<nA ) pnsl[i++] = pGCC->nFirstSepLength; in groupConcatStep()
1817 pnsl = (int*)sqlite3_realloc64(pnsl, pGCC->nAccum * sizeof(int)); in groupConcatStep()
1819 if( pnsl!=0 ){ in groupConcatStep()
1821 pnsl[pGCC->nAccum-1] = nSep; in groupConcatStep()
1823 pGCC->pnSepLengths = pnsl; in groupConcatStep()