Home | History | Annotate | Download | only in client

Lines Matching refs:snext

42 	fixed16_t	s, t, snext, tnext, sstep, tstep;
112 snext = (int)(sdivz * z) + sadjust;
113 if (snext > bbextents)
114 snext = bbextents;
115 else if (snext < 8)
116 snext = 8; // prevent round-off error on <0 steps from
126 sstep = (snext - s) >> 3;
140 snext = (int)(sdivz * z) + sadjust;
141 if (snext > bbextents)
142 snext = bbextents;
143 else if (snext < 8)
144 snext = 8; // prevent round-off error on <0 steps from
156 sstep = (snext - s) / (spancount - 1);
180 s = snext;