Home | History | Annotate | Download | only in lang

Lines Matching refs:magnitude

948      * value next larger in magnitude. For non-NaN {@code x},
978 * value next larger in magnitude. For non-NaN {@code x},
1001 * Returns a double with the given magnitude and the sign of {@code sign}.
1005 public static double copySign(double magnitude, double sign) {
1011 long magnitudeBits = Double.doubleToRawLongBits(magnitude);
1018 * Returns a float with the given magnitude and the sign of {@code sign}.
1022 public static float copySign(float magnitude, float sign) {
1028 int magnitudeBits = Float.floatToRawIntBits(magnitude);