src/java.base/share/classes/java/lang/StrictMath.java
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 57923 3da1848cc39b
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
57867
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
     2
 * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4520
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4520
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4520
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4520
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4520
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.lang;
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 26727
diff changeset
    27
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.Random;
34781
479b1724ab80 8145990: Move sun.misc math support classes to jdk.internal.math
chegar
parents: 32992
diff changeset
    29
import jdk.internal.math.DoubleConsts;
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 26727
diff changeset
    30
import jdk.internal.HotSpotIntrinsicCandidate;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * The class {@code StrictMath} contains methods for performing basic
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * numeric operations such as the elementary exponential, logarithm,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * square root, and trigonometric functions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * <p>To help ensure portability of Java programs, the definitions of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * some of the numeric functions in this package require that they
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * produce the same results as certain published algorithms. These
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * algorithms are available from the well-known network library
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * {@code netlib} as the package "Freely Distributable Math
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * Library," <a
52277
c2f38eb6b31a 8212880: Cannot access ftp: site for fdlibm.tar
darcy
parents: 47216
diff changeset
    43
 * href="https://www.netlib.org/fdlibm/">{@code fdlibm}</a>. These
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * algorithms, which are written in the C programming language, are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * then to be understood as executed with all floating-point
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * operations following the rules of Java floating-point arithmetic.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * <p>The Java math library is defined with respect to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * {@code fdlibm} version 5.3. Where {@code fdlibm} provides
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * more than one definition for a function (such as
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * {@code acos}), use the "IEEE 754 core function" version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * (residing in a file whose name begins with the letter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * {@code e}).  The methods which require {@code fdlibm}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * semantics are {@code sin}, {@code cos}, {@code tan},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * {@code asin}, {@code acos}, {@code atan},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * {@code exp}, {@code log}, {@code log10},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * {@code cbrt}, {@code atan2}, {@code pow},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * {@code sinh}, {@code cosh}, {@code tanh},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * {@code hypot}, {@code expm1}, and {@code log1p}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 *
11905
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
    61
 * <p>
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
    62
 * The platform uses signed two's complement integer arithmetic with
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
    63
 * int and long primitive types.  The developer should choose
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
    64
 * the primitive type to ensure that arithmetic operations consistently
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
    65
 * produce correct results, which in some cases means the operations
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
    66
 * will not overflow the range of values of the computation.
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
    67
 * The best practice is to choose the primitive type and algorithm to avoid
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
    68
 * overflow. In cases where the size is {@code int} or {@code long} and
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
    69
 * overflow errors need to be detected, the methods {@code addExact},
57867
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
    70
 * {@code subtractExact}, {@code multiplyExact}, {@code toIntExact},
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
    71
 * {@code incrementExact}, {@code decrementExact} and {@code negateExact}
11905
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
    72
 * throw an {@code ArithmeticException} when the results overflow.
57867
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
    73
 * For the arithmetic operations divide and absolute value, overflow
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
    74
 * occurs only with a specific minimum or maximum value and
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
    75
 * should be checked against the minimum or maximum as appropriate.
