Searched refs:magnitude (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/misc/
H A DFpUtils.java193 * @param magnitude the parameter providing the magnitude of the result
195 * @return a value with the magnitude of {@code magnitude}
199 public static double rawCopySign(double magnitude, double sign) { argument
202 (Double.doubleToRawLongBits(magnitude) &
216 * @param magnitude the parameter providing the magnitude of the result
218 * @return a value with the magnitude of {@code magnitude}
222 rawCopySign(float magnitude, float sign) argument
1051 copySign(double magnitude, double sign) argument
1067 copySign(float magnitude, float sign) argument
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DChoiceFormat.java587 long magnitude = bits & ~SIGN;
589 /* if next double away from zero, increase magnitude */
591 if (magnitude != POSITIVEINFINITY) {
592 magnitude += 1;
595 /* else decrease magnitude */
597 magnitude -= 1;
602 return Double.longBitsToDouble (magnitude | signbit);
/openjdk7/jdk/src/share/classes/java/lang/
H A DMath.java71 * magnitude, one of the endpoints of the bracket may be infinite.
333 * the negative of the cube root of that value's magnitude.
946 * larger in magnitude. Note that for non-NaN <i>x</i>,
973 * larger in magnitude. Note that for non-NaN <i>x</i>,
1248 * @param magnitude the parameter providing the magnitude of the result
1250 * @return a value with the magnitude of {@code magnitude}
1254 public static double copySign(double magnitude, double sign) { argument
1255 return sun.misc.FpUtils.rawCopySign(magnitude, sig
1273 copySign(float magnitude, float sign) argument
[all...]
H A DStrictMath.java257 * the negative of the cube root of that value's magnitude.
938 * larger in magnitude. Note that for non-NaN <i>x</i>,
965 * larger in magnitude. Note that for non-NaN <i>x</i>,
1198 * @param magnitude the parameter providing the magnitude of the result
1200 * @return a value with the magnitude of {@code magnitude}
1204 public static double copySign(double magnitude, double sign) { argument
1205 return sun.misc.FpUtils.copySign(magnitude, sign);
1214 * @param magnitude th
1220 copySign(float magnitude, float sign) argument
[all...]
/openjdk7/jdk/src/share/classes/java/math/
H A DBigInteger.java111 * The magnitude of this BigInteger, in <i>big-endian</i> order: the
113 * magnitude. The magnitude must be "minimal" in that the most-significant
161 * Two plus the index of the lowest-order int in the magnitude of this
221 * Translates the sign-magnitude representation of a BigInteger into a
223 * negative, 0 for zero, or 1 for positive. The magnitude is a byte array
225 * zeroth element. A zero-length magnitude array is permissible, and will
230 * @param magnitude big-endian binary representation of the magnitude of
234 * {@code magnitude} contain
236 BigInteger(int signum, byte[] magnitude) argument
257 BigInteger(int signum, int[] magnitude) argument
923 BigInteger(int[] magnitude, int signum) argument
932 BigInteger(byte[] magnitude, int signum) argument
[all...]

Completed in 42 milliseconds