Lines Matching refs:apOut
236901 sqlite3_value **apOut, /* Write values to this array */ argument
236918 assert( apOut[i]==0 );
236921 apOut[i] = sqlite3ValueNew(0);
236922 if( !apOut[i] ) rc = SQLITE_NOMEM;
236939 rc = sessionValueSetStr(apOut[i],&pIn->aData[pIn->iNext],nByte,enc);
236950 sqlite3VdbeMemSetInt64(apOut[i], v);
236954 sqlite3VdbeMemSetDouble(apOut[i], d);
257985 Fts5Data **apOut /* Array of output hash pages */ argument
257992 apOut[ii]->p[0] = szKey;
257993 fts5PutU32(&apOut[ii]->p[4], 0);
258025 Fts5Data *pPg = apOut[(iVal % nOut)];
258034 apOut[0]->p[1] = pData->p[1];
258111 Fts5Data **apOut = 0; local
258115 apOut = (Fts5Data**)sqlite3Fts5MallocZero(&p->rc, sizeof(Fts5Data*) * nOut);
258124 apOut[ii] = pNew;
258130 res = fts5IndexTombstoneRehash(p, pSeg, pData1, iPg1, szKey, nOut, apOut);
258134 fts5IndexFreeArray(apOut, nOut);
258135 apOut = 0;
258139 *papOut = apOut;
258146 fts5IndexFreeArray(apOut, nOut);