Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for doubleToLongBits (2.1 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: Sat Dec 20 13:44:44 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: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 17.4K bytes
    - Viewed (0)
Back to top