Lines Matching defs:adx
211 int adx=x1-x0;
215 int off=err/adx;
222 void render_lineARM(int n, ogg_int32_t *d,const ogg_int32_t *floor, int base, int err, int adx, int ady);
227 int adx;
238 adx=x1-x0;
240 base=dy/adx;
241 err=adx-1;
244 ady-=abs(base*adx);
252 * Previously we'd have added 1 (100*ady/adx)% of the time. Now we want
253 * to do so (100*(adx-ady)/adx)% of the time.
257 ady = adx-ady;
271 err+=adx;
277 render_lineARM(n,d,floor,base,err,adx,ady);