Home
last modified time | relevance | path

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

/sqlite-3.40.0/ext/misc/
H A Dspellfix.c1943 int iMatchlen; /* Value of matchlen column (or -1) */ member
2452 int iMatchlen = -1; in spellfix1RunQuery() local
2457 iDist = editDist3Core(p->pMatchStr3, zWord, nWord, p->pLang, &iMatchlen); in spellfix1RunQuery()
2503 pCur->a[idx].iMatchlen = iMatchlen; in spellfix1RunQuery()
2763 int iMatchlen = pCur->a[pCur->iRow].iMatchlen; in spellfix1Column() local
2764 if( iMatchlen<0 ){ in spellfix1Column()
2774 res = editdist1(pCur->zPattern, zTranslit, &iMatchlen); in spellfix1Column()
2777 iMatchlen = translen_to_charlen(zWord, nWord, iMatchlen); in spellfix1Column()
2779 iMatchlen = utf8Charlen(zWord, nWord); in spellfix1Column()
2783 sqlite3_result_int(ctx, iMatchlen); in spellfix1Column()