Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dprintf.c647 int nChar; /* Length of the string so far */ member
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()
669 if( pM->zText && pM->nChar ){ in mout()
670 memcpy(pM->zText, pM->zBase, pM->nChar); in mout()
679 memcpy(&pM->zText[pM->nChar], zNewText, nNewChar); in mout()
680 pM->nChar += nNewChar; in mout()
682 pM->zText[pM->nChar] = 0; in mout()
700 sM.nChar = sM.nTotal = 0; in base_vprintf()
[all …]
H A Dselect.c85 int nChar; in sqliteJoinType() member
103 if( p->n==keywords[j].nChar in sqliteJoinType()