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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dprintf.c650 int nChar; /* Length of the string so far */ member in struct:sgMprintf
665 if( pM->nChar + nNewChar + 1 > pM->nAlloc ){
667 nNewChar = pM->nAlloc - pM->nChar - 1;
669 pM->nAlloc = pM->nChar + nNewChar*2 + 1;
672 if( pM->zText && pM->nChar ){
673 memcpy(pM->zText, pM->zBase, pM->nChar);
682 memcpy(&pM->zText[pM->nChar], zNewText, nNewChar);
683 pM->nChar += nNewChar;
685 pM->zText[pM->nChar] = 0;
703 sM.nChar
[all...]
H A Dselect.c89 int nChar; member in struct:__anon4046
107 if( p->n==keywords[j].nChar

Completed in 78 milliseconds