nextafter        5101 Source/core/css/parser/CSSPropertyParser.cpp     value = negative ? 0 : static_cast<int>(alpha * nextafter(256.0, 0.0));
nextafter        5292 Source/core/css/parser/CSSPropertyParser.cpp         colorArray[3] = static_cast<int>(max(0.0, min(1.0, value)) * nextafter(256.0, 0.0));
nextafter         101 Source/platform/graphics/Color.cpp     const double scaleFactor = nextafter(256.0, 0.0);
nextafter         120 Source/platform/graphics/Color.cpp     int r = static_cast<int>(nextafter(256, 0) * (colors * (1 - c)));
nextafter         121 Source/platform/graphics/Color.cpp     int g = static_cast<int>(nextafter(256, 0) * (colors * (1 - m)));
nextafter         122 Source/platform/graphics/Color.cpp     int b = static_cast<int>(nextafter(256, 0) * (colors * (1 - y)));
nextafter         123 Source/platform/graphics/Color.cpp     return makeRGBA(r, g, b, static_cast<float>(nextafter(256, 0) * a));