Lines Matching refs:aOut
9305 u8 *aOut = pBt->pTmpSpace; /* Pointer to next output buffer */ in sqlite3BtreeTransferRow() local
9312 *(aOut++) = pSrc->info.nPayload; in sqlite3BtreeTransferRow()
9314 aOut += sqlite3PutVarint(aOut, pSrc->info.nPayload); in sqlite3BtreeTransferRow()
9316 if( pDest->pKeyInfo==0 ) aOut += putVarint(aOut, iKey); in sqlite3BtreeTransferRow()
9324 memcpy(aOut, aIn, nIn); in sqlite3BtreeTransferRow()
9325 pBt->nPreformatSize = nIn + (aOut - pBt->pTmpSpace); in sqlite3BtreeTransferRow()
9335 pBt->nPreformatSize = nOut + (aOut - pBt->pTmpSpace); in sqlite3BtreeTransferRow()
9337 pPgnoOut = &aOut[nOut]; in sqlite3BtreeTransferRow()
9354 memcpy(aOut, aIn, nCopy); in sqlite3BtreeTransferRow()
9357 aOut += nCopy; in sqlite3BtreeTransferRow()
9386 aOut = &pPgnoOut[4]; in sqlite3BtreeTransferRow()