HomeSort by relevance Sort by last modified time
    Searched refs:newMaxRadius (Results 1 - 2 of 2) sorted by null

  /external/skia/src/core/
SkScaleToSides.h 43 // Because newMaxRadius is the result of a double to float conversion, it can be larger
45 float newMaxRadius = (float)(limit - newMinRadius);
47 // The total sum of newMinRadius and newMaxRadius can be upto 1.5 ULPs off. If the
48 // sum is greater than the limit then newMaxRadius may have to be reduced twice.
51 if (newMaxRadius + newMinRadius > limit) {
52 newMaxRadius = nextafterf(newMaxRadius, 0.0f);
53 if (newMaxRadius + newMinRadius > limit) {
54 newMaxRadius = nextafterf(newMaxRadius, 0.0f)
    [all...]
  /external/skqp/src/core/
SkScaleToSides.h 43 // Because newMaxRadius is the result of a double to float conversion, it can be larger
45 float newMaxRadius = (float)(limit - newMinRadius);
47 // The total sum of newMinRadius and newMaxRadius can be upto 1.5 ULPs off. If the
48 // sum is greater than the limit then newMaxRadius may have to be reduced twice.
51 if (newMaxRadius + newMinRadius > limit) {
52 newMaxRadius = nextafterf(newMaxRadius, 0.0f);
53 if (newMaxRadius + newMinRadius > limit) {
54 newMaxRadius = nextafterf(newMaxRadius, 0.0f)
    [all...]

Completed in 173 milliseconds