Home | History | Annotate | Download | only in core

Lines Matching refs:fstart

211 typedef SkFixed (*LineProc)(int istart, int istop, SkFixed fstart,
241 SkFixed fstart, slope;
252 fstart = SkFDot6ToFixed(y0);
259 fstart += (slope * (32 - (x0 & 63)) + 32) >> 6;
278 fstart += slope * (clip->fLeft - istart);
293 top = SkFixedFloor(fstart - SK_FixedHalf);
294 bottom = SkFixedCeil(fstart + (istop - istart - 1) * slope + SK_FixedHalf);
296 bottom = SkFixedCeil(fstart + SK_FixedHalf);
297 top = SkFixedFloor(fstart + (istop - istart - 1) * slope - SK_FixedHalf);
318 fstart = SkFDot6ToFixed(x0);
328 fstart += (slope * (32 - (y0 & 63)) + 32) >> 6;
347 fstart += slope * (clip->fTop - istart);
362 left = SkFixedFloor(fstart - SK_FixedHalf);
363 right = SkFixedCeil(fstart + (istop - istart - 1) * slope + SK_FixedHalf);
365 right = SkFixedCeil(fstart + SK_FixedHalf);
366 left = SkFixedFloor(fstart + (istop - istart - 1) * slope - SK_FixedHalf);
387 fstart = proc(istart, istart + 1, fstart, slope, blitter, scaleStart);
391 fstart = proc(istart, istart + fullSpans, fstart, slope, blitter, 64);
394 proc(istop - 1, istop, fstart, slope, blitter, scaleStop);