Home
last modified time | relevance | path

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

/sqlite-3.40.0/ext/misc/
H A Ddbdump.c97 int nAppend = (int)(strlen(zAppend) & 0x3fffffff); in appendText() local
99 len = nAppend+p->n+1; in appendText()
102 for(i=0; i<nAppend; i++){ in appendText()
121 for(i=0; i<nAppend; i++){ in appendText()
129 memcpy(p->z+p->n, zAppend, nAppend); in appendText()
130 p->n += nAppend; in appendText()
/sqlite-3.40.0/ext/fts3/
H A Dfts3_snippet.c604 int nAppend /* Size of zAppend in bytes (or -1) */ in fts3StringAppend() argument
606 if( nAppend<0 ){ in fts3StringAppend()
607 nAppend = (int)strlen(zAppend); in fts3StringAppend()
614 if( pStr->n+nAppend+1>=pStr->nAlloc ){ in fts3StringAppend()
615 sqlite3_int64 nAlloc = pStr->nAlloc+(sqlite3_int64)nAppend+100; in fts3StringAppend()
623 assert( pStr->z!=0 && (pStr->nAlloc >= pStr->n+nAppend+1) ); in fts3StringAppend()
626 memcpy(&pStr->z[pStr->n], zAppend, nAppend); in fts3StringAppend()
627 pStr->n += nAppend; in fts3StringAppend()
/sqlite-3.40.0/ext/expert/
H A Dsqlite3expert.c794 int nAppend = 0; in idxAppendText() local
799 nAppend = STRLEN(zAppend); in idxAppendText()
800 zRet = (char*)sqlite3_malloc(nIn + nAppend + 1); in idxAppendText()
804 memcpy(&zRet[nIn], zAppend, nAppend+1); in idxAppendText()
/sqlite-3.40.0/test/
H A Dcorrupt2.test357 set nAppend [expr 1024*207 - [file size corrupt.db]]
360 puts -nonewline $fd [string repeat x $nAppend]
/sqlite-3.40.0/ext/fts5/
H A Dfts5_index.c6613 int nAppend; in fts5DecodeFunction() local
6616 iOff += fts5GetVarint32(&a[iOff], nAppend); in fts5DecodeFunction()
6618 fts5BufferAppendBlob(&rc, &term, nAppend, &a[iOff]); in fts5DecodeFunction()
6622 iOff += nAppend; in fts5DecodeFunction()
/sqlite-3.40.0/src/
H A Dshell.c.in836 i64 nAppend = strlen30(zAppend); local
838 len = nAppend+p->n+1;
841 for(i=0; i<nAppend; i++){
855 for(i=0; i<nAppend; i++){
863 memcpy(p->z+p->n, zAppend, nAppend);
864 p->n += nAppend;