Searched refs:xInt (Results 1 – 6 of 6) sorted by relevance
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
D | MathUtils.java | 494 int xInt = Float.floatToIntBits(x); in equals() 498 if (xInt < 0) { in equals() 499 xInt = SGN_MASK_FLOAT - xInt; in equals() 505 final boolean isEqual = FastMath.abs(xInt - yInt) <= maxUlps; in equals() 684 long xInt = Double.doubleToLongBits(x); 688 if (xInt < 0) { 689 xInt = SGN_MASK - xInt; 695 return FastMath.abs(xInt - yInt) <= maxUlps;
|
/external/skqp/src/gpu/text/ |
D | GrTextContext.cpp | 244 int xInt = (random->nextU() % kMaxTrans) * xPos; in GR_DRAW_OP_TEST_DEFINE() local 248 skPaint, font, viewMatrix, text, xInt, yInt); in GR_DRAW_OP_TEST_DEFINE()
|
/external/skia/src/gpu/ops/ |
D | GrAtlasTextOp.cpp | 546 int xInt = (random->nextU() % kMaxTrans) * xPos; in GR_DRAW_OP_TEST_DEFINE() local 549 return GrAtlasTextOp::CreateOpTestingOnly(sdc, skPaint, font, matrixProvider, text, xInt, yInt); in GR_DRAW_OP_TEST_DEFINE()
|
/external/dng_sdk/source/ |
D | dng_resample.cpp | 402 int32 xInt = ((int32) j) - (int32) fRadius + 1; in Initialize() local 403 real64 xPos = xInt - xFract; in Initialize()
|
/external/skqp/tools/viewer/ |
D | Viewer.cpp | 1954 int xInt = SkScalarRoundToInt(x); in drawImGui() local 1960 if (fLastImage->readPixels(info, &pixel, info.minRowBytes(), xInt, yInt)) { in drawImGui() 1963 xInt, yInt, in drawImGui()
|
/external/skia/tools/viewer/ |
D | Viewer.cpp | 2591 int xInt = SkScalarRoundToInt(x); in drawImGui() local 2598 if (fLastImage->readPixels(dContext, info, &pixel, info.minRowBytes(), xInt, yInt)) { in drawImGui() 2601 xInt, yInt, in drawImGui()
|