11905
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
    76
 *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * @author  unascribed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * @author  Joseph D. Darcy
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 * @since   1.3
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
public final class StrictMath {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * Don't let anyone instantiate this class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    private StrictMath() {}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * The {@code double} value that is closer than any other to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * <i>e</i>, the base of the natural logarithms.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    public static final double E = 2.7182818284590452354;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * The {@code double} value that is closer than any other to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * <i>pi</i>, the ratio of the circumference of a circle to its
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * diameter.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    public static final double PI = 3.14159265358979323846;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    /**
26727
b4e26e7f964e 4477961: java.lang.Math.toDegrees(double) could be optimized
bpb
parents: 25859
diff changeset
   103
     * Constant by which to multiply an angular value in degrees to obtain an
b4e26e7f964e 4477961: java.lang.Math.toDegrees(double) could be optimized
bpb
parents: 25859
diff changeset
   104
     * angular value in radians.
b4e26e7f964e 4477961: java.lang.Math.toDegrees(double) could be optimized
bpb
parents: 25859
diff changeset
   105
     */
b4e26e7f964e 4477961: java.lang.Math.toDegrees(double) could be optimized
bpb
parents: 25859
diff changeset
   106
    private static final double DEGREES_TO_RADIANS = 0.017453292519943295;
b4e26e7f964e 4477961: java.lang.Math.toDegrees(double) could be optimized
bpb
parents: 25859
diff changeset
   107
b4e26e7f964e 4477961: java.lang.Math.toDegrees(double) could be optimized
bpb
parents: 25859
diff changeset
   108
    /**
b4e26e7f964e 4477961: java.lang.Math.toDegrees(double) could be optimized
bpb
parents: 25859
diff changeset
   109
     * Constant by which to multiply an angular value in radians to obtain an
b4e26e7f964e 4477961: java.lang.Math.toDegrees(double) could be optimized
bpb
parents: 25859
diff changeset
   110
     * angular value in degrees.
b4e26e7f964e 4477961: java.lang.Math.toDegrees(double) could be optimized
bpb
parents: 25859
diff changeset
   111
     */
b4e26e7f964e 4477961: java.lang.Math.toDegrees(double) could be optimized
bpb
parents: 25859
diff changeset
   112
b4e26e7f964e 4477961: java.lang.Math.toDegrees(double) could be optimized
bpb
parents: 25859
diff changeset
   113
    private static final double RADIANS_TO_DEGREES = 57.29577951308232;
b4e26e7f964e 4477961: java.lang.Math.toDegrees(double) could be optimized
bpb
parents: 25859
diff changeset
   114
b4e26e7f964e 4477961: java.lang.Math.toDegrees(double) could be optimized
bpb
parents: 25859
diff changeset
   115
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * Returns the trigonometric sine of an angle. Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * <ul><li>If the argument is NaN or an infinity, then the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * <li>If the argument is zero, then the result is a zero with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * same sign as the argument.</ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * @param   a   an angle, in radians.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * @return  the sine of the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    public static native double sin(double a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * Returns the trigonometric cosine of an angle. Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * <ul><li>If the argument is NaN or an infinity, then the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * result is NaN.</ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * @param   a   an angle, in radians.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * @return  the cosine of the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    public static native double cos(double a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * Returns the trigonometric tangent of an angle. Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * <ul><li>If the argument is NaN or an infinity, then the result
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * <li>If the argument is zero, then the result is a zero with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * same sign as the argument.</ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * @param   a   an angle, in radians.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * @return  the tangent of the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    public static native double tan(double a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * Returns the arc sine of a value; the returned angle is in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * range -<i>pi</i>/2 through <i>pi</i>/2.  Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * <ul><li>If the argument is NaN or its absolute value is greater
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     * than 1, then the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * <li>If the argument is zero, then the result is a zero with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * same sign as the argument.</ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * @param   a   the value whose arc sine is to be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * @return  the arc sine of the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    public static native double asin(double a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * Returns the arc cosine of a value; the returned angle is in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * range 0.0 through <i>pi</i>.  Special case:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * <ul><li>If the argument is NaN or its absolute value is greater
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * than 1, then the result is NaN.</ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     * @param   a   the value whose arc cosine is to be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * @return  the arc cosine of the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    public static native double acos(double a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     * Returns the arc tangent of a value; the returned angle is in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
     * range -<i>pi</i>/2 through <i>pi</i>/2.  Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
     * <ul><li>If the argument is NaN, then the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
     * <li>If the argument is zero, then the result is a zero with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * same sign as the argument.</ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * @param   a   the value whose arc tangent is to be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * @return  the arc tangent of the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    public static native double atan(double a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     * Converts an angle measured in degrees to an approximately
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * equivalent angle measured in radians.  The conversion from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     * degrees to radians is generally inexact.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     * @param   angdeg   an angle, in degrees
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * @return  the measurement of the angle {@code angdeg}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     *          in radians.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    public static strictfp double toRadians(double angdeg) {
11512
ac5944feab25 7128441: StrictMath performance improvement note shared with Math
darcy
parents: 10608
diff changeset
   195
        // Do not delegate to Math.toRadians(angdeg) because
ac5944feab25 7128441: StrictMath performance improvement note shared with Math
darcy
parents: 10608
diff changeset
   196
        // this method has the strictfp modifier.
26727
b4e26e7f964e 4477961: java.lang.Math.toDegrees(double) could be optimized
bpb
parents: 25859
diff changeset
   197
        return angdeg * DEGREES_TO_RADIANS;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * Converts an angle measured in radians to an approximately
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * equivalent angle measured in degrees.  The conversion from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * radians to degrees is generally inexact; users should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * <i>not</i> expect {@code cos(toRadians(90.0))} to exactly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * equal {@code 0.0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * @param   angrad   an angle, in radians
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * @return  the measurement of the angle {@code angrad}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     *          in degrees.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    public static strictfp double toDegrees(double angrad) {
11512
ac5944feab25 7128441: StrictMath performance improvement note shared with Math
darcy
parents: 10608
diff changeset
   212
        // Do not delegate to Math.toDegrees(angrad) because
ac5944feab25 7128441: StrictMath performance improvement note shared with Math
darcy
parents: 10608
diff changeset
   213
        // this method has the strictfp modifier.
26727
b4e26e7f964e 4477961: java.lang.Math.toDegrees(double) could be optimized
bpb
parents: 25859
diff changeset
   214
        return angrad * RADIANS_TO_DEGREES;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * Returns Euler's number <i>e</i> raised to the power of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * {@code double} value. Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * <ul><li>If the argument is NaN, the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * <li>If the argument is positive infinity, then the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * positive infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * <li>If the argument is negative infinity, then the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * positive zero.</ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * @param   a   the exponent to raise <i>e</i> to.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * @return  the value <i>e</i><sup>{@code a}</sup>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     *          where <i>e</i> is the base of the natural logarithms.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     */
42751
38d28e784f44 8139688: Port fdlibm exp to Java
darcy
parents: 40530
diff changeset
   230
    public static double exp(double a) {
38d28e784f44 8139688: Port fdlibm exp to Java
darcy
parents: 40530
diff changeset
   231
        return FdLibm.Exp.compute(a);
38d28e784f44 8139688: Port fdlibm exp to Java
darcy
parents: 40530
diff changeset
   232
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * Returns the natural logarithm (base <i>e</i>) of a {@code double}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     * value. Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     * <ul><li>If the argument is NaN or less than zero, then the result
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     * is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     * <li>If the argument is positive infinity, then the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     * positive infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * <li>If the argument is positive zero or negative zero, then the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * result is negative infinity.</ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     * @param   a   a value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     * @return  the value ln&nbsp;{@code a}, the natural logarithm of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     *          {@code a}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
    public static native double log(double a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * Returns the base 10 logarithm of a {@code double} value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * <ul><li>If the argument is NaN or less than zero, then the result
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     * is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     * <li>If the argument is positive infinity, then the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * positive infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * <li>If the argument is positive zero or negative zero, then the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * result is negative infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * <li> If the argument is equal to 10<sup><i>n</i></sup> for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * integer <i>n</i>, then the result is <i>n</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * @param   a   a value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * @return  the base 10 logarithm of  {@code a}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
    public static native double log10(double a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
     * Returns the correctly rounded positive square root of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
     * {@code double} value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     * <ul><li>If the argument is NaN or less than zero, then the result
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     * <li>If the argument is positive infinity, then the result is positive
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * <li>If the argument is positive zero or negative zero, then the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * result is the same as the argument.</ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * Otherwise, the result is the {@code double} value closest to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * the true mathematical square root of the argument value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     * @param   a   a value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
     * @return  the positive square root of {@code a}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
     */
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 26727
diff changeset
   286
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    public static native double sqrt(double a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * Returns the cube root of a {@code double} value.  For
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     * positive finite {@code x}, {@code cbrt(-x) ==
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
     * -cbrt(x)}; that is, the cube root of a negative value is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * the negative of the cube root of that value's magnitude.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     * Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     * <li>If the argument is NaN, then the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     * <li>If the argument is infinite, then the result is an infinity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
     * with the same sign as the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     * <li>If the argument is zero, then the result is a zero with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     * same sign as the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * @param   a   a value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * @return  the cube root of {@code a}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     */
32992
19ed8781c2ba 8136799: Port fdlibm cbrt to Java
darcy
parents: 32765
diff changeset
   312
    public static double cbrt(double a) {
19ed8781c2ba 8136799: Port fdlibm cbrt to Java
darcy
parents: 32765
diff changeset
   313
        return FdLibm.Cbrt.compute(a);
19ed8781c2ba 8136799: Port fdlibm cbrt to Java
darcy
parents: 32765
diff changeset
   314
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     * Computes the remainder operation on two arguments as prescribed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * by the IEEE 754 standard.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * The remainder value is mathematically equal to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * <code>f1&nbsp;-&nbsp;f2</code>&nbsp;&times;&nbsp;<i>n</i>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * where <i>n</i> is the mathematical integer closest to the exact
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * mathematical value of the quotient {@code f1/f2}, and if two
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * mathematical integers are equally close to {@code f1/f2},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     * then <i>n</i> is the integer that is even. If the remainder is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * zero, its sign is the same as the sign of the first argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     * <ul><li>If either argument is NaN, or the first argument is infinite,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * or the second argument is positive zero or negative zero, then the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * <li>If the first argument is finite and the second argument is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * infinite, then the result is the same as the first argument.</ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * @param   f1   the dividend.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * @param   f2   the divisor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * @return  the remainder when {@code f1} is divided by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     *          {@code f2}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    public static native double IEEEremainder(double f1, double f2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * Returns the smallest (closest to negative infinity)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * {@code double} value that is greater than or equal to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * argument and is equal to a mathematical integer. Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     * <ul><li>If the argument value is already equal to a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * mathematical integer, then the result is the same as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * argument.  <li>If the argument is NaN or an infinity or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * positive zero or negative zero, then the result is the same as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     * the argument.  <li>If the argument value is less than zero but
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * greater than -1.0, then the result is negative zero.</ul> Note
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * that the value of {@code StrictMath.ceil(x)} is exactly the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * value of {@code -StrictMath.floor(-x)}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * @param   a   a value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * @return  the smallest (closest to negative infinity)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     *          floating-point value that is greater than or equal to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     *          the argument and is equal to a mathematical integer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     */
4520
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   358
    public static double ceil(double a) {
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   359
        return floorOrCeil(a, -0.0, 1.0, 1.0);
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   360
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
     * Returns the largest (closest to positive infinity)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * {@code double} value that is less than or equal to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * argument and is equal to a mathematical integer. Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     * <ul><li>If the argument value is already equal to a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     * mathematical integer, then the result is the same as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     * argument.  <li>If the argument is NaN or an infinity or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     * positive zero or negative zero, then the result is the same as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
     * the argument.</ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
     * @param   a   a value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * @return  the largest (closest to positive infinity)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     *          floating-point value that less than or equal to the argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     *          and is equal to a mathematical integer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     */
4520
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   377
    public static double floor(double a) {
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   378
        return floorOrCeil(a, -1.0, 0.0, -1.0);
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   379
    }
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   380
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   381
    /**
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   382
     * Internal method to share logic between floor and ceil.
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   383
     *
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   384
     * @param a the value to be floored or ceiled
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   385
     * @param negativeBoundary result for values in (-1, 0)
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   386
     * @param positiveBoundary result for values in (0, 1)
14420
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   387
     * @param increment value to add when the argument is non-integral
4520
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   388
     */
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   389
    private static double floorOrCeil(double a,
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   390
                                      double negativeBoundary,
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   391
                                      double positiveBoundary,
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   392
                                      double sign) {
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   393
        int exponent = Math.getExponent(a);
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   394
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   395
        if (exponent < 0) {
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   396
            /*
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   397
             * Absolute value of argument is less than 1.
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   398
             * floorOrceil(-0.0) => -0.0
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   399
             * floorOrceil(+0.0) => +0.0
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   400
             */
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   401
            return ((a == 0.0) ? a :
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   402
                    ( (a < 0.0) ?  negativeBoundary : positiveBoundary) );
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   403
        } else if (exponent >= 52) {
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   404
            /*
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   405
             * Infinity, NaN, or a value so large it must be integral.
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   406
             */
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   407
            return a;
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   408
        }
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   409
        // Else the argument is either an integral value already XOR it
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   410
        // has to be rounded to one.
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   411
        assert exponent >= 0 && exponent <= 51;
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   412
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   413
        long doppel = Double.doubleToRawLongBits(a);
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   414
        long mask   = DoubleConsts.SIGNIF_BIT_MASK >> exponent;
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   415
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   416
        if ( (mask & doppel) == 0L )
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   417
            return a; // integral value
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   418
        else {
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   419
            double result = Double.longBitsToDouble(doppel & (~mask));
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   420
            if (sign*a > 0.0)
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   421
                result = result + sign;
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   422
            return result;
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   423
        }
d2c9d06b5b31 6908131: Pure Java implementations of StrictMath.floor(double) & StrictMath.ceil(double)
darcy
parents: 2
diff changeset
   424
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * Returns the {@code double} value that is closest in value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * to the argument and is equal to a mathematical integer. If two
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * {@code double} values that are mathematical integers are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * equally close to the value of the argument, the result is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * integer value that is even. Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * <ul><li>If the argument value is already equal to a mathematical
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     * integer, then the result is the same as the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     * <li>If the argument is NaN or an infinity or positive zero or negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * zero, then the result is the same as the argument.</ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
     * @param   a   a value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     * @return  the closest floating-point value to {@code a} that is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
     *          equal to a mathematical integer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
     * @author Joseph D. Darcy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
    public static double rint(double a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
         * If the absolute value of a is not less than 2^52, it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
         * is either a finite integer (the double format does not have
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
         * enough significand bits for a number that large to have any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
         * fractional portion), an infinity, or a NaN.  In any of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
         * these cases, rint of the argument is the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
         * Otherwise, the sum (twoToThe52 + a ) will properly round
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
         * away any fractional portion of a since ulp(twoToThe52) ==
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
         * 1.0; subtracting out twoToThe52 from this sum will then be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
         * exact and leave the rounded integer portion of a.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
         * This method does *not* need to be declared strictfp to get
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
         * fully reproducible results.  Whether or not a method is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
         * declared strictfp can only make a difference in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
         * returned result if some operation would overflow or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
         * underflow with strictfp semantics.  The operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
         * (twoToThe52 + a ) cannot overflow since large values of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
         * are screened out; the add cannot underflow since twoToThe52
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
         * is too large.  The subtraction ((twoToThe52 + a ) -
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
         * twoToThe52) will be exact as discussed above and thus
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
         * cannot overflow or meaningfully underflow.  Finally, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
         * last multiply in the return statement is by plus or minus
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
         * 1.0, which is exact too.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
        double twoToThe52 = (double)(1L << 52); // 2^52
10598
efd29b4b3e67 7091682: Move sun.misc.FpUtils code into java.lang.Math
darcy
parents: 10122
diff changeset
   469
        double sign = Math.copySign(1.0, a); // preserve sign info
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        a = Math.abs(a);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        if (a < twoToThe52) { // E_min <= ilogb(a) <= 51
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
            a = ((twoToThe52 + a ) - twoToThe52);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        return sign * a; // restore original sign
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     * Returns the angle <i>theta</i> from the conversion of rectangular
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * coordinates ({@code x},&nbsp;{@code y}) to polar
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     * coordinates (r,&nbsp;<i>theta</i>).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     * This method computes the phase <i>theta</i> by computing an arc tangent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     * of {@code y/x} in the range of -<i>pi</i> to <i>pi</i>. Special
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     * cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     * <ul><li>If either argument is NaN, then the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * <li>If the first argument is positive zero and the second argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     * is positive, or the first argument is positive and finite and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * second argument is positive infinity, then the result is positive
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     * <li>If the first argument is negative zero and the second argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
     * is positive, or the first argument is negative and finite and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
     * second argument is positive infinity, then the result is negative zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     * <li>If the first argument is positive zero and the second argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * is negative, or the first argument is positive and finite and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     * second argument is negative infinity, then the result is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     * {@code double} value closest to <i>pi</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     * <li>If the first argument is negative zero and the second argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     * is negative, or the first argument is negative and finite and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     * second argument is negative infinity, then the result is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * {@code double} value closest to -<i>pi</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     * <li>If the first argument is positive and the second argument is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     * positive zero or negative zero, or the first argument is positive
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     * infinity and the second argument is finite, then the result is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     * {@code double} value closest to <i>pi</i>/2.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     * <li>If the first argument is negative and the second argument is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * positive zero or negative zero, or the first argument is negative
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     * infinity and the second argument is finite, then the result is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     * {@code double} value closest to -<i>pi</i>/2.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     * <li>If both arguments are positive infinity, then the result is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
     * {@code double} value closest to <i>pi</i>/4.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     * <li>If the first argument is positive infinity and the second argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     * is negative infinity, then the result is the {@code double}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     * value closest to 3*<i>pi</i>/4.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     * <li>If the first argument is negative infinity and the second argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     * is positive infinity, then the result is the {@code double} value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
     * closest to -<i>pi</i>/4.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * <li>If both arguments are negative infinity, then the result is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     * {@code double} value closest to -3*<i>pi</i>/4.</ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     * @param   y   the ordinate coordinate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * @param   x   the abscissa coordinate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * @return  the <i>theta</i> component of the point
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     *          (<i>r</i>,&nbsp;<i>theta</i>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     *          in polar coordinates that corresponds to the point
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     *          (<i>x</i>,&nbsp;<i>y</i>) in Cartesian coordinates.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
    public static native double atan2(double y, double x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     * Returns the value of the first argument raised to the power of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     * second argument. Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * <ul><li>If the second argument is positive or negative zero, then the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     * result is 1.0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     * <li>If the second argument is 1.0, then the result is the same as the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     * first argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     * <li>If the second argument is NaN, then the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     * <li>If the first argument is NaN and the second argument is nonzero,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     * then the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
     * <li>If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
     * <li>the absolute value of the first argument is greater than 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
     * and the second argument is positive infinity, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     * <li>the absolute value of the first argument is less than 1 and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     * the second argument is negative infinity,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     * then the result is positive infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
     * <li>If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
     * <li>the absolute value of the first argument is greater than 1 and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
     * the second argument is negative infinity, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
     * <li>the absolute value of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
     * first argument is less than 1 and the second argument is positive
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
     * infinity,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
     * then the result is positive zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     * <li>If the absolute value of the first argument equals 1 and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     * second argument is infinite, then the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
     * <li>If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
     * <li>the first argument is positive zero and the second argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
     * is greater than zero, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
     * <li>the first argument is positive infinity and the second
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
     * argument is less than zero,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     * then the result is positive zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * <li>If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     * <li>the first argument is positive zero and the second argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     * is less than zero, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
     * <li>the first argument is positive infinity and the second
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
     * argument is greater than zero,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
     * then the result is positive infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
     * <li>If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     * <li>the first argument is negative zero and the second argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
     * is greater than zero but not a finite odd integer, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     * <li>the first argument is negative infinity and the second
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
     * argument is less than zero but not a finite odd integer,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     * then the result is positive zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     * <li>If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     * <li>the first argument is negative zero and the second argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     * is a positive finite odd integer, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
     * <li>the first argument is negative infinity and the second
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
     * argument is a negative finite odd integer,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
     * then the result is negative zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
     * <li>If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     * <li>the first argument is negative zero and the second argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     * is less than zero but not a finite odd integer, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
     * <li>the first argument is negative infinity and the second
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
     * argument is greater than zero but not a finite odd integer,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
     * then the result is positive infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
     * <li>If
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
     * <li>the first argument is negative zero and the second argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     * is a negative finite odd integer, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     * <li>the first argument is negative infinity and the second
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
     * argument is a positive finite odd integer,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     * then the result is negative infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     * <li>If the first argument is finite and less than zero
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     * <li> if the second argument is a finite even integer, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     * result is equal to the result of raising the absolute value of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
     * the first argument to the power of the second argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
     * <li>if the second argument is a finite odd integer, the result
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
     * is equal to the negative of the result of raising the absolute
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
     * value of the first argument to the power of the second
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
     * argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
     * <li>if the second argument is finite and not an integer, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     * the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     * <li>If both arguments are integers, then the result is exactly equal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     * to the mathematical result of raising the first argument to the power
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
     * of the second argument if that result can in fact be represented
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
     * exactly as a {@code double} value.</ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
     * <p>(In the foregoing descriptions, a floating-point value is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
     * considered to be an integer if and only if it is finite and a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
     * fixed point of the method {@link #ceil ceil} or,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
     * equivalently, a fixed point of the method {@link #floor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
     * floor}. A value is a fixed point of a one-argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
     * method if and only if the result of applying the method to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
     * value is equal to the value.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     * @param   a   base.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
     * @param   b   the exponent.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
     * @return  the value {@code a}<sup>{@code b}</sup>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
     */
32655
8dfeae0ff332 8134795: Port fdlibm pow to Java
darcy
parents: 31671
diff changeset
   650
    public static double pow(double a, double b) {
8dfeae0ff332 8134795: Port fdlibm pow to Java
darcy
parents: 31671
diff changeset
   651
        return FdLibm.Pow.compute(a, b);
8dfeae0ff332 8134795: Port fdlibm pow to Java
darcy
parents: 31671
diff changeset
   652
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    /**
9269
f66626469aa8 6430675: Math.round has surprising behavior for 0x1.fffffffffffffp-2
darcy
parents: 7517
diff changeset
   655
     * Returns the closest {@code int} to the argument, with ties
19851
7b6ff45c39ce 8010430: Math.round has surprising behavior for odd values of ulp 1
bpb
parents: 19583
diff changeset
   656
     * rounding to positive infinity.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
     * <p>Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
     * <ul><li>If the argument is NaN, the result is 0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
     * <li>If the argument is negative infinity or any value less than or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
     * equal to the value of {@code Integer.MIN_VALUE}, the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
     * equal to the value of {@code Integer.MIN_VALUE}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     * <li>If the argument is positive infinity or any value greater than or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
     * equal to the value of {@code Integer.MAX_VALUE}, the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
     * equal to the value of {@code Integer.MAX_VALUE}.</ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     * @param   a   a floating-point value to be rounded to an integer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     * @return  the value of the argument rounded to the nearest
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     *          {@code int} value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
     * @see     java.lang.Integer#MAX_VALUE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     * @see     java.lang.Integer#MIN_VALUE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
    public static int round(float a) {
9269
f66626469aa8 6430675: Math.round has surprising behavior for 0x1.fffffffffffffp-2
darcy
parents: 7517
diff changeset
   674
        return Math.round(a);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
    /**
9269
f66626469aa8 6430675: Math.round has surprising behavior for 0x1.fffffffffffffp-2
darcy
parents: 7517
diff changeset
   678
     * Returns the closest {@code long} to the argument, with ties
19851
7b6ff45c39ce 8010430: Math.round has surprising behavior for odd values of ulp 1
bpb
parents: 19583
diff changeset
   679
     * rounding to positive infinity.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
     * <p>Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
     * <ul><li>If the argument is NaN, the result is 0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     * <li>If the argument is negative infinity or any value less than or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     * equal to the value of {@code Long.MIN_VALUE}, the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * equal to the value of {@code Long.MIN_VALUE}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     * <li>If the argument is positive infinity or any value greater than or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * equal to the value of {@code Long.MAX_VALUE}, the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     * equal to the value of {@code Long.MAX_VALUE}.</ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     * @param   a  a floating-point value to be rounded to a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     *          {@code long}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     * @return  the value of the argument rounded to the nearest
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     *          {@code long} value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     * @see     java.lang.Long#MAX_VALUE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     * @see     java.lang.Long#MIN_VALUE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
    public static long round(double a) {
9269
f66626469aa8 6430675: Math.round has surprising behavior for 0x1.fffffffffffffp-2
darcy
parents: 7517
diff changeset
   698
        return Math.round(a);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
19583
828d85603705 6470700: Math.random() / Math.initRNG() uses "double checked locking"
bpb
parents: 18546
diff changeset
   701
    private static final class RandomNumberGeneratorHolder {
828d85603705 6470700: Math.random() / Math.initRNG() uses "double checked locking"
bpb
parents: 18546
diff changeset
   702
        static final Random randomNumberGenerator = new Random();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
     * Returns a {@code double} value with a positive sign, greater
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
     * than or equal to {@code 0.0} and less than {@code 1.0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
     * Returned values are chosen pseudorandomly with (approximately)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
     * uniform distribution from that range.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     * <p>When this method is first called, it creates a single new
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     * pseudorandom-number generator, exactly as if by the expression
5781
11a42d91eb56 6959259: Minor improvements to static Random field caching
martin
parents: 5506
diff changeset
   713
     *
11a42d91eb56 6959259: Minor improvements to static Random field caching
martin
parents: 5506
diff changeset
   714
     * <blockquote>{@code new java.util.Random()}</blockquote>
11a42d91eb56 6959259: Minor improvements to static Random field caching
martin
parents: 5506
diff changeset
   715
     *
11a42d91eb56 6959259: Minor improvements to static Random field caching
martin
parents: 5506
diff changeset
   716
     * This new pseudorandom-number generator is used thereafter for
11a42d91eb56 6959259: Minor improvements to static Random field caching
martin
parents: 5506
diff changeset
   717
     * all calls to this method and is used nowhere else.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
     * <p>This method is properly synchronized to allow correct use by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
     * more than one thread. However, if many threads need to generate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
     * pseudorandom numbers at a great rate, it may reduce contention
14420
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   722
     * for each thread to have its own pseudorandom-number generator.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
     * @return  a pseudorandom {@code double} greater than or equal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     * to {@code 0.0} and less than {@code 1.0}.
5781
11a42d91eb56 6959259: Minor improvements to static Random field caching
martin
parents: 5506
diff changeset
   726
     * @see Random#nextDouble()
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
    public static double random() {
19583
828d85603705 6470700: Math.random() / Math.initRNG() uses "double checked locking"
bpb
parents: 18546
diff changeset
   729
        return RandomNumberGeneratorHolder.randomNumberGenerator.nextDouble();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
    /**
11905
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   733
     * Returns the sum of its arguments,
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   734
     * throwing an exception if the result overflows an {@code int}.
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   735
     *
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   736
     * @param x the first value
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   737
     * @param y the second value
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   738
     * @return the result
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   739
     * @throws ArithmeticException if the result overflows an int
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   740
     * @see Math#addExact(int,int)
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   741
     * @since 1.8
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   742
     */
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   743
    public static int addExact(int x, int y) {
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   744
        return Math.addExact(x, y);
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   745
    }
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   746
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   747
    /**
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   748
     * Returns the sum of its arguments,
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   749
     * throwing an exception if the result overflows a {@code long}.
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   750
     *
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   751
     * @param x the first value
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   752
     * @param y the second value
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   753
     * @return the result
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   754
     * @throws ArithmeticException if the result overflows a long
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   755
     * @see Math#addExact(long,long)
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   756
     * @since 1.8
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   757
     */
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   758
    public static long addExact(long x, long y) {
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   759
        return Math.addExact(x, y);
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   760
    }
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   761
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   762
    /**
14420
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   763
     * Returns the difference of the arguments,
11905
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   764
     * throwing an exception if the result overflows an {@code int}.
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   765
     *
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   766
     * @param x the first value
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   767
     * @param y the second value to subtract from the first
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   768
     * @return the result
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   769
     * @throws ArithmeticException if the result overflows an int
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   770
     * @see Math#subtractExact(int,int)
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   771
     * @since 1.8
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   772
     */
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   773
    public static int subtractExact(int x, int y) {
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   774
        return Math.subtractExact(x, y);
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   775
    }
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   776
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   777
    /**
14420
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   778
     * Returns the difference of the arguments,
11905
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   779
     * throwing an exception if the result overflows a {@code long}.
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   780
     *
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   781
     * @param x the first value
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   782
     * @param y the second value to subtract from the first
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   783
     * @return the result
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   784
     * @throws ArithmeticException if the result overflows a long
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   785
     * @see Math#subtractExact(long,long)
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   786
     * @since 1.8
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   787
     */
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   788
    public static long subtractExact(long x, long y) {
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   789
        return Math.subtractExact(x, y);
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   790
    }
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   791
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   792
    /**
14420
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   793
     * Returns the product of the arguments,
11905
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   794
     * throwing an exception if the result overflows an {@code int}.
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   795
     *
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   796
     * @param x the first value
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   797
     * @param y the second value
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   798
     * @return the result
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   799
     * @throws ArithmeticException if the result overflows an int
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   800
     * @see Math#multiplyExact(int,int)
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   801
     * @since 1.8
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   802
     */
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   803
    public static int multiplyExact(int x, int y) {
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   804
        return Math.multiplyExact(x, y);
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   805
    }
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   806
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   807
    /**
38455
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
   808
     * Returns the product of the arguments, throwing an exception if the result
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
   809
     * overflows a {@code long}.
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
   810
     *
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
   811
     * @param x the first value
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
   812
     * @param y the second value
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
   813
     * @return the result
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
   814
     * @throws ArithmeticException if the result overflows a long
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
   815
     * @see Math#multiplyExact(long,int)
38460
f521277035db 8157527: Replace @since 1.9 with @since 9 on new math methods
darcy
parents: 38458
diff changeset
   816
     * @since 9
38455
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
   817
     */
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
   818
    public static long multiplyExact(long x, int y) {
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
   819
        return Math.multiplyExact(x, y);
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
   820
    }
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
   821
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
   822
    /**
14420
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   823
     * Returns the product of the arguments,
11905
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   824
     * throwing an exception if the result overflows a {@code long}.
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   825
     *
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   826
     * @param x the first value
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   827
     * @param y the second value
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   828
     * @return the result
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   829
     * @throws ArithmeticException if the result overflows a long
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   830
     * @see Math#multiplyExact(long,long)
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   831
     * @since 1.8
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   832
     */
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   833
    public static long multiplyExact(long x, long y) {
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   834
        return Math.multiplyExact(x, y);
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   835
    }
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   836
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   837
    /**
57867
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   838
     * Returns the argument incremented by one,
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   839
     * throwing an exception if the result overflows an {@code int}.
57923
3da1848cc39b 8230074: Improve specification for {Math, StrictMath}.negateExact
darcy
parents: 57867
diff changeset
   840
     * The overflow only occurs for {@linkplain Integer#MAX_VALUE the maximum value}.
57867
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   841
     *
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   842
     * @param a the value to increment
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   843
     * @return the result
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   844
     * @throws ArithmeticException if the result overflows an int
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   845
     * @see Math#incrementExact(int)
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   846
     * @since 14
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   847
     */
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   848
    public static int incrementExact(int a) {
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   849
        return Math.incrementExact(a);
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   850
    }
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   851
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   852
    /**
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   853
     * Returns the argument incremented by one,
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   854
     * throwing an exception if the result overflows a {@code long}.
57923
3da1848cc39b 8230074: Improve specification for {Math, StrictMath}.negateExact
darcy
parents: 57867
diff changeset
   855
     * The overflow only occurs for {@linkplain Long#MAX_VALUE the maximum value}.
57867
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   856
     *
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   857
     * @param a the value to increment
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   858
     * @return the result
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   859
     * @throws ArithmeticException if the result overflows a long
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   860
     * @see Math#incrementExact(long)
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   861
     * @since 14
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   862
     */
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   863
    public static long incrementExact(long a) {
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   864
        return Math.incrementExact(a);
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   865
    }
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   866
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   867
    /**
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   868
     * Returns the argument decremented by one,
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   869
     * throwing an exception if the result overflows an {@code int}.
57923
3da1848cc39b 8230074: Improve specification for {Math, StrictMath}.negateExact
darcy
parents: 57867
diff changeset
   870
     * The overflow only occurs for {@linkplain Integer#MIN_VALUE the minimum value}.
57867
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   871
     *
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   872
     * @param a the value to decrement
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   873
     * @return the result
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   874
     * @throws ArithmeticException if the result overflows an int
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   875
     * @see Math#decrementExact(int)
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   876
     * @since 14
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   877
     */
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   878
    public static int decrementExact(int a) {
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   879
        return Math.decrementExact(a);
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   880
    }
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   881
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   882
    /**
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   883
     * Returns the argument decremented by one,
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   884
     * throwing an exception if the result overflows a {@code long}.
57923
3da1848cc39b 8230074: Improve specification for {Math, StrictMath}.negateExact
darcy
parents: 57867
diff changeset
   885
     * The overflow only occurs for {@linkplain Long#MIN_VALUE the minimum value}.
57867
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   886
     *
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   887
     * @param a the value to decrement
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   888
     * @return the result
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   889
     * @throws ArithmeticException if the result overflows a long
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   890
     * @see Math#decrementExact(long)
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   891
     * @since 14
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   892
     */
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   893
    public static long decrementExact(long a) {
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   894
        return Math.decrementExact(a);
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   895
    }
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   896
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   897
    /**
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   898
     * Returns the negation of the argument,
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   899
     * throwing an exception if the result overflows an {@code int}.
57923
3da1848cc39b 8230074: Improve specification for {Math, StrictMath}.negateExact
darcy
parents: 57867
diff changeset
   900
     * The overflow only occurs for {@linkplain Integer#MIN_VALUE the minimum value}.
57867
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   901
     *
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   902
     * @param a the value to negate
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   903
     * @return the result
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   904
     * @throws ArithmeticException if the result overflows an int
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   905
     * @see Math#negateExact(int)
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   906
     * @since 14
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   907
     */
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   908
    public static int negateExact(int a) {
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   909
        return Math.negateExact(a);
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   910
    }
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   911
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   912
    /**
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   913
     * Returns the negation of the argument,
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   914
     * throwing an exception if the result overflows a {@code long}.
57923
3da1848cc39b 8230074: Improve specification for {Math, StrictMath}.negateExact
darcy
parents: 57867
diff changeset
   915
     * The overflow only occurs for {@linkplain Long#MIN_VALUE the minimum value}.
57867
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   916
     *
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   917
     * @param a the value to negate
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   918
     * @return the result
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   919
     * @throws ArithmeticException if the result overflows a long
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   920
     * @see Math#negateExact(long)
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   921
     * @since 14
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   922
     */
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   923
    public static long negateExact(long a) {
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   924
        return Math.negateExact(a);
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   925
    }
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   926
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   927
    /**
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   928
     * Returns the value of the {@code long} argument, throwing an exception
36f5e20be69a 8229485: Add decrementExact(), incrementExact(), and negateExact() to java.lang.StrictMath
dfuchs
parents: 53041
diff changeset
   929
     * if the value overflows an {@code int}.
11905
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   930
     *
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   931
     * @param value the long value
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   932
     * @return the argument as an int
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   933
     * @throws ArithmeticException if the {@code argument} overflows an int
14014
da3648e13e67 8000269: Cleanup javadoc warnings
alanb
parents: 11905
diff changeset
   934
     * @see Math#toIntExact(long)
11905
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   935
     * @since 1.8
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   936
     */
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   937
    public static int toIntExact(long value) {
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   938
        return Math.toIntExact(value);
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   939
    }
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   940
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
   941
    /**
38452
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   942
     * Returns the exact mathematical product of the arguments.
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   943
     *
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   944
     * @param x the first value
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   945
     * @param y the second value
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   946
     * @return the result
38458
959129656ec2 8157502: make docs broken after JDK-5100935
jlahoda
parents: 38455
diff changeset
   947
     * @see Math#multiplyFull(int,int)
38460
f521277035db 8157527: Replace @since 1.9 with @since 9 on new math methods
darcy
parents: 38458
diff changeset
   948
     * @since 9
38452
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   949
     */
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   950
    public static long multiplyFull(int x, int y) {
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   951
        return Math.multiplyFull(x, y);
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   952
    }
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   953
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   954
    /**
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   955
     * Returns as a {@code long} the most significant 64 bits of the 128-bit
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   956
     * product of two 64-bit factors.
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   957
     *
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   958
     * @param x the first value
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   959
     * @param y the second value
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   960
     * @return the result
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   961
     * @see Math#multiplyHigh(long,long)
38460
f521277035db 8157527: Replace @since 1.9 with @since 9 on new math methods
darcy
parents: 38458
diff changeset
   962
     * @since 9
38452
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   963
     */
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   964
    public static long multiplyHigh(long x, long y) {
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   965
        return Math.multiplyHigh(x, y);
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   966
    }
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   967
ca210bc11ed7 5100935: No way to access the 64-bit integer multiplication of 64-bit CPUs efficiently
bpb
parents: 37364
diff changeset
   968
    /**
14420
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   969
     * Returns the largest (closest to positive infinity)
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   970
     * {@code int} value that is less than or equal to the algebraic quotient.
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   971
     * There is one special case, if the dividend is the
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   972
     * {@linkplain Integer#MIN_VALUE Integer.MIN_VALUE} and the divisor is {@code -1},
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   973
     * then integer overflow occurs and
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   974
     * the result is equal to the {@code Integer.MIN_VALUE}.
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   975
     * <p>
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   976
     * See {@link Math#floorDiv(int, int) Math.floorDiv} for examples and
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   977
     * a comparison to the integer division {@code /} operator.
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   978
     *
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   979
     * @param x the dividend
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   980
     * @param y the divisor
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   981
     * @return the largest (closest to positive infinity)
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   982
     * {@code int} value that is less than or equal to the algebraic quotient.
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   983
     * @throws ArithmeticException if the divisor {@code y} is zero
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   984
     * @see Math#floorDiv(int, int)
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   985
     * @see Math#floor(double)
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   986
     * @since 1.8
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   987
     */
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   988
    public static int floorDiv(int x, int y) {
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   989
        return Math.floorDiv(x, y);
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   990
    }
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   991
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   992
    /**
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   993
     * Returns the largest (closest to positive infinity)
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   994
     * {@code long} value that is less than or equal to the algebraic quotient.
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   995
     * There is one special case, if the dividend is the
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   996
     * {@linkplain Long#MIN_VALUE Long.MIN_VALUE} and the divisor is {@code -1},
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
   997
     * then integer overflow occurs and
38455
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
   998
     * the result is equal to {@code Long.MIN_VALUE}.
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
   999
     * <p>
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1000
     * See {@link Math#floorDiv(int, int) Math.floorDiv} for examples and
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1001
     * a comparison to the integer division {@code /} operator.
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1002
     *
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1003
     * @param x the dividend
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1004
     * @param y the divisor
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1005
     * @return the largest (closest to positive infinity)
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1006
     * {@code int} value that is less than or equal to the algebraic quotient.
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1007
     * @throws ArithmeticException if the divisor {@code y} is zero
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1008
     * @see Math#floorDiv(long, int)
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1009
     * @see Math#floor(double)
38460
f521277035db 8157527: Replace @since 1.9 with @since 9 on new math methods
darcy
parents: 38458
diff changeset
  1010
     * @since 9
38455
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1011
     */
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1012
    public static long floorDiv(long x, int y) {
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1013
        return Math.floorDiv(x, y);
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1014
    }
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1015
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1016
    /**
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1017
     * Returns the largest (closest to positive infinity)
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1018
     * {@code long} value that is less than or equal to the algebraic quotient.
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1019
     * There is one special case, if the dividend is the
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1020
     * {@linkplain Long#MIN_VALUE Long.MIN_VALUE} and the divisor is {@code -1},
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1021
     * then integer overflow occurs and
14420
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1022
     * the result is equal to the {@code Long.MIN_VALUE}.
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1023
     * <p>
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1024
     * See {@link Math#floorDiv(int, int) Math.floorDiv} for examples and
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1025
     * a comparison to the integer division {@code /} operator.
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1026
     *
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1027
     * @param x the dividend
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1028
     * @param y the divisor
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1029
     * @return the largest (closest to positive infinity)
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1030
     * {@code long} value that is less than or equal to the algebraic quotient.
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1031
     * @throws ArithmeticException if the divisor {@code y} is zero
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1032
     * @see Math#floorDiv(long, long)
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1033
     * @see Math#floor(double)
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1034
     * @since 1.8
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1035
     */
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1036
    public static long floorDiv(long x, long y) {
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1037
        return Math.floorDiv(x, y);
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1038
    }
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1039
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1040
    /**
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1041
     * Returns the floor modulus of the {@code int} arguments.
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1042
     * <p>
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1043
     * The floor modulus is {@code x - (floorDiv(x, y) * y)},
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1044
     * has the same sign as the divisor {@code y}, and
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1045
     * is in the range of {@code -abs(y) < r < +abs(y)}.
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1046
     * <p>
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1047
     * The relationship between {@code floorDiv} and {@code floorMod} is such that:
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1048
     * <ul>
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1049
     *   <li>{@code floorDiv(x, y) * y + floorMod(x, y) == x}
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1050
     * </ul>
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1051
     * <p>
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1052
     * See {@link Math#floorMod(int, int) Math.floorMod} for examples and
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1053
     * a comparison to the {@code %} operator.
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1054
     *
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1055
     * @param x the dividend
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1056
     * @param y the divisor
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1057
     * @return the floor modulus {@code x - (floorDiv(x, y) * y)}
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1058
     * @throws ArithmeticException if the divisor {@code y} is zero
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1059
     * @see Math#floorMod(int, int)
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1060
     * @see StrictMath#floorDiv(int, int)
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1061
     * @since 1.8
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1062
     */
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1063
    public static int floorMod(int x, int y) {
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1064
        return Math.floorMod(x , y);
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1065
    }
38455
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1066
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1067
    /**
44851
3439a92526a0 8179413: Fix remaining minor HTML5 issues in java.base module
jjg
parents: 42751
diff changeset
  1068
     * Returns the floor modulus of the {@code long} and {@code int} arguments.
38455
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1069
     * <p>
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1070
     * The floor modulus is {@code x - (floorDiv(x, y) * y)},
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1071
     * has the same sign as the divisor {@code y}, and
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1072
     * is in the range of {@code -abs(y) < r < +abs(y)}.
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1073
     *
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1074
     * <p>
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1075
     * The relationship between {@code floorDiv} and {@code floorMod} is such that:
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1076
     * <ul>
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1077
     *   <li>{@code floorDiv(x, y) * y + floorMod(x, y) == x}
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1078
     * </ul>
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1079
     * <p>
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1080
     * See {@link Math#floorMod(int, int) Math.floorMod} for examples and
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1081
     * a comparison to the {@code %} operator.
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1082
     *
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1083
     * @param x the dividend
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1084
     * @param y the divisor
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1085
     * @return the floor modulus {@code x - (floorDiv(x, y) * y)}
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1086
     * @throws ArithmeticException if the divisor {@code y} is zero
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1087
     * @see Math#floorMod(long, int)
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1088
     * @see StrictMath#floorDiv(long, int)
38460
f521277035db 8157527: Replace @since 1.9 with @since 9 on new math methods
darcy
parents: 38458
diff changeset
  1089
     * @since 9
38455
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1090
     */
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1091
    public static int floorMod(long x, int y) {
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1092
        return Math.floorMod(x , y);
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1093
    }
43fec67d51a3 8023217: Additional floorDiv/floorMod/multiplyExact methods for java.lang.Math
bpb
parents: 38452
diff changeset
  1094
14420
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1095
    /**
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1096
     * Returns the floor modulus of the {@code long} arguments.
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1097
     * <p>
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1098
     * The floor modulus is {@code x - (floorDiv(x, y) * y)},
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1099
     * has the same sign as the divisor {@code y}, and
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1100
     * is in the range of {@code -abs(y) < r < +abs(y)}.
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1101
     * <p>
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1102
     * The relationship between {@code floorDiv} and {@code floorMod} is such that:
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1103
     * <ul>
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1104
     *   <li>{@code floorDiv(x, y) * y + floorMod(x, y) == x}
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1105
     * </ul>
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1106
     * <p>
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1107
     * See {@link Math#floorMod(int, int) Math.floorMod} for examples and
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1108
     * a comparison to the {@code %} operator.
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1109
     *
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1110
     * @param x the dividend
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1111
     * @param y the divisor
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1112
     * @return the floor modulus {@code x - (floorDiv(x, y) * y)}
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1113
     * @throws ArithmeticException if the divisor {@code y} is zero
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1114
     * @see Math#floorMod(long, long)
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1115
     * @see StrictMath#floorDiv(long, long)
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1116
     * @since 1.8
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1117
     */
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1118
    public static long floorMod(long x, long y) {
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1119
        return Math.floorMod(x, y);
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1120
    }
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1121
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1122
    /**
11905
646e7e50c2d7 6708398: Support integer overflow
sherman
parents: 11512
diff changeset
  1123
     * Returns the absolute value of an {@code int} value.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
     * If the argument is not negative, the argument is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
     * If the argument is negative, the negation of the argument is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
     * <p>Note that if the argument is equal to the value of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
     * {@link Integer#MIN_VALUE}, the most negative representable
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
     * {@code int} value, the result is that same value, which is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
     * negative.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
     * @param   a   the  argument whose absolute value is to be determined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
     * @return  the absolute value of the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
    public static int abs(int a) {
11512
ac5944feab25 7128441: StrictMath performance improvement note shared with Math
darcy
parents: 10608
diff changeset
  1136
        return Math.abs(a);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
     * Returns the absolute value of a {@code long} value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
     * If the argument is not negative, the argument is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
     * If the argument is negative, the negation of the argument is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
     * <p>Note that if the argument is equal to the value of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
     * {@link Long#MIN_VALUE}, the most negative representable
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
     * {@code long} value, the result is that same value, which
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
     * is negative.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
     * @param   a   the  argument whose absolute value is to be determined.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
     * @return  the absolute value of the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
    public static long abs(long a) {
11512
ac5944feab25 7128441: StrictMath performance improvement note shared with Math
darcy
parents: 10608
diff changeset
  1153
        return Math.abs(a);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
     * Returns the absolute value of a {@code float} value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
     * If the argument is not negative, the argument is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
     * If the argument is negative, the negation of the argument is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
     * Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
     * <ul><li>If the argument is positive zero or negative zero, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
     * result is positive zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
     * <li>If the argument is infinite, the result is positive infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
     * <li>If the argument is NaN, the result is NaN.</ul>
40530
53bc022a137b 8164524: Correct inconsistencies in floating-point abs spec
darcy
parents: 39656
diff changeset
  1165
     *
53bc022a137b 8164524: Correct inconsistencies in floating-point abs spec
darcy
parents: 39656
diff changeset
  1166
     * @apiNote As implied by the above, one valid implementation of
53bc022a137b 8164524: Correct inconsistencies in floating-point abs spec
darcy
parents: 39656
diff changeset
  1167
     * this method is given by the expression below which computes a
53bc022a137b 8164524: Correct inconsistencies in floating-point abs spec
darcy
parents: 39656
diff changeset
  1168
     * {@code float} with the same exponent and significand as the
53bc022a137b 8164524: Correct inconsistencies in floating-point abs spec
darcy
parents: 39656
diff changeset
  1169
     * argument but with a guaranteed zero sign bit indicating a
53bc022a137b 8164524: Correct inconsistencies in floating-point abs spec
darcy
parents: 39656
diff changeset
  1170
     * positive value: <br>
53bc022a137b 8164524: Correct inconsistencies in floating-point abs spec
darcy
parents: 39656
diff changeset
  1171
     * {@code Float.intBitsToFloat(0x7fffffff & Float.floatToRawIntBits(a))}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
     * @param   a   the argument whose absolute value is to be determined
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
     * @return  the absolute value of the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
    public static float abs(float a) {
11512
ac5944feab25 7128441: StrictMath performance improvement note shared with Math
darcy
parents: 10608
diff changeset
  1177
        return Math.abs(a);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
     * Returns the absolute value of a {@code double} value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
     * If the argument is not negative, the argument is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
     * If the argument is negative, the negation of the argument is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
     * Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
     * <ul><li>If the argument is positive zero or negative zero, the result
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
     * is positive zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
     * <li>If the argument is infinite, the result is positive infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
     * <li>If the argument is NaN, the result is NaN.</ul>
40530
53bc022a137b 8164524: Correct inconsistencies in floating-point abs spec
darcy
parents: 39656
diff changeset
  1189
     *
53bc022a137b 8164524: Correct inconsistencies in floating-point abs spec
darcy
parents: 39656
diff changeset
  1190
     * @apiNote As implied by the above, one valid implementation of
53bc022a137b 8164524: Correct inconsistencies in floating-point abs spec
darcy
parents: 39656
diff changeset
  1191
     * this method is given by the expression below which computes a
53bc022a137b 8164524: Correct inconsistencies in floating-point abs spec
darcy
parents: 39656
diff changeset
  1192
     * {@code double} with the same exponent and significand as the
53bc022a137b 8164524: Correct inconsistencies in floating-point abs spec
darcy
parents: 39656
diff changeset
  1193
     * argument but with a guaranteed zero sign bit indicating a
53bc022a137b 8164524: Correct inconsistencies in floating-point abs spec
darcy
parents: 39656
diff changeset
  1194
     * positive value: <br>
53bc022a137b 8164524: Correct inconsistencies in floating-point abs spec
darcy
parents: 39656
diff changeset
  1195
     * {@code Double.longBitsToDouble((Double.doubleToRawLongBits(a)<<1)>>>1)}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
     * @param   a   the argument whose absolute value is to be determined
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
     * @return  the absolute value of the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
    public static double abs(double a) {
11512
ac5944feab25 7128441: StrictMath performance improvement note shared with Math
darcy
parents: 10608
diff changeset
  1201
        return Math.abs(a);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
     * Returns the greater of two {@code int} values. That is, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
     * result is the argument closer to the value of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
     * {@link Integer#MAX_VALUE}. If the arguments have the same value,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
     * the result is that same value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
     * @param   a   an argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
     * @param   b   another argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
     * @return  the larger of {@code a} and {@code b}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
     */
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 26727
diff changeset
  1214
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
    public static int max(int a, int b) {
11512
ac5944feab25 7128441: StrictMath performance improvement note shared with Math
darcy
parents: 10608
diff changeset
  1216
        return Math.max(a, b);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
     * Returns the greater of two {@code long} values. That is, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
     * result is the argument closer to the value of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
     * {@link Long#MAX_VALUE}. If the arguments have the same value,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
     * the result is that same value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
     * @param   a   an argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
     * @param   b   another argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
     * @return  the larger of {@code a} and {@code b}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
        */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
    public static long max(long a, long b) {
11512
ac5944feab25 7128441: StrictMath performance improvement note shared with Math
darcy
parents: 10608
diff changeset
  1230
        return Math.max(a, b);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
     * Returns the greater of two {@code float} values.  That is,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
     * the result is the argument closer to positive infinity. If the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
     * arguments have the same value, the result is that same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
     * value. If either value is NaN, then the result is NaN.  Unlike
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
     * the numerical comparison operators, this method considers
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
     * negative zero to be strictly smaller than positive zero. If one
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
     * argument is positive zero and the other negative zero, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
     * result is positive zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
     * @param   a   an argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
     * @param   b   another argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
     * @return  the larger of {@code a} and {@code b}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
     */
53041
f15af1e2c683 8212043: Add floating-point Math.min/max intrinsics
pli
parents: 52277
diff changeset
  1247
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
    public static float max(float a, float b) {
11512
ac5944feab25 7128441: StrictMath performance improvement note shared with Math
darcy
parents: 10608
diff changeset
  1249
        return Math.max(a, b);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
     * Returns the greater of two {@code double} values.  That
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
     * is, the result is the argument closer to positive infinity. If
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
     * the arguments have the same value, the result is that same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
     * value. If either value is NaN, then the result is NaN.  Unlike
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
     * the numerical comparison operators, this method considers
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
     * negative zero to be strictly smaller than positive zero. If one
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
     * argument is positive zero and the other negative zero, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
     * result is positive zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
     * @param   a   an argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
     * @param   b   another argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
     * @return  the larger of {@code a} and {@code b}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
     */
53041
f15af1e2c683 8212043: Add floating-point Math.min/max intrinsics
pli
parents: 52277
diff changeset
  1266
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
    public static double max(double a, double b) {
11512
ac5944feab25 7128441: StrictMath performance improvement note shared with Math
darcy
parents: 10608
diff changeset
  1268
        return Math.max(a, b);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
     * Returns the smaller of two {@code int} values. That is,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
     * the result the argument closer to the value of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
     * {@link Integer#MIN_VALUE}.  If the arguments have the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
     * value, the result is that same value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
     * @param   a   an argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
     * @param   b   another argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
     * @return  the smaller of {@code a} and {@code b}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
     */
31671
362e0c0acece 8076112: Add @HotSpotIntrinsicCandidate annotation to indicate methods for which Java Runtime has intrinsics
zmajo
parents: 26727
diff changeset
  1281
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
    public static int min(int a, int b) {
11512
ac5944feab25 7128441: StrictMath performance improvement note shared with Math
darcy
parents: 10608
diff changeset
  1283
        return Math.min(a, b);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
     * Returns the smaller of two {@code long} values. That is,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
     * the result is the argument closer to the value of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
     * {@link Long#MIN_VALUE}. If the arguments have the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
     * value, the result is that same value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
     * @param   a   an argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
     * @param   b   another argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
     * @return  the smaller of {@code a} and {@code b}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
    public static long min(long a, long b) {
11512
ac5944feab25 7128441: StrictMath performance improvement note shared with Math
darcy
parents: 10608
diff changeset
  1297
        return Math.min(a, b);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
     * Returns the smaller of two {@code float} values.  That is,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
     * the result is the value closer to negative infinity. If the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
     * arguments have the same value, the result is that same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
     * value. If either value is NaN, then the result is NaN.  Unlike
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
     * the numerical comparison operators, this method considers
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
     * negative zero to be strictly smaller than positive zero.  If
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
     * one argument is positive zero and the other is negative zero,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
     * the result is negative zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
     * @param   a   an argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
     * @param   b   another argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
     * @return  the smaller of {@code a} and {@code b.}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
     */
53041
f15af1e2c683 8212043: Add floating-point Math.min/max intrinsics
pli
parents: 52277
diff changeset
  1314
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
    public static float min(float a, float b) {
11512
ac5944feab25 7128441: StrictMath performance improvement note shared with Math
darcy
parents: 10608
diff changeset
  1316
        return Math.min(a, b);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
     * Returns the smaller of two {@code double} values.  That
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
     * is, the result is the value closer to negative infinity. If the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
     * arguments have the same value, the result is that same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
     * value. If either value is NaN, then the result is NaN.  Unlike
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1324
     * the numerical comparison operators, this method considers
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
     * negative zero to be strictly smaller than positive zero. If one
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
     * argument is positive zero and the other is negative zero, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1327
     * result is negative zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
     * @param   a   an argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
     * @param   b   another argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
     * @return  the smaller of {@code a} and {@code b}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
     */
53041
f15af1e2c683 8212043: Add floating-point Math.min/max intrinsics
pli
parents: 52277
diff changeset
  1333
    @HotSpotIntrinsicCandidate
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
    public static double min(double a, double b) {
11512
ac5944feab25 7128441: StrictMath performance improvement note shared with Math
darcy
parents: 10608
diff changeset
  1335
        return Math.min(a, b);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
    /**
37364
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1339
     * Returns the fused multiply add of the three arguments; that is,
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1340
     * returns the exact product of the first two arguments summed
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1341
     * with the third argument and then rounded once to the nearest
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1342
     * {@code double}.
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1343
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1344
     * The rounding is done using the {@linkplain
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1345
     * java.math.RoundingMode#HALF_EVEN round to nearest even
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1346
     * rounding mode}.
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1347
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1348
     * In contrast, if {@code a * b + c} is evaluated as a regular
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1349
     * floating-point expression, two rounding errors are involved,
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1350
     * the first for the multiply operation, the second for the
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1351
     * addition operation.
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1352
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1353
     * <p>Special cases:
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1354
     * <ul>
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1355
     * <li> If any argument is NaN, the result is NaN.
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1356
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1357
     * <li> If one of the first two arguments is infinite and the
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1358
     * other is zero, the result is NaN.
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1359
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1360
     * <li> If the exact product of the first two arguments is infinite
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1361
     * (in other words, at least one of the arguments is infinite and
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1362
     * the other is neither zero nor NaN) and the third argument is an
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1363
     * infinity of the opposite sign, the result is NaN.
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1364
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1365
     * </ul>
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1366
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1367
     * <p>Note that {@code fusedMac(a, 1.0, c)} returns the same
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1368
     * result as ({@code a + c}).  However,
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1369
     * {@code fusedMac(a, b, +0.0)} does <em>not</em> always return the
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1370
     * same result as ({@code a * b}) since
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1371
     * {@code fusedMac(-0.0, +0.0, +0.0)} is {@code +0.0} while
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1372
     * ({@code -0.0 * +0.0}) is {@code -0.0}; {@code fusedMac(a, b, -0.0)} is
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1373
     * equivalent to ({@code a * b}) however.
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1374
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1375
     * @apiNote This method corresponds to the fusedMultiplyAdd
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1376
     * operation defined in IEEE 754-2008.
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1377
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1378
     * @param a a value
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1379
     * @param b a value
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1380
     * @param c a value
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1381
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1382
     * @return (<i>a</i>&nbsp;&times;&nbsp;<i>b</i>&nbsp;+&nbsp;<i>c</i>)
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1383
     * computed, as if with unlimited range and precision, and rounded
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1384
     * once to the nearest {@code double} value
39656
25f808289769 8161413: Math.fma javadoc doesn't have @since 9
bpb
parents: 38460
diff changeset
  1385
     *
25f808289769 8161413: Math.fma javadoc doesn't have @since 9
bpb
parents: 38460
diff changeset
  1386
     * @since 9
37364
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1387
     */
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1388
    public static double fma(double a, double b, double c) {
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1389
        return Math.fma(a, b, c);
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1390
    }
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1391
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1392
    /**
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1393
     * Returns the fused multiply add of the three arguments; that is,
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1394
     * returns the exact product of the first two arguments summed
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1395
     * with the third argument and then rounded once to the nearest
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1396
     * {@code float}.
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1397
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1398
     * The rounding is done using the {@linkplain
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1399
     * java.math.RoundingMode#HALF_EVEN round to nearest even
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1400
     * rounding mode}.
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1401
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1402
     * In contrast, if {@code a * b + c} is evaluated as a regular
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1403
     * floating-point expression, two rounding errors are involved,
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1404
     * the first for the multiply operation, the second for the
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1405
     * addition operation.
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1406
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1407
     * <p>Special cases:
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1408
     * <ul>
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1409
     * <li> If any argument is NaN, the result is NaN.
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1410
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1411
     * <li> If one of the first two arguments is infinite and the
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1412
     * other is zero, the result is NaN.
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1413
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1414
     * <li> If the exact product of the first two arguments is infinite
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1415
     * (in other words, at least one of the arguments is infinite and
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1416
     * the other is neither zero nor NaN) and the third argument is an
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1417
     * infinity of the opposite sign, the result is NaN.
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1418
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1419
     * </ul>
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1420
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1421
     * <p>Note that {@code fma(a, 1.0f, c)} returns the same
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1422
     * result as ({@code a + c}).  However,
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1423
     * {@code fma(a, b, +0.0f)} does <em>not</em> always return the
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1424
     * same result as ({@code a * b}) since
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1425
     * {@code fma(-0.0f, +0.0f, +0.0f)} is {@code +0.0f} while
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1426
     * ({@code -0.0f * +0.0f}) is {@code -0.0f}; {@code fma(a, b, -0.0f)} is
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1427
     * equivalent to ({@code a * b}) however.
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1428
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1429
     * @apiNote This method corresponds to the fusedMultiplyAdd
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1430
     * operation defined in IEEE 754-2008.
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1431
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1432
     * @param a a value
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1433
     * @param b a value
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1434
     * @param c a value
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1435
     *
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1436
     * @return (<i>a</i>&nbsp;&times;&nbsp;<i>b</i>&nbsp;+&nbsp;<i>c</i>)
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1437
     * computed, as if with unlimited range and precision, and rounded
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1438
     * once to the nearest {@code float} value
39656
25f808289769 8161413: Math.fma javadoc doesn't have @since 9
bpb
parents: 38460
diff changeset
  1439
     *
25f808289769 8161413: Math.fma javadoc doesn't have @since 9
bpb
parents: 38460
diff changeset
  1440
     * @since 9
37364
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1441
     */
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1442
    public static float fma(float a, float b, float c) {
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1443
        return Math.fma(a, b, c);
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1444
    }
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1445
80be215c8c51 4851642: Add fused multiply add to Java math library
darcy
parents: 34781
diff changeset
  1446
    /**
10122
bf8e763fcceb 7062430: Minor inconsistency in ulp descriptions
darcy
parents: 9269
diff changeset
  1447
     * Returns the size of an ulp of the argument.  An ulp, unit in
bf8e763fcceb 7062430: Minor inconsistency in ulp descriptions
darcy
parents: 9269
diff changeset
  1448
     * the last place, of a {@code double} value is the positive
bf8e763fcceb 7062430: Minor inconsistency in ulp descriptions
darcy
parents: 9269
diff changeset
  1449
     * distance between this floating-point value and the {@code
bf8e763fcceb 7062430: Minor inconsistency in ulp descriptions
darcy
parents: 9269
diff changeset
  1450
     * double} value next larger in magnitude.  Note that for non-NaN
bf8e763fcceb 7062430: Minor inconsistency in ulp descriptions
darcy
parents: 9269
diff changeset
  1451
     * <i>x</i>, <code>ulp(-<i>x</i>) == ulp(<i>x</i>)</code>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
     * <p>Special Cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1455
     * <li> If the argument is NaN, then the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1456
     * <li> If the argument is positive or negative infinity, then the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1457
     * result is positive infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1458
     * <li> If the argument is positive or negative zero, then the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1459
     * {@code Double.MIN_VALUE}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
     * <li> If the argument is &plusmn;{@code Double.MAX_VALUE}, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1461
     * the result is equal to 2<sup>971</sup>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
     * @param d the floating-point value whose ulp is to be returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
     * @return the size of an ulp of the argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
     * @author Joseph D. Darcy
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
    public static double ulp(double d) {
10598
efd29b4b3e67 7091682: Move sun.misc.FpUtils code into java.lang.Math
darcy
parents: 10122
diff changeset
  1470
        return Math.ulp(d);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
    /**
10122
bf8e763fcceb 7062430: Minor inconsistency in ulp descriptions
darcy
parents: 9269
diff changeset
  1474
     * Returns the size of an ulp of the argument.  An ulp, unit in
bf8e763fcceb 7062430: Minor inconsistency in ulp descriptions
darcy
parents: 9269
diff changeset
  1475
     * the last place, of a {@code float} value is the positive
bf8e763fcceb 7062430: Minor inconsistency in ulp descriptions
darcy
parents: 9269
diff changeset
  1476
     * distance between this floating-point value and the {@code
bf8e763fcceb 7062430: Minor inconsistency in ulp descriptions
darcy
parents: 9269
diff changeset
  1477
     * float} value next larger in magnitude.  Note that for non-NaN
bf8e763fcceb 7062430: Minor inconsistency in ulp descriptions
darcy
parents: 9269
diff changeset
  1478
     * <i>x</i>, <code>ulp(-<i>x</i>) == ulp(<i>x</i>)</code>.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1479
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
     * <p>Special Cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1481
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
     * <li> If the argument is NaN, then the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
     * <li> If the argument is positive or negative infinity, then the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
     * result is positive infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1485
     * <li> If the argument is positive or negative zero, then the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1486
     * {@code Float.MIN_VALUE}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1487
     * <li> If the argument is &plusmn;{@code Float.MAX_VALUE}, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1488
     * the result is equal to 2<sup>104</sup>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1489
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
     * @param f the floating-point value whose ulp is to be returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
     * @return the size of an ulp of the argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
     * @author Joseph D. Darcy
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1496
    public static float ulp(float f) {
10598
efd29b4b3e67 7091682: Move sun.misc.FpUtils code into java.lang.Math
darcy
parents: 10122
diff changeset
  1497
        return Math.ulp(f);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1498
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1499
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1500
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
     * Returns the signum function of the argument; zero if the argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1502
     * is zero, 1.0 if the argument is greater than zero, -1.0 if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
     * argument is less than zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1505
     * <p>Special Cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
     * <li> If the argument is NaN, then the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
     * <li> If the argument is positive zero or negative zero, then the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
     *      result is the same as the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1511
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1512
     * @param d the floating-point value whose signum is to be returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
     * @return the signum function of the argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
     * @author Joseph D. Darcy
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1515
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1516
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
    public static double signum(double d) {
10598
efd29b4b3e67 7091682: Move sun.misc.FpUtils code into java.lang.Math
darcy
parents: 10122
diff changeset
  1518
        return Math.signum(d);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
     * Returns the signum function of the argument; zero if the argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
     * is zero, 1.0f if the argument is greater than zero, -1.0f if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1524
     * argument is less than zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
     * <p>Special Cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
     * <li> If the argument is NaN, then the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
     * <li> If the argument is positive zero or negative zero, then the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
     *      result is the same as the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1532
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1533
     * @param f the floating-point value whose signum is to be returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1534
     * @return the signum function of the argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
     * @author Joseph D. Darcy
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1536
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1537
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
    public static float signum(float f) {
10598
efd29b4b3e67 7091682: Move sun.misc.FpUtils code into java.lang.Math
darcy
parents: 10122
diff changeset
  1539
        return Math.signum(f);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1540
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1541
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1542
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1543
     * Returns the hyperbolic sine of a {@code double} value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1544
     * The hyperbolic sine of <i>x</i> is defined to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1545
     * (<i>e<sup>x</sup>&nbsp;-&nbsp;e<sup>-x</sup></i>)/2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1546
     * where <i>e</i> is {@linkplain Math#E Euler's number}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1547
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1548
     * <p>Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1549
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1550
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1551
     * <li>If the argument is NaN, then the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1552
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1553
     * <li>If the argument is infinite, then the result is an infinity
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1554
     * with the same sign as the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1555
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1556
     * <li>If the argument is zero, then the result is a zero with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1557
     * same sign as the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1558
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1559
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1560
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1561
     * @param   x The number whose hyperbolic sine is to be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1562
     * @return  The hyperbolic sine of {@code x}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1563
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1564
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1565
    public static native double sinh(double x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1566
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1567
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1568
     * Returns the hyperbolic cosine of a {@code double} value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1569
     * The hyperbolic cosine of <i>x</i> is defined to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1570
     * (<i>e<sup>x</sup>&nbsp;+&nbsp;e<sup>-x</sup></i>)/2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1571
     * where <i>e</i> is {@linkplain Math#E Euler's number}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1573
     * <p>Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
     * <li>If the argument is NaN, then the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1577
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1578
     * <li>If the argument is infinite, then the result is positive
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
     * infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1581
     * <li>If the argument is zero, then the result is {@code 1.0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1582
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1583
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1584
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1585
     * @param   x The number whose hyperbolic cosine is to be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1586
     * @return  The hyperbolic cosine of {@code x}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1587
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
    public static native double cosh(double x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1590
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1591
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1592
     * Returns the hyperbolic tangent of a {@code double} value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1593
     * The hyperbolic tangent of <i>x</i> is defined to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1594
     * (<i>e<sup>x</sup>&nbsp;-&nbsp;e<sup>-x</sup></i>)/(<i>e<sup>x</sup>&nbsp;+&nbsp;e<sup>-x</sup></i>),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1595
     * in other words, {@linkplain Math#sinh
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1596
     * sinh(<i>x</i>)}/{@linkplain Math#cosh cosh(<i>x</i>)}.  Note
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1597
     * that the absolute value of the exact tanh is always less than
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
     * 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1600
     * <p>Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1601
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1603
     * <li>If the argument is NaN, then the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1605
     * <li>If the argument is zero, then the result is a zero with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1606
     * same sign as the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1607
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1608
     * <li>If the argument is positive infinity, then the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1609
     * {@code +1.0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1611
     * <li>If the argument is negative infinity, then the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1612
     * {@code -1.0}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1613
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1614
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1615
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
     * @param   x The number whose hyperbolic tangent is to be returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1617
     * @return  The hyperbolic tangent of {@code x}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1618
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1619
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
    public static native double tanh(double x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1621
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1622
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1623
     * Returns sqrt(<i>x</i><sup>2</sup>&nbsp;+<i>y</i><sup>2</sup>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
     * without intermediate overflow or underflow.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
     * <p>Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
     * <li> If either argument is infinite, then the result
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1630
     * is positive infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1631
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1632
     * <li> If either argument is NaN and neither argument is infinite,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1633
     * then the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1637
     * @param x a value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1638
     * @param y a value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1639
     * @return sqrt(<i>x</i><sup>2</sup>&nbsp;+<i>y</i><sup>2</sup>)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1640
     * without intermediate overflow or underflow
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1641
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1642
     */
32765
b65c2f5d4d01 7130085: Port fdlibm hypot to Java
darcy
parents: 32655
diff changeset
  1643
    public static double hypot(double x, double y) {
b65c2f5d4d01 7130085: Port fdlibm hypot to Java
darcy
parents: 32655
diff changeset
  1644
        return FdLibm.Hypot.compute(x, y);
b65c2f5d4d01 7130085: Port fdlibm hypot to Java
darcy
parents: 32655
diff changeset
  1645
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1646
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
     * Returns <i>e</i><sup>x</sup>&nbsp;-1.  Note that for values of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1649
     * <i>x</i> near 0, the exact sum of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1650
     * {@code expm1(x)}&nbsp;+&nbsp;1 is much closer to the true
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1651
     * result of <i>e</i><sup>x</sup> than {@code exp(x)}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1652
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1653
     * <p>Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1654
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1655
     * <li>If the argument is NaN, the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1656
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1657
     * <li>If the argument is positive infinity, then the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1658
     * positive infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1659
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1660
     * <li>If the argument is negative infinity, then the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1661
     * -1.0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1662
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1663
     * <li>If the argument is zero, then the result is a zero with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
     * same sign as the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1666
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1667
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1668
     * @param   x   the exponent to raise <i>e</i> to in the computation of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
     *              <i>e</i><sup>{@code x}</sup>&nbsp;-1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
     * @return  the value <i>e</i><sup>{@code x}</sup>&nbsp;-&nbsp;1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1673
    public static native double expm1(double x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
     * Returns the natural logarithm of the sum of the argument and 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
     * Note that for small values {@code x}, the result of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
     * {@code log1p(x)} is much closer to the true result of ln(1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1679
     * + {@code x}) than the floating-point evaluation of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1680
     * {@code log(1.0+x)}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1681
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1682
     * <p>Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1683
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1684
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1685
     * <li>If the argument is NaN or less than -1, then the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1686
     * NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1687
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1688
     * <li>If the argument is positive infinity, then the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1689
     * positive infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1690
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1691
     * <li>If the argument is negative one, then the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1692
     * negative infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1693
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1694
     * <li>If the argument is zero, then the result is a zero with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1695
     * same sign as the argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1696
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1697
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1698
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1699
     * @param   x   a value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1700
     * @return the value ln({@code x}&nbsp;+&nbsp;1), the natural
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1701
     * log of {@code x}&nbsp;+&nbsp;1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1702
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1703
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1704
    public static native double log1p(double x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1705
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1706
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1707
     * Returns the first floating-point argument with the sign of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1708
     * second floating-point argument.  For this method, a NaN
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1709
     * {@code sign} argument is always treated as if it were
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1710
     * positive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1711
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1712
     * @param magnitude  the parameter providing the magnitude of the result
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1713
     * @param sign   the parameter providing the sign of the result
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1714
     * @return a value with the magnitude of {@code magnitude}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1715
     * and the sign of {@code sign}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1716
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1717
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1718
    public static double copySign(double magnitude, double sign) {
10598
efd29b4b3e67 7091682: Move sun.misc.FpUtils code into java.lang.Math
darcy
parents: 10122
diff changeset
  1719
        return Math.copySign(magnitude, (Double.isNaN(sign)?1.0d:sign));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1720
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1721
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1722
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1723
     * Returns the first floating-point argument with the sign of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1724
     * second floating-point argument.  For this method, a NaN
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1725
     * {@code sign} argument is always treated as if it were
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1726
     * positive.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1727
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1728
     * @param magnitude  the parameter providing the magnitude of the result
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1729
     * @param sign   the parameter providing the sign of the result
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1730
     * @return a value with the magnitude of {@code magnitude}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1731
     * and the sign of {@code sign}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1732
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1733
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1734
    public static float copySign(float magnitude, float sign) {
10598
efd29b4b3e67 7091682: Move sun.misc.FpUtils code into java.lang.Math
darcy
parents: 10122
diff changeset
  1735
        return Math.copySign(magnitude, (Float.isNaN(sign)?1.0f:sign));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1736
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1737
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1738
     * Returns the unbiased exponent used in the representation of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1739
     * {@code float}.  Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1740
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1742
     * <li>If the argument is NaN or infinite, then the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1743
     * {@link Float#MAX_EXPONENT} + 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1744
     * <li>If the argument is zero or subnormal, then the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1745
     * {@link Float#MIN_EXPONENT} -1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1746
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1747
     * @param f a {@code float} value
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 14420
diff changeset
  1748
     * @return the unbiased exponent of the argument
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1749
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1751
    public static int getExponent(float f) {
10598
efd29b4b3e67 7091682: Move sun.misc.FpUtils code into java.lang.Math
darcy
parents: 10122
diff changeset
  1752
        return Math.getExponent(f);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1753
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1754
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1755
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1756
     * Returns the unbiased exponent used in the representation of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1757
     * {@code double}.  Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1758
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1759
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1760
     * <li>If the argument is NaN or infinite, then the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1761
     * {@link Double#MAX_EXPONENT} + 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1762
     * <li>If the argument is zero or subnormal, then the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1763
     * {@link Double#MIN_EXPONENT} -1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1764
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1765
     * @param d a {@code double} value
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 14420
diff changeset
  1766
     * @return the unbiased exponent of the argument
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1767
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1768
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1769
    public static int getExponent(double d) {
10598
efd29b4b3e67 7091682: Move sun.misc.FpUtils code into java.lang.Math
darcy
parents: 10122
diff changeset
  1770
        return Math.getExponent(d);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1771
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1772
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1773
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1774
     * Returns the floating-point number adjacent to the first
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1775
     * argument in the direction of the second argument.  If both
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1776
     * arguments compare as equal the second argument is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1777
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1778
     * <p>Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1779
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1780
     * <li> If either argument is a NaN, then NaN is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1781
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1782
     * <li> If both arguments are signed zeros, {@code direction}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1783
     * is returned unchanged (as implied by the requirement of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1784
     * returning the second argument if the arguments compare as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1785
     * equal).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1786
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1787
     * <li> If {@code start} is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1788
     * &plusmn;{@link Double#MIN_VALUE} and {@code direction}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1789
     * has a value such that the result should have a smaller
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1790
     * magnitude, then a zero with the same sign as {@code start}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1791
     * is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1792
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1793
     * <li> If {@code start} is infinite and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1794
     * {@code direction} has a value such that the result should
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1795
     * have a smaller magnitude, {@link Double#MAX_VALUE} with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1796
     * same sign as {@code start} is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1797
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1798
     * <li> If {@code start} is equal to &plusmn;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1799
     * {@link Double#MAX_VALUE} and {@code direction} has a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1800
     * value such that the result should have a larger magnitude, an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1801
     * infinity with same sign as {@code start} is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1802
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1803
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1804
     * @param start  starting floating-point value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1805
     * @param direction value indicating which of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1806
     * {@code start}'s neighbors or {@code start} should
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1807
     * be returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1808
     * @return The floating-point number adjacent to {@code start} in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1809
     * direction of {@code direction}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1810
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1811
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1812
    public static double nextAfter(double start, double direction) {
10598
efd29b4b3e67 7091682: Move sun.misc.FpUtils code into java.lang.Math
darcy
parents: 10122
diff changeset
  1813
        return Math.nextAfter(start, direction);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1814
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1815
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1816
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1817
     * Returns the floating-point number adjacent to the first
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1818
     * argument in the direction of the second argument.  If both
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1819
     * arguments compare as equal a value equivalent to the second argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1820
     * is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1821
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1822
     * <p>Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1823
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1824
     * <li> If either argument is a NaN, then NaN is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1825
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1826
     * <li> If both arguments are signed zeros, a value equivalent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1827
     * to {@code direction} is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1828
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1829
     * <li> If {@code start} is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1830
     * &plusmn;{@link Float#MIN_VALUE} and {@code direction}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1831
     * has a value such that the result should have a smaller
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1832
     * magnitude, then a zero with the same sign as {@code start}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1833
     * is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1834
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1835
     * <li> If {@code start} is infinite and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1836
     * {@code direction} has a value such that the result should
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1837
     * have a smaller magnitude, {@link Float#MAX_VALUE} with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1838
     * same sign as {@code start} is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1839
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1840
     * <li> If {@code start} is equal to &plusmn;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1841
     * {@link Float#MAX_VALUE} and {@code direction} has a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1842
     * value such that the result should have a larger magnitude, an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1843
     * infinity with same sign as {@code start} is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1844
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1845
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1846
     * @param start  starting floating-point value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1847
     * @param direction value indicating which of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1848
     * {@code start}'s neighbors or {@code start} should
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1849
     * be returned
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1850
     * @return The floating-point number adjacent to {@code start} in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1851
     * direction of {@code direction}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1852
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1853
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1854
    public static float nextAfter(float start, double direction) {
10598
efd29b4b3e67 7091682: Move sun.misc.FpUtils code into java.lang.Math
darcy
parents: 10122
diff changeset
  1855
        return Math.nextAfter(start, direction);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1856
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1857
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1858
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1859
     * Returns the floating-point value adjacent to {@code d} in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1860
     * the direction of positive infinity.  This method is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1861
     * semantically equivalent to {@code nextAfter(d,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1862
     * Double.POSITIVE_INFINITY)}; however, a {@code nextUp}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1863
     * implementation may run faster than its equivalent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1864
     * {@code nextAfter} call.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1865
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1866
     * <p>Special Cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1867
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1868
     * <li> If the argument is NaN, the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1869
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1870
     * <li> If the argument is positive infinity, the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1871
     * positive infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1872
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1873
     * <li> If the argument is zero, the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1874
     * {@link Double#MIN_VALUE}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1875
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1876
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1877
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1878
     * @param d starting floating-point value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1879
     * @return The adjacent floating-point value closer to positive
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1880
     * infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1881
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1882
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1883
    public static double nextUp(double d) {
10598
efd29b4b3e67 7091682: Move sun.misc.FpUtils code into java.lang.Math
darcy
parents: 10122
diff changeset
  1884
        return Math.nextUp(d);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1885
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1886
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1887
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1888
     * Returns the floating-point value adjacent to {@code f} in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1889
     * the direction of positive infinity.  This method is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1890
     * semantically equivalent to {@code nextAfter(f,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1891
     * Float.POSITIVE_INFINITY)}; however, a {@code nextUp}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1892
     * implementation may run faster than its equivalent
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1893
     * {@code nextAfter} call.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1894
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1895
     * <p>Special Cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1896
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1897
     * <li> If the argument is NaN, the result is NaN.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1898
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1899
     * <li> If the argument is positive infinity, the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1900
     * positive infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1901
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1902
     * <li> If the argument is zero, the result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1903
     * {@link Float#MIN_VALUE}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1904
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1905
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1906
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1907
     * @param f starting floating-point value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1908
     * @return The adjacent floating-point value closer to positive
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1909
     * infinity.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1910
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1911
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1912
    public static float nextUp(float f) {
10598
efd29b4b3e67 7091682: Move sun.misc.FpUtils code into java.lang.Math
darcy
parents: 10122
diff changeset
  1913
        return Math.nextUp(f);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1914
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1915
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1916
    /**
10608
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1917
     * Returns the floating-point value adjacent to {@code d} in
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1918
     * the direction of negative infinity.  This method is
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1919
     * semantically equivalent to {@code nextAfter(d,
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1920
     * Double.NEGATIVE_INFINITY)}; however, a
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1921
     * {@code nextDown} implementation may run faster than its
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1922
     * equivalent {@code nextAfter} call.
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1923
     *
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1924
     * <p>Special Cases:
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1925
     * <ul>
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1926
     * <li> If the argument is NaN, the result is NaN.
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1927
     *
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1928
     * <li> If the argument is negative infinity, the result is
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1929
     * negative infinity.
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1930
     *
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1931
     * <li> If the argument is zero, the result is
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1932
     * {@code -Double.MIN_VALUE}
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1933
     *
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1934
     * </ul>
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1935
     *
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1936
     * @param d  starting floating-point value
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1937
     * @return The adjacent floating-point value closer to negative
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1938
     * infinity.
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1939
     * @since 1.8
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1940
     */
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1941
    public static double nextDown(double d) {
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1942
        return Math.nextDown(d);
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1943
    }
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1944
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1945
    /**
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1946
     * Returns the floating-point value adjacent to {@code f} in
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1947
     * the direction of negative infinity.  This method is
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1948
     * semantically equivalent to {@code nextAfter(f,
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1949
     * Float.NEGATIVE_INFINITY)}; however, a
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1950
     * {@code nextDown} implementation may run faster than its
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1951
     * equivalent {@code nextAfter} call.
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1952
     *
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1953
     * <p>Special Cases:
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1954
     * <ul>
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1955
     * <li> If the argument is NaN, the result is NaN.
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1956
     *
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1957
     * <li> If the argument is negative infinity, the result is
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1958
     * negative infinity.
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1959
     *
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1960
     * <li> If the argument is zero, the result is
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1961
     * {@code -Float.MIN_VALUE}
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1962
     *
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1963
     * </ul>
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1964
     *
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1965
     * @param f  starting floating-point value
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1966
     * @return The adjacent floating-point value closer to negative
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1967
     * infinity.
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1968
     * @since 1.8
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1969
     */
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1970
    public static float nextDown(float f) {
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1971
        return Math.nextDown(f);
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1972
    }
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1973
7cfca36fc79b 7092404: Add Math.nextDown and Double.isFinite
darcy
parents: 10598
diff changeset
  1974
    /**
14420
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  1975
     * Returns {@code d} &times;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1976
     * 2<sup>{@code scaleFactor}</sup> rounded as if performed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1977
     * by a single correctly rounded floating-point multiply to a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1978
     * member of the double value set.  See the Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1979
     * Language Specification for a discussion of floating-point
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1980
     * value sets.  If the exponent of the result is between {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1981
     * Double#MIN_EXPONENT} and {@link Double#MAX_EXPONENT}, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1982
     * answer is calculated exactly.  If the exponent of the result
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1983
     * would be larger than {@code Double.MAX_EXPONENT}, an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1984
     * infinity is returned.  Note that if the result is subnormal,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1985
     * precision may be lost; that is, when {@code scalb(x, n)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1986
     * is subnormal, {@code scalb(scalb(x, n), -n)} may not equal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1987
     * <i>x</i>.  When the result is non-NaN, the result has the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1988
     * sign as {@code d}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1989
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1990
     * <p>Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1991
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1992
     * <li> If the first argument is NaN, NaN is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1993
     * <li> If the first argument is infinite, then an infinity of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1994
     * same sign is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1995
     * <li> If the first argument is zero, then a zero of the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1996
     * sign is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1997
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1998
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1999
     * @param d number to be scaled by a power of two.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2000
     * @param scaleFactor power of 2 used to scale {@code d}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2001
     * @return {@code d} &times; 2<sup>{@code scaleFactor}</sup>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2002
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2003
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2004
    public static double scalb(double d, int scaleFactor) {
10598
efd29b4b3e67 7091682: Move sun.misc.FpUtils code into java.lang.Math
darcy
parents: 10122
diff changeset
  2005
        return Math.scalb(d, scaleFactor);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2006
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2007
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2008
    /**
14420
5cbeeccf4a40 6282196: There should be Math.mod(number, modulo) methods
sherman
parents: 14342
diff changeset
  2009
     * Returns {@code f} &times;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2010
     * 2<sup>{@code scaleFactor}</sup> rounded as if performed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2011
     * by a single correctly rounded floating-point multiply to a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2012
     * member of the float value set.  See the Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2013
     * Language Specification for a discussion of floating-point
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2014
     * value sets.  If the exponent of the result is between {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2015
     * Float#MIN_EXPONENT} and {@link Float#MAX_EXPONENT}, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2016
     * answer is calculated exactly.  If the exponent of the result
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2017
     * would be larger than {@code Float.MAX_EXPONENT}, an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2018
     * infinity is returned.  Note that if the result is subnormal,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2019
     * precision may be lost; that is, when {@code scalb(x, n)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2020
     * is subnormal, {@code scalb(scalb(x, n), -n)} may not equal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2021
     * <i>x</i>.  When the result is non-NaN, the result has the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2022
     * sign as {@code f}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2023
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2024
     * <p>Special cases:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2025
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2026
     * <li> If the first argument is NaN, NaN is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2027
     * <li> If the first argument is infinite, then an infinity of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2028
     * same sign is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2029
     * <li> If the first argument is zero, then a zero of the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2030
     * sign is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2031
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2032
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2033
     * @param f number to be scaled by a power of two.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2034
     * @param scaleFactor power of 2 used to scale {@code f}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2035
     * @return {@code f} &times; 2<sup>{@code scaleFactor}</sup>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2036
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2037
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2038
    public static float scalb(float f, int scaleFactor) {
10598
efd29b4b3e67 7091682: Move sun.misc.FpUtils code into java.lang.Math
darcy
parents: 10122
diff changeset
  2039
        return Math.scalb(f, scaleFactor);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2040
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2041
}