Home
last modified time | relevance | path

Searched refs:yInt (Results 1 – 10 of 10) sorted by relevance

/external/skia/src/gpu/effects/
DGrCircleBlurFragmentProcessor.cpp60 int yInt = SkScalarFloorToInt(y); in apply_kernel_in_y() local
61 SkASSERT(yInt >= -1); in apply_kernel_in_y()
64 } else if (yInt >= halfKernelSize - 1) { in apply_kernel_in_y()
67 float yFrac = y - yInt; in apply_kernel_in_y()
68 results[i] = (1.f - yFrac) * summedHalfKernelTable[yInt] + in apply_kernel_in_y()
69 yFrac * summedHalfKernelTable[yInt + 1]; in apply_kernel_in_y()
DGrCircleBlurFragmentProcessor.fp81 int yInt = SkScalarFloorToInt(y);
82 SkASSERT(yInt >= -1);
85 } else if (yInt >= halfKernelSize - 1) {
88 float yFrac = y - yInt;
89 results[i] = (1.f - yFrac) * summedHalfKernelTable[yInt] +
90 yFrac * summedHalfKernelTable[yInt + 1];
/external/skqp/src/gpu/effects/
DGrCircleBlurFragmentProcessor.cpp60 int yInt = SkScalarFloorToInt(y); in apply_kernel_in_y() local
61 SkASSERT(yInt >= -1); in apply_kernel_in_y()
64 } else if (yInt >= halfKernelSize - 1) { in apply_kernel_in_y()
67 float yFrac = y - yInt; in apply_kernel_in_y()
68 results[i] = (1.f - yFrac) * summedHalfKernelTable[yInt] + in apply_kernel_in_y()
69 yFrac * summedHalfKernelTable[yInt + 1]; in apply_kernel_in_y()
DGrCircleBlurFragmentProcessor.fp81 int yInt = SkScalarFloorToInt(y);
82 SkASSERT(yInt >= -1);
85 } else if (yInt >= halfKernelSize - 1) {
88 float yFrac = y - yInt;
89 results[i] = (1.f - yFrac) * summedHalfKernelTable[yInt] +
90 yFrac * summedHalfKernelTable[yInt + 1];
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DMathUtils.java495 int yInt = Float.floatToIntBits(y); in equals()
501 if (yInt < 0) { in equals()
502 yInt = SGN_MASK_FLOAT - yInt; in equals()
505 final boolean isEqual = FastMath.abs(xInt - yInt) <= maxUlps; in equals()
685 long yInt = Double.doubleToLongBits(y);
691 if (yInt < 0) {
692 yInt = SGN_MASK - yInt;
695 return FastMath.abs(xInt - yInt) <= maxUlps;
/external/skqp/src/gpu/text/
DGrTextContext.cpp245 int yInt = (random->nextU() % kMaxTrans) * yPos; in GR_DRAW_OP_TEST_DEFINE() local
248 skPaint, font, viewMatrix, text, xInt, yInt); in GR_DRAW_OP_TEST_DEFINE()
/external/skia/src/gpu/text/
DGrTextContext.cpp262 int yInt = (random->nextU() % kMaxTrans) * yPos; in GR_DRAW_OP_TEST_DEFINE() local
265 skPaint, font, viewMatrix, text, xInt, yInt); in GR_DRAW_OP_TEST_DEFINE()
/external/dng_sdk/source/
Ddng_resample.cpp396 int32 yInt = ((int32) i) - (int32) fRadius + 1; in Initialize() local
397 real64 yPos = yInt - yFract; in Initialize()
/external/skia/tools/viewer/
DViewer.cpp1941 int yInt = SkScalarRoundToInt(y); in drawImGui() local
1946 if (fLastImage->readPixels(info, &pixel, info.minRowBytes(), xInt, yInt)) { in drawImGui()
1949 xInt, yInt, in drawImGui()
/external/skqp/tools/viewer/
DViewer.cpp1955 int yInt = SkScalarRoundToInt(y); in drawImGui() local
1960 if (fLastImage->readPixels(info, &pixel, info.minRowBytes(), xInt, yInt)) { in drawImGui()
1963 xInt, yInt, in drawImGui()