Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for doubleToLongBits (0.06 sec)

  1. src/main/java/jcifs/smb1/util/Encdec.java

         * @return the number of bytes written (8)
         */
        public static int enc_doublele(final double d, final byte[] dst, final int di) {
            return enc_uint64le(Double.doubleToLongBits(d), dst, di);
        }
    
        /**
         * Encodes a double value in big-endian byte order.
         *
         * @param d the double value to encode
         * @param dst the destination byte array
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/Encdec.java

         * @return the number of bytes written (8)
         */
        public static int enc_doublele(final double d, final byte[] dst, final int di) {
            return enc_uint64le(Double.doubleToLongBits(d), dst, di);
        }
    
        /**
         * Encodes a double value in big-endian byte order.
         *
         * @param d the double value to encode
         * @param dst the destination byte array
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/MathTesting.java

          }
        }
        for (int i = Double.MIN_EXPONENT; i <= Double.MAX_EXPONENT; i++) {
          for (int direction : new int[] {1, -1}) {
            double d = Double.longBitsToDouble(Double.doubleToLongBits(Math.scalb(1.0, i)) + direction);
            // Math.nextUp/nextDown
            if (d != Math.rint(d)) {
              fractionalBuilder.add(d);
            }
          }
        }
        for (double d :
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 11.3K bytes
    - Viewed (0)
Back to top