Lines Matching defs:iStep
3374 sqlite3_int64 iStep; /* Increment ("step") */
3457 pCur->iValue -= pCur->iStep;
3459 pCur->iValue += pCur->iStep;
3479 case SERIES_COLUMN_STEP: x = pCur->iStep; break;
3559 pCur->iStep = sqlite3_value_int64(argv[i++]);
3560 if( pCur->iStep==0 ){
3561 pCur->iStep = 1;
3562 }else if( pCur->iStep<0 ){
3563 pCur->iStep = -pCur->iStep;
3567 pCur->iStep = 1;
3581 if( pCur->iStep>0 ){
3582 pCur->iValue -= (pCur->mxValue - pCur->mnValue)%pCur->iStep;