HomeSort by relevance Sort by last modified time
    Searched refs:nSource (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/sqlite/src/ext/fts1/
fts1.c 584 const char *pSource, int nSource){
591 /* Describe slice in d to place pSource/nSource. */
601 ** If nTarget==nSource, we should not move any memory nor realloc.
602 ** If nTarget>nSource, trim target and realloc.
603 ** If nTarget<nSource, realloc then expand target.
605 if( nTarget>nSource ){
606 memmove(pTarget+nSource, pTarget+nTarget, docListEnd(d)-(pTarget+nTarget));
608 if( nTarget!=nSource ){
610 d->pData = realloc(d->pData, d->nData+nSource-nTarget);
613 if( nTarget<nSource ){
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3.c     [all...]
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2.c 535 const char *pSource, int nSource){
536 assert( nSource>0 && pSource!=NULL );
537 dataBufferExpand(pBuffer, nSource);
538 memcpy(pBuffer->pData+pBuffer->nData, pSource, nSource);
539 pBuffer->nData += nSource;
552 const char *pSource, int nSource){
554 dataBufferAppend(pBuffer, pSource, nSource);
    [all...]

Completed in 69 milliseconds