Home
last modified time | relevance | path

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

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