Lines Matching refs:iScope
1934 int iScope; /* Value of the scope= constraint */ member
2376 int iScope; /* Default scope */ member
2397 int iScope = p->iScope; in spellfix1RunQuery() local
2417 if( nClass<=iScope ){ in spellfix1RunQuery()
2419 iScope = nClass-1; in spellfix1RunQuery()
2421 iScope = nClass; in spellfix1RunQuery()
2424 memcpy(zHash1, zClass, iScope); in spellfix1RunQuery()
2426 zHash1[iScope] = 0; in spellfix1RunQuery()
2427 memcpy(zHash2, zHash1, iScope); in spellfix1RunQuery()
2428 zHash2[iScope] = 'Z'; in spellfix1RunQuery()
2429 zHash2[iScope+1] = 0; in spellfix1RunQuery()
2436 memcpy(p->azPrior[p->nRun++], zHash1, iScope+1); in spellfix1RunQuery()
2504 memcpy(pCur->a[idx].zHash, zHash1, iScope+1); in spellfix1RunQuery()
2537 int iScope = 3; /* Use this many characters of zClass */ in spellfix1FilterForMatch() local
2555 x.iScope = 3; /* Default scope if none specified by "WHERE scope=N" */ in spellfix1FilterForMatch()
2566 x.iScope = sqlite3_value_int(argv[idx++]); in spellfix1FilterForMatch()
2567 if( x.iScope<1 ) x.iScope = 1; in spellfix1FilterForMatch()
2568 if( x.iScope>SPELLFIX_MX_HASH-2 ) x.iScope = SPELLFIX_MX_HASH-2; in spellfix1FilterForMatch()
2627 pCur->iScope = iScope; in spellfix1FilterForMatch()
2795 sqlite3_result_int(ctx, pCur->iScope); in spellfix1Column()