Searched refs:MASKBIT (Results 1 – 5 of 5) sorted by relevance
250 return MASKBIT(i); in sqlite3WhereGetMask()880 cMask = iCol>=BMS ? MASKBIT(BMS-1) : MASKBIT(iCol); in constructAutomaticIndex()918 if( pSrc->colUsed & MASKBIT(BMS-1) ){ in constructAutomaticIndex()936 cMask = iCol>=BMS ? MASKBIT(BMS-1) : MASKBIT(iCol); in constructAutomaticIndex()955 if( extraCols & MASKBIT(i) ){ in constructAutomaticIndex()961 if( pSrc->colUsed & MASKBIT(BMS-1) ){ in constructAutomaticIndex()4417 obDone = MASKBIT(nOrderBy)-1; in wherePathSatisfiesOrderBy()4450 if( MASKBIT(i) & obSat ) continue; in wherePathSatisfiesOrderBy()4477 obSat |= MASKBIT(i); in wherePathSatisfiesOrderBy()4636 obSat |= MASKBIT(i); in wherePathSatisfiesOrderBy()[all …]
173 return pExTab->nCol>=BMS ? ALLBITS : MASKBIT(pExTab->nCol)-1; in sqlite3ExprColUsed()780 pItem->colUsed = pTab->nCol>=64 ? ALLBITS : MASKBIT(pTab->nCol)-1; in sqlite3CreateColumnExpr()
2874 mCol = MASKBIT(j); in sqlite3FindInIndex()2880 assert( i==nExpr || colUsed!=(MASKBIT(nExpr)-1) ); in sqlite3FindInIndex()2881 if( colUsed==(MASKBIT(nExpr)-1) ){ in sqlite3FindInIndex()
1253 #define MASKBIT(n) (((Bitmask)1)<<(n)) macro
2304 if( x<BMS-1 ) m |= MASKBIT(x); in recomputeColumnsNotIndexed()