Lines Matching defs:nAppend
196302 ** If nAppend is negative, then the length of the string zAppend is
196308 int nAppend /* Size of zAppend in bytes (or -1) */
196310 if( nAppend<0 ){
196311 nAppend = (int)strlen(zAppend);
196318 if( pStr->n+nAppend+1>=pStr->nAlloc ){
196319 sqlite3_int64 nAlloc = pStr->nAlloc+(sqlite3_int64)nAppend+100;
196327 assert( pStr->z!=0 && (pStr->nAlloc >= pStr->n+nAppend+1) );
196330 memcpy(&pStr->z[pStr->n], zAppend, nAppend);
196331 pStr->n += nAppend;
236618 int nAppend;
236621 iOff += fts5GetVarint32(&a[iOff], nAppend);
236623 fts5BufferAppendBlob(&rc, &term, nAppend, &a[iOff]);
236627 iOff += nAppend;