HomeSort by relevance Sort by last modified time
    Searched defs:signum (Results 1 - 22 of 22) sorted by null

  /libcore/luni/src/main/java/java/lang/
Integer.java 681 * Returns the value of the {@code signum} function for the specified
690 public static int signum(int i) { method in class:Integer
Long.java 702 * Returns the value of the {@code signum} function for the specified long
711 public static int signum(long v) { method in class:Long
Math.java 772 * Returns the signum function of the argument. If the argument is less than
779 * <li>{@code signum(+0.0) = +0.0}</li>
780 * <li>{@code signum(-0.0) = -0.0}</li>
781 * <li>{@code signum(+infinity) = +1.0}</li>
782 * <li>{@code signum(-infinity) = -1.0}</li>
783 * <li>{@code signum(NaN) = NaN}</li>
787 * the value whose signum has to be computed.
788 * @return the value of the signum function.
790 public static double signum(double d) { method in class:Math
804 * Returns the signum function of the argument. If the argument is less tha
822 public static float signum(float f) { method in class:Math
    [all...]
StrictMath.java 765 * Returns the signum function of the argument. If the argument is less than
772 * <li>{@code signum(+0.0) = +0.0}</li>
773 * <li>{@code signum(-0.0) = -0.0}</li>
774 * <li>{@code signum(+infinity) = +1.0}</li>
775 * <li>{@code signum(-infinity) = -1.0}</li>
776 * <li>{@code signum(NaN) = NaN}</li>
780 * the value whose signum has to be computed.
781 * @return the value of the signum function.
783 public static double signum(double d){ method in class:StrictMath
784 return Math.signum(d)
806 public static float signum(float f){ method in class:StrictMath
    [all...]
  /libcore/luni/src/main/java/java/math/
BigInteger.java 86 private int signum; field in class:BigInteger
227 * @param signum sign of the new {@code BigInteger} (-1 for negative, 0 for
235 public BigInteger(int signum, byte[] magnitude) {
239 if (signum < -1 || signum > 1) {
240 throw new NumberFormatException("Invalid signum: " + signum);
242 if (signum == 0) {
245 throw new NumberFormatException("signum-magnitude mismatch");
250 bigInt.putBigEndian(magnitude, signum < 0)
412 public int signum() { method in class:BigInteger
    [all...]
BigDecimal.java 852 largerSignum = larger.signum();
853 if (largerSignum == smaller.signum()) {
1795 public int signum() { method in class:BigDecimal
    [all...]
  /external/v8/benchmarks/
crypto.js 717 if(this.signum() == 0 || b < 2 || b > 36) return "0";
722 while(y.signum() > 0) {
738 if(s.charAt(i) == "-" && this.signum() == 0) mi = true;
1169 while(x.signum() > 0) {
1199 if((this.isEven() && ac) || m.signum() == 0) return BigInteger.ZERO;
1202 while(u.signum() != 0) {
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-crypto.js 709 if(this.signum() == 0 || b < 2 || b > 36) return "0";
714 while(y.signum() > 0) {
730 if(s.charAt(i) == "-" && this.signum() == 0) mi = true;
1161 while(x.signum() > 0) {
1191 if((this.isEven() && ac) || m.signum() == 0) return BigInteger.ZERO;
1194 while(u.signum() != 0) {
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-crypto.js 709 if(this.signum() == 0 || b < 2 || b > 36) return "0";
714 while(y.signum() > 0) {
730 if(s.charAt(i) == "-" && this.signum() == 0) mi = true;
1161 while(x.signum() > 0) {
1191 if((this.isEven() && ac) || m.signum() == 0) return BigInteger.ZERO;
1194 while(u.signum() != 0) {
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-crypto.js 709 if(this.signum() == 0 || b < 2 || b > 36) return "0";
714 while(y.signum() > 0) {
730 if(s.charAt(i) == "-" && this.signum() == 0) mi = true;
1161 while(x.signum() > 0) {
1191 if((this.isEven() && ac) || m.signum() == 0) return BigInteger.ZERO;
1194 while(u.signum() != 0) {
    [all...]
  /external/kernel-headers/original/linux/
fs.h 650 int signum; /* posix.1b rt signal to be delivered on IO */ member in struct:fown_struct
    [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/15/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 
  /external/jdiff/
xerces.jar 
  /prebuilt/sdk/4/
android.jar 

Completed in 2037 milliseconds