Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dexpr.c4453 u32 constMask = 0; /* Mask of function arguments that are constant */ in sqlite3ExprCodeTarget() local
4498 constMask |= MASKBIT32(i); in sqlite3ExprCodeTarget()
4505 if( constMask ){ in sqlite3ExprCodeTarget()
4559 sqlite3VdbeAddFunctionCall(pParse, constMask, r1, target, nFarg, in sqlite3ExprCodeTarget()
4562 if( constMask==0 ){ in sqlite3ExprCodeTarget()
4565 sqlite3VdbeReleaseRegisters(pParse, r1, nFarg, constMask, 1); in sqlite3ExprCodeTarget()
H A Dvdbe.c8699 u32 constMask; in sqlite3VdbeExec() local
8703 constMask = pOp->p3; in sqlite3VdbeExec()
8705 if( i>=32 || (constMask & MASKBIT32(i))==0 ){ in sqlite3VdbeExec()