Lines Matching full:atc
140649 ** deferred. The array aTC[] has already been populated when this is
140664 Fts3TokenAndCost *aTC, /* Array of expression tokens and costs */
140665 int nTC /* Number of entries in aTC[] */
140690 if( aTC[ii].pRoot==pRoot ){
140691 nOvfl += aTC[ii].nOvfl;
140725 int iTC; /* Used to iterate through aTC[] array. */
140730 if( aTC[iTC].pToken && aTC[iTC].pRoot==pRoot
140731 && (!pTC || aTC[iTC].nOvfl<pTC->nOvfl)
140733 pTC = &aTC[iTC];
140806 Fts3TokenAndCost *aTC;
140808 aTC = (Fts3TokenAndCost *)sqlite3_malloc(
140812 apOr = (Fts3Expr **)&aTC[nToken];
140814 if( !aTC ){
140818 Fts3TokenAndCost *pTC = aTC;
140822 nToken = (int)(pTC-aTC);
140826 rc = fts3EvalSelectDeferred(pCsr, 0, aTC, nToken);
140828 rc = fts3EvalSelectDeferred(pCsr, apOr[ii], aTC, nToken);
140832 sqlite3_free(aTC);