Home | History | Annotate | Download | only in algos

Lines Matching defs:ii

117         size_t ii = i;
119 mean_y += floatFromUint64(sync->time1[ii] - time1_base) * invN;
120 mean_x += floatFromUint64(sync->time2[ii] - time2_base) * invN;
122 if (++ii == NUM_TIME_SYNC_DATAPOINTS) {
123 ii = 0;
132 ii = i;
134 float y = floatFromUint64(sync->time1[ii] - time1_base) - mean_y;
135 float x = floatFromUint64(sync->time2[ii] - time2_base) - mean_x;
140 if (++ii == NUM_TIME_SYNC_DATAPOINTS) {
141 ii = 0;