Home
last modified time | relevance | path

Searched refs:stopY (Results 1 – 9 of 9) sorted by relevance

/external/skqp/src/core/
DSkBitmapProcState.cpp358 const int stopY = s.fPixmap.height(); in Repeat_S32_D32_nofilter_trans_shaderproc() local
360 int iy = sk_int_mod(s.fFilterOneY + y, stopY); in Repeat_S32_D32_nofilter_trans_shaderproc()
444 const int stopY = s.fPixmap.height(); in S32_D32_constX_shaderproc() local
447 iY0 = SkClampMax(yTemp, stopY-1); in S32_D32_constX_shaderproc()
450 iY0 = sk_int_mod(yTemp, stopY); in S32_D32_constX_shaderproc()
454 iY0 = sk_int_mirror(yTemp, stopY); in S32_D32_constX_shaderproc()
473 iY2 = SkClampMax(iY2, stopY-1); in S32_D32_constX_shaderproc()
476 iY2 = sk_int_mod(iY2, stopY); in S32_D32_constX_shaderproc()
480 iY2 = sk_int_mirror(iY2, stopY); in S32_D32_constX_shaderproc()
DSkMaskFilter.cpp147 int stopY = startY + r.height(); in draw_nine_clipped() local
149 for (int y = startY; y < stopY; ++y) { in draw_nine_clipped()
160 int stopY = startY + r.height(); in draw_nine_clipped() local
162 for (int y = startY; y < stopY; ++y) { in draw_nine_clipped()
DSkAAClip.cpp2140 const int stopY = y + clip.height(); in blitMask() local
2146 localStopY = SkMin32(localStopY + 1, stopY); in blitMask()
2157 } while (y < stopY); in blitMask()
/external/skia/src/core/
DSkBitmapProcState.cpp358 const int stopY = s.fPixmap.height(); in Repeat_S32_D32_nofilter_trans_shaderproc() local
360 int iy = sk_int_mod(s.fFilterOneY + y, stopY); in Repeat_S32_D32_nofilter_trans_shaderproc()
444 const int stopY = s.fPixmap.height(); in S32_D32_constX_shaderproc() local
447 iY0 = SkClampMax(yTemp, stopY-1); in S32_D32_constX_shaderproc()
450 iY0 = sk_int_mod(yTemp, stopY); in S32_D32_constX_shaderproc()
454 iY0 = sk_int_mirror(yTemp, stopY); in S32_D32_constX_shaderproc()
473 iY2 = SkClampMax(iY2, stopY-1); in S32_D32_constX_shaderproc()
476 iY2 = sk_int_mod(iY2, stopY); in S32_D32_constX_shaderproc()
480 iY2 = sk_int_mirror(iY2, stopY); in S32_D32_constX_shaderproc()
DSkMaskFilter.cpp147 int stopY = startY + r.height(); in draw_nine_clipped() local
149 for (int y = startY; y < stopY; ++y) { in draw_nine_clipped()
160 int stopY = startY + r.height(); in draw_nine_clipped() local
162 for (int y = startY; y < stopY; ++y) { in draw_nine_clipped()
DSkAAClip.cpp2140 const int stopY = y + clip.height(); in blitMask() local
2146 localStopY = SkMin32(localStopY + 1, stopY); in blitMask()
2157 } while (y < stopY); in blitMask()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowCanvas.java206 protected void drawLine(float startX, float startY, float stopX, float stopY, Paint paint) { in drawLine() argument
207 linePaintEvents.add(new LinePaintHistoryEvent(startX, startY, stopX, stopY, paint)); in drawLine()
371 public float stopY; field in ShadowCanvas.LinePaintHistoryEvent
374 float startX, float startY, float stopX, float stopY, Paint paint) { in LinePaintHistoryEvent() argument
381 this.stopY = stopY; in LinePaintHistoryEvent()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowCanvasTest.java362 assertThat(shadowCanvas.getDrawnLine(0).stopY).isEqualTo(4f); in drawLine_shouldRecordLineHistoryEvents()
369 assertThat(shadowCanvas.getDrawnLine(1).stopY).isEqualTo(8f); in drawLine_shouldRecordLineHistoryEvents()
/external/ImageMagick/MagickCore/
Daccelerate-kernels-private.h2632 const unsigned int stopY = MagickMin(startY + pixelPerWorkgroup,filteredRows);
2633 const unsigned int actualNumPixelToCompute = stopY - startY;
2659 const unsigned int chunkStopY = MagickMin(chunkStartY + pixelChunkSize, stopY);