Lines Matching refs:nAccum
1761 int nAccum; /* Number of strings presently concatenated */ member
1811 pnsl = (int*)sqlite3_malloc64((pGCC->nAccum+1) * sizeof(int)); in groupConcatStep()
1813 int i = 0, nA = pGCC->nAccum-1; in groupConcatStep()
1817 pnsl = (int*)sqlite3_realloc64(pnsl, pGCC->nAccum * sizeof(int)); in groupConcatStep()
1820 if( ALWAYS(pGCC->nAccum>0) ){ in groupConcatStep()
1821 pnsl[pGCC->nAccum-1] = nSep; in groupConcatStep()
1834 pGCC->nAccum += 1; in groupConcatStep()
1861 pGCC->nAccum -= 1; in groupConcatInverse()
1863 assert(pGCC->nAccum >= 0); in groupConcatInverse()
1864 if( pGCC->nAccum>0 ){ in groupConcatInverse()
1867 (pGCC->nAccum-1)*sizeof(int)); in groupConcatInverse()