Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dprintf.c660 struct sgMprintf *pM = (struct sgMprintf*)arg; in mout() local
661 pM->nTotal += nNewChar; in mout()
662 if( pM->nChar + nNewChar + 1 > pM->nAlloc ){ in mout()
663 if( pM->xRealloc==0 ){ in mout()
664 nNewChar = pM->nAlloc - pM->nChar - 1; in mout()
666 pM->nAlloc = pM->nChar + nNewChar*2 + 1; in mout()
667 if( pM->zText==pM->zBase ){ in mout()
668 pM->zText = pM->xRealloc(0, pM->nAlloc); in mout()
669 if( pM->zText && pM->nChar ){ in mout()
670 memcpy(pM->zText, pM->zBase, pM->nChar); in mout()
[all …]