Lines Matching refs:pIn3

68528   Mem *pIn3 = 0;             /* 3rd input operand */
68863 pIn3 = &aMem[pOp->p3];
68864 if( (pIn3->flags & MEM_Null)==0 ) break;
69948 int res; /* Result of the comparison of pIn1 against pIn3 */
69951 u16 flags3; /* Copy of initial value of pIn3->flags */
69954 pIn3 = &aMem[pOp->p3];
69956 flags3 = pIn3->flags;
69997 applyAffinity(pIn3, affinity, encoding);
70003 ExpandBlob(pIn3);
70004 res = sqlite3MemCompare(pIn3, pIn1, pOp->p4.pColl);
70029 pIn3->flags = (pIn3->flags&~MEM_TypeMask) | (flags3&MEM_TypeMask);
71188 pIn3 = &aMem[pOp->p3];
71189 sqlite3VdbeMemIntegerify(pIn3);
71191 rc = sqlite3BtreeUpdateMeta(pDb->pBt, pOp->p2, (int)pIn3->u.i);
71194 pDb->pSchema->schema_cookie = (int)pIn3->u.i;
71198 pDb->pSchema->file_format = (u8)pIn3->u.i;
71616 pIn3 = &aMem[pOp->p3];
71617 ApplyNumericAffinity(pIn3);
71618 iKey = sqlite3VdbeIntValue(pIn3);
71623 if( (pIn3->flags & MEM_Int)==0 ){
71624 if( (pIn3->flags & MEM_Real)==0 ){
71638 if( pIn3->r<(double)iKey ){
71647 else if( pIn3->r>(double)iKey ){
71838 pIn3 = &aMem[pOp->p3];
71845 r.aMem = pIn3;
71859 assert( pIn3->flags & MEM_Blob );
71860 assert( (pIn3->flags & MEM_Zero)==0 ); /* zeroblobs already expanded */
71861 sqlite3VdbeRecordUnpack(pC->pKeyInfo, pIn3->n, pIn3->z, pIdxKey);
71921 pIn3 = &aMem[pOp->p3];
71922 assert( pIn3->flags & MEM_Int );
71934 iKey = pIn3->u.i;
71936 pC->lastRowid = pIn3->u.i;
72313 pIn3 = &aMem[pOp->p3];
72315 rc = sqlite3VdbeSorterCompare(pC, pIn3, nKeyCol, &res);
73352 pIn3 = &aMem[pOp->p3];
73354 assert( pIn3->flags&MEM_Int );
73367 exists = sqlite3RowSetTest(pIn1->u.pRowSet, iSet, pIn3->u.i);
73375 sqlite3RowSetInsert(pIn1->u.pRowSet, pIn3->u.i);