/dports/lang/seed7/seed7/prg/ |
H A D | chkbig.sd7 | 20463 if lowestSetBit(-2_) <> 1 or 20464 lowestSetBit(-1_) <> 0 or 20465 lowestSetBit( 0_) <> -1 or 20466 lowestSetBit( 1_) <> 0 or 20467 lowestSetBit( 2_) <> 1 or 20468 lowestSetBit(bigintExpr(-2_)) <> 1 or 20469 lowestSetBit(bigintExpr(-1_)) <> 0 or 20470 lowestSetBit(bigintExpr( 0_)) <> -1 or 20471 lowestSetBit(bigintExpr( 1_)) <> 0 or 20472 lowestSetBit(bigintExpr( 2_)) <> 1 then [all …]
|
H A D | chkint.sd7 | 22460 if lowestSetBit(-2) <> 1 or 22461 lowestSetBit(-1) <> 0 or 22462 lowestSetBit( 0) <> -1 or 22463 lowestSetBit( 1) <> 0 or 22464 lowestSetBit( 2) <> 1 or 22465 lowestSetBit(intExpr(-2)) <> 1 or 22466 lowestSetBit(intExpr(-1)) <> 0 or 22467 lowestSetBit(intExpr( 0)) <> -1 or 22468 lowestSetBit(intExpr( 1)) <> 0 or 22469 lowestSetBit(intExpr( 2)) <> 1 then [all …]
|
H A D | chk_all.sd7 | 86 \Integer lowestSetBit does work correct.\n\ 277 \The bigInteger lowestSetBit function works correct.\n\
|
/dports/lang/gcc48/gcc-4.8.5/libjava/gnu/java/math/ |
H A D | GMP.h | 77 jint lowestSetBit();
|
/dports/lang/gnat_util/gcc-6-20180516/libjava/gnu/java/math/ |
H A D | GMP.h | 77 jint lowestSetBit();
|
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/gnu/java/math/ |
H A D | GMP.h | 77 jint lowestSetBit();
|
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/gnu/java/math/ |
H A D | GMP.h | 77 jint lowestSetBit();
|
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/gnu/java/math/ |
H A D | GMP.h | 77 jint lowestSetBit();
|
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/gnu/java/math/ |
H A D | GMP.java | 420 public int lowestSetBit() in lowestSetBit() method in GMP
|
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/gnu/java/math/ |
H A D | GMP.java | 420 public int lowestSetBit() in lowestSetBit() method in GMP
|
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/gnu/java/math/ |
H A D | GMP.java | 420 public int lowestSetBit() in lowestSetBit() method in GMP
|
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/gnu/java/math/ |
H A D | GMP.java | 420 public int lowestSetBit() in lowestSetBit() method in GMP
|
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/classpath/gnu/java/math/ |
H A D | GMP.java | 420 public int lowestSetBit() in lowestSetBit() method in GMP
|
/dports/lang/gnat_util/gcc-6-20180516/libjava/java/math/ |
H A D | BigInteger.h | 184 jint lowestSetBit; variable
|
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/java/math/ |
H A D | BigInteger.h | 184 jint lowestSetBit; variable
|
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/java/math/ |
H A D | BigInteger.h | 184 jint lowestSetBit; variable
|
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/java/math/ |
H A D | BigInteger.h | 184 jint lowestSetBit; variable
|
/dports/lang/gcc48/gcc-4.8.5/libjava/java/math/ |
H A D | BigInteger.h | 184 jint lowestSetBit; variable
|
/dports/lang/seed7/seed7/lib/ |
H A D | integer.s7i | 522 * @return the number of lowest-order zero bits or -1 for lowestSetBit(0). 524 const func integer: lowestSetBit (in integer: number) is action "INT_LOWEST_SET_BIT";
|
H A D | bigint.s7i | 537 * @return the number of lowest-order zero bits or -1 for lowestSetBit(0). 539 const func integer: lowestSetBit (in bigInteger: number) is action "BIG_LOWEST_SET_…
|
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/java/math/ |
H A D | BigInteger.java | 182 private int lowestSetBit; field in BigInteger 3492 @SuppressWarnings("deprecation") int lsb = lowestSetBit - 2; 3504 lowestSetBit = lsb + 2;
|
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/java/math/ |
H A D | BigInteger.java | 182 private int lowestSetBit; field in BigInteger 3492 @SuppressWarnings("deprecation") int lsb = lowestSetBit - 2; 3504 lowestSetBit = lsb + 2;
|
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/java/math/ |
H A D | BigInteger.java | 83 private int lowestSetBit = -2; field in BigInteger 2582 return mpz.compare(ZERO.mpz) == 0 ? -1 : mpz.lowestSetBit();
|
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/java/math/ |
H A D | BigInteger.java | 83 private int lowestSetBit = -2; field in BigInteger 2582 return mpz.compare(ZERO.mpz) == 0 ? -1 : mpz.lowestSetBit();
|
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/java/math/ |
H A D | BigInteger.java | 83 private int lowestSetBit = -2; field in BigInteger 2582 return mpz.compare(ZERO.mpz) == 0 ? -1 : mpz.lowestSetBit();
|