Searched defs:magnitude (Results 1 - 3 of 3) sorted by relevance

/libcore/luni/src/main/java/java/lang/
H A DMath.java930 * value next larger in magnitude. For non-NaN {@code x}, {@code ulp(-x) ==
962 * value next larger in magnitude. For non-NaN {@code x}, {@code ulp(-x) ==
1003 * Returns a double with the given magnitude and the sign of {@code sign}.
1008 public static double copySign(double magnitude, double sign) { argument
1009 long magnitudeBits = Double.doubleToRawLongBits(magnitude);
1016 * Returns a float with the given magnitude and the sign of {@code sign}.
1021 public static float copySign(float magnitude, float sign) { argument
1022 int magnitudeBits = Float.floatToRawIntBits(magnitude);
H A DStrictMath.java870 * value next larger in magnitude. For non-NaN {@code x},
900 * value next larger in magnitude. For non-NaN {@code x},
923 * Returns a double with the given magnitude and the sign of {@code sign}.
927 public static double copySign(double magnitude, double sign) { argument
933 long magnitudeBits = Double.doubleToRawLongBits(magnitude);
940 * Returns a float with the given magnitude and the sign of {@code sign}.
944 public static float copySign(float magnitude, float sign) { argument
950 int magnitudeBits = Float.floatToRawIntBits(magnitude);
/libcore/luni/src/main/java/java/math/
H A DBigInteger.java53 /** The magnitude of this in the little-endian representation. */
89 private byte[] magnitude; field in class:BigInteger
259 * magnitude.
263 * @param magnitude magnitude of the new {@code BigInteger} with the most
265 * @throws NullPointerException if {@code magnitude == null}.
267 * the sign is zero and the magnitude contains non-zero entries.
269 public BigInteger(int signum, byte[] magnitude) { argument
270 if (magnitude == null) {
271 throw new NullPointerException("magnitude
[all...]

Completed in 52 milliseconds