Home
last modified time | relevance | path

Searched refs:nSource2 (Results 1 – 1 of 1) sorted by relevance

/sqlite-3.40.0/ext/fts2/
H A Dfts2.c506 const char *pSource2, int nSource2){ in dataBufferAppend2() argument
508 assert( nSource2>0 && pSource2!=NULL ); in dataBufferAppend2()
509 dataBufferExpand(pBuffer, nSource1+nSource2); in dataBufferAppend2()
511 memcpy(pBuffer->pData+pBuffer->nData+nSource1, pSource2, nSource2); in dataBufferAppend2()
512 pBuffer->nData += nSource1+nSource2; in dataBufferAppend2()