Lines Matching refs:pConfig3
1920 EditDist3Config *pConfig3; /* Parsed edit distance costs */ member
1988 editDist3ConfigDelete(p->pConfig3); in spellfix1Uninit()
2373 EditDist3Config *pConfig3; /* Edit-distance cost coefficients */ member
2547 if( p->zCostTable!=0 && p->pConfig3==0 ){ in spellfix1FilterForMatch()
2548 p->pConfig3 = sqlite3_malloc64( sizeof(p->pConfig3[0]) ); in spellfix1FilterForMatch()
2549 if( p->pConfig3==0 ) return SQLITE_NOMEM; in spellfix1FilterForMatch()
2550 memset(p->pConfig3, 0, sizeof(p->pConfig3[0])); in spellfix1FilterForMatch()
2551 rc = editDist3ConfigLoad(p->pConfig3, p->db, p->zCostTable); in spellfix1FilterForMatch()
2579 if( p->pConfig3 ){ in spellfix1FilterForMatch()
2580 x.pLang = editDist3FindLang(p->pConfig3, iLang); in spellfix1FilterForMatch()
2619 x.pConfig3 = p->pConfig3; in spellfix1FilterForMatch()
2894 editDist3ConfigDelete(p->pConfig3); in spellfix1Update()
2895 p->pConfig3 = 0; in spellfix1Update()
2899 editDist3ConfigDelete(p->pConfig3); in spellfix1Update()
2900 p->pConfig3 = 0; in spellfix1Update()