Lines Matching refs:nLoc
242013 static void sqlite3Fts5SetLocale(Fts5Config *pConfig, const char *pLoc, int nLoc);
244109 int nLoc = 0; /* Size of pLoc in bytes */ local
244115 rc = pApi->xColumnLocale(pFts, iCol, &pLoc, &nLoc);
244119 pFts, ctx.zIn, ctx.nIn, pLoc, nLoc, (void*)&ctx, fts5HighlightCb
244318 int nLoc = 0; /* Size of pLoc in bytes */ local
244326 rc = pApi->xColumnLocale(pFts, i, &pLoc, &nLoc);
244329 sFinder.zDoc, nDoc, pLoc, nLoc, (void*)&sFinder, fts5SentenceFinderCb
244388 int nLoc = 0; /* Bytes in pLoc */ local
244408 rc = pApi->xColumnLocale(pFts, iBestCol, &pLoc, &nLoc);
244412 pFts, ctx.zIn, ctx.nIn, pLoc, nLoc, (void*)&ctx,fts5HighlightCb
261012 int nLoc = 0; local
261017 for(nLoc=FTS5_LOCALE_HDR_SIZE; p[nLoc]; nLoc++){
261018 if( nLoc==(n-1) ){
261023 *pnLoc = nLoc - FTS5_LOCALE_HDR_SIZE;
261025 *ppText = &p[nLoc+1];
261026 *pnText = n - nLoc - 1;
261055 int nLoc = 0; local
261056 rc = sqlite3Fts5DecodeLocaleValue(pVal, &pText, &nText, &pLoc, &nLoc);
261059 sqlite3Fts5SetLocale(pConfig, pLoc, nLoc);
261828 const char *pLoc, int nLoc, argument
261836 sqlite3Fts5SetLocale(pTab->pConfig, pLoc, nLoc);
261891 int nLoc = 0; local
261898 rc = sqlite3Fts5DecodeLocaleValue(pVal, ppText, pnText, &pLoc, &nLoc);
261904 nLoc = sqlite3_column_bytes(pStmt, iCol+1+pConfig->nCol);
261907 sqlite3Fts5SetLocale(pConfig, pLoc, nLoc);
264079 int nLoc = 0; local
264090 rc = sqlite3Fts5DecodeLocaleValue(pVal, &pText, &nText, &pLoc, &nLoc);
264106 nLoc = sqlite3_column_bytes(pSeek, iCol + pConfig->nCol);
264112 sqlite3Fts5SetLocale(pConfig, pLoc, nLoc);
264398 int nLoc = 0; /* Size of pLoc in bytes */ local
264405 rc = sqlite3Fts5DecodeLocaleValue(pVal, &pText, &nText, &pLoc, &nLoc);
264412 nLoc = sqlite3_column_bytes(pScan, iCol);
264417 sqlite3Fts5SetLocale(pConfig, pLoc, nLoc);
264539 int nLoc = 0; local
264542 rc = sqlite3Fts5DecodeLocaleValue(pVal, &pText, &nText, &pLoc, &nLoc);
264547 sqlite3_bind_text(pInsert, iLoc, pLoc, nLoc, SQLITE_TRANSIENT);
264592 int nLoc = 0; /* Size of pText in bytes */ local
264601 nLoc = sqlite3_column_bytes(p->pSavedRow, iCol);
264608 rc = sqlite3Fts5DecodeLocaleValue(pVal, &pText, &nText, &pLoc, &nLoc);
264615 sqlite3Fts5SetLocale(pConfig, pLoc, nLoc);
264789 int nLoc = 0; local
264796 pVal, &pText, &nText, &pLoc, &nLoc
264802 nLoc = sqlite3_column_bytes(pScan, iCol);
264816 sqlite3Fts5SetLocale(pConfig, pLoc, nLoc);
266319 const char *pLoc, int nLoc, argument
266328 p->pTokenizer, (void*)&sCtx, flags, pText, nText, pLoc, nLoc, fts5PorterCb