Home
last modified time | relevance | path

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

/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dprintf.c659 static void mout(void *arg, const char *zNewText, int nNewChar){ in mout() argument
661 pM->nTotal += nNewChar; in mout()
662 if( pM->nChar + nNewChar + 1 > pM->nAlloc ){ in mout()
664 nNewChar = pM->nAlloc - pM->nChar - 1; in mout()
666 pM->nAlloc = pM->nChar + nNewChar*2 + 1; in mout()
678 if( nNewChar>0 ){ in mout()
679 memcpy(&pM->zText[pM->nChar], zNewText, nNewChar); in mout()
680 pM->nChar += nNewChar; in mout()

Completed in 7 milliseconds