Searched refs:yInt (Results 1 - 3 of 3) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DMathUtils.java495 int yInt = Float.floatToIntBits(y);
501 if (yInt < 0) {
502 yInt = SGN_MASK_FLOAT - yInt;
505 final boolean isEqual = FastMath.abs(xInt - yInt) <= maxUlps;
685 long yInt = Double.doubleToLongBits(y);
691 if (yInt < 0) {
692 yInt = SGN_MASK - yInt;
695 return FastMath.abs(xInt - yInt) <
[all...]
/external/dng_sdk/source/
H A Ddng_resample.cpp396 int32 yInt = ((int32) i) - (int32) fRadius + 1; local
397 real64 yPos = yInt - yFract;
/external/skia/src/gpu/text/
H A DGrAtlasTextContext.cpp397 int yInt = (random->nextU() % kMaxTrans) * yPos; local
399 SkScalar y = SkIntToScalar(yInt);

Completed in 154 milliseconds