Home | History | Annotate | Download | only in src

Lines Matching refs:_i

49     int _i;                            \
53 for( _i = 0; _i < n; _i++ ) \
55 double t0 = _x[_i]; \
56 double t1 = _y[_i]; \
57 _x[_i] = t0*c + t1*s; \
58 _y[_i] = -t0*s + t1*c; \
131 int _i; \
135 for( _i = 0; _i < n; _i++ ) \
137 double t0 = _x[_i]; \
138 double t1 = _y[_i]; \
139 _x[_i] = (float)(t0*c + t1*s); \
140 _y[_i] = (float)(-t0*s + t1*c);\