Lines Matching refs:n
87 int n = p->nAlloc*2 + 30; in nextCharAppend() local
88 aNew = sqlite3_realloc64(p->aResult, n*sizeof(unsigned int)); in nextCharAppend()
94 p->nAlloc = n; in nextCharAppend()
147 int n = 1; in readUtf8() local
149 while( (z[n] & 0xc0)==0x80 ){ in readUtf8()
150 c = (c<<6) + (0x3f & z[n++]); in readUtf8()
156 return n; in readUtf8()
167 int n, rc; in findNextChars() local
172 n = writeUtf8(zPrev, cPrev+1); in findNextChars()
173 sqlite3_bind_text(p->pStmt, 2, (char*)zPrev, n, SQLITE_STATIC); in findNextChars()
184 n = readUtf8(zOut+p->nPrefix, &cNext); in findNextChars()
277 int n = 0; in nextCharFunc() local
279 n += writeUtf8(pRes+n, c.aResult[i]); in nextCharFunc()
281 pRes[n] = 0; in nextCharFunc()
282 sqlite3_result_text(context, (const char*)pRes, n, sqlite3_free); in nextCharFunc()