Lines Matching full:atc
140679 ** deferred. The array aTC[] has already been populated when this is
140694 Fts3TokenAndCost *aTC, /* Array of expression tokens and costs */
140695 int nTC /* Number of entries in aTC[] */
140720 if( aTC[ii].pRoot==pRoot ){
140721 nOvfl += aTC[ii].nOvfl;
140755 int iTC; /* Used to iterate through aTC[] array. */
140760 if( aTC[iTC].pToken && aTC[iTC].pRoot==pRoot
140761 && (!pTC || aTC[iTC].nOvfl<pTC->nOvfl)
140763 pTC = &aTC[iTC];
140836 Fts3TokenAndCost *aTC;
140838 aTC = (Fts3TokenAndCost *)sqlite3_malloc(
140842 apOr = (Fts3Expr **)&aTC[nToken];
140844 if( !aTC ){
140848 Fts3TokenAndCost *pTC = aTC;
140852 nToken = (int)(pTC-aTC);
140856 rc = fts3EvalSelectDeferred(pCsr, 0, aTC, nToken);
140858 rc = fts3EvalSelectDeferred(pCsr, apOr[ii], aTC, nToken);
140862 sqlite3_free(aTC);