Lines Matching refs:aInst
259863 int *aInst; /* 3 integers per phrase instance */ member
260469 sqlite3_free(pCsr->aInst);
262043 int *aInst; local
262057 aInst = (int*)sqlite3_realloc64(
262058 pCsr->aInst, nNewSize*sizeof(int)*3
262060 if( aInst ){
262061 pCsr->aInst = aInst;
262070 aInst = &pCsr->aInst[3 * (nInst-1)];
262071 aInst[0] = iBest;
262072 aInst[1] = FTS5_POS2COLUMN(aIter[iBest].iPos);
262073 aInst[2] = FTS5_POS2OFFSET(aIter[iBest].iPos);
262074 assert( aInst[1]>=0 );
262075 if( aInst[1]>=nCol ){
262114 *piPhrase = pCsr->aInst[iIdx*3];
262115 *piCol = pCsr->aInst[iIdx*3 + 1];
262116 *piOff = pCsr->aInst[iIdx*3 + 2];
262403 int iPhrase = pCsr->aInst[iIdx*3];
262404 int iCol = pCsr->aInst[iIdx*3 + 1];
262405 int iOff = pCsr->aInst[iIdx*3 + 2];