Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dpragma.c2336 u32 opMask; /* Mask of operations to perform */ in sqlite3Pragma() local
2339 opMask = (u32)sqlite3Atoi(zRight); in sqlite3Pragma()
2340 if( (opMask & 0x02)==0 ) break; in sqlite3Pragma()
2342 opMask = 0xfffe; in sqlite3Pragma()
2368 sqlite3VdbeCurrentAddr(v)+2+(opMask&1), szThreshold); in sqlite3Pragma()
2373 if( opMask & 0x01 ){ in sqlite3Pragma()
H A Dwhere.c352 if( (pTerm->eOperator & pScan->opMask)!=0 ){ in whereScanNext()
441 u32 opMask, /* Operator(s) to scan for */ in whereScanInit() argument
449 pScan->opMask = opMask; in whereScanInit()
2795 int opMask; /* Valid operators for constraints */ in whereLoopAddBtreeIndex() local
2819 opMask = WO_LT|WO_LE; in whereLoopAddBtreeIndex()
2822 opMask = WO_EQ|WO_IN|WO_GT|WO_GE|WO_LT|WO_LE|WO_ISNULL|WO_IS; in whereLoopAddBtreeIndex()
2824 if( pProbe->bUnordered ) opMask &= ~(WO_GT|WO_GE|WO_LT|WO_LE); in whereLoopAddBtreeIndex()
2839 opMask, pProbe); in whereLoopAddBtreeIndex()
5218 int opMask; in whereShortCut() local
5224 opMask = pIdx->uniqNotNull ? (WO_EQ|WO_IS) : WO_EQ; in whereShortCut()
[all …]
H A DwhereInt.h323 u32 opMask; /* Acceptable operators */ member
H A Dwhereexpr.c1143 u16 opMask = (pTerm->prereqRight & prereqLeft)==0 ? WO_ALL : WO_EQUIV; in exprAnalyze() local
1156 pTerm->eOperator = operatorMask(op) & opMask; in exprAnalyze()
1197 pNew->eOperator = (operatorMask(pDup->op) + eExtraOp) & opMask; in exprAnalyze()