Lines Matching refs:cnt
1779 int i, cnt; in sqliteVdbeExec() local
1781 cnt = pOp->p1; in sqliteVdbeExec()
1782 if( cnt<0 ) cnt = -cnt; in sqliteVdbeExec()
1783 pTerm = &pTos[1-cnt]; in sqliteVdbeExec()
1785 for(i=0; i<cnt; i++, pTerm++){ in sqliteVdbeExec()
1791 if( pOp->p1>0 ) popStack(&pTos, cnt); in sqliteVdbeExec()
1802 int i, cnt; in sqliteVdbeExec() local
1803 cnt = pOp->p1; in sqliteVdbeExec()
1804 if( cnt<0 ) cnt = -cnt; in sqliteVdbeExec()
1805 assert( &pTos[1-cnt] >= p->aStack ); in sqliteVdbeExec()
1806 for(i=0; i<cnt && (pTos[1+i-cnt].flags & MEM_Null)==0; i++){} in sqliteVdbeExec()
1807 if( i>=cnt ) pc = pOp->p2-1; in sqliteVdbeExec()
1808 if( pOp->p1>0 ) popStack(&pTos, cnt); in sqliteVdbeExec()
2835 int res, rx, cnt, x; in sqliteVdbeExec() local
2836 cnt = 0; in sqliteVdbeExec()
2863 cnt = 0; in sqliteVdbeExec()
2865 if( v==0 || cnt>2 ){ in sqliteVdbeExec()
2867 if( cnt<5 ) v &= 0xffffff; in sqliteVdbeExec()
2876 cnt++; in sqliteVdbeExec()
2877 }while( cnt<1000 && rx==SQLITE_OK && res==0 ); in sqliteVdbeExec()
4454 ctx.cnt = ++pMem->i; in sqliteVdbeExec()
4590 ctx.cnt = aMem[i].i; in sqliteVdbeExec()
4782 pOp->cnt++; in sqliteVdbeExec()