Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for enc_doublebe (0.05 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

            Encdec.enc_floatbe(v, tmp, 0);
            write(tmp, 0, 4);
        }
    
        @Override
        public final void writeDouble(final double v) throws SmbException {
            Encdec.enc_doublebe(v, tmp, 0);
            write(tmp, 0, 8);
        }
    
        @Override
        public final void writeBytes(final String s) throws SmbException {
            final byte[] b = s.getBytes();
            write(b, 0, b.length);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/Encdec.java

         * @param dst the destination byte array
         * @param di the starting index in the destination array
         * @return the number of bytes written (8)
         */
        public static int enc_doublebe(final double d, final byte[] dst, final int di) {
            return enc_uint64be(Double.doubleToLongBits(d), dst, di);
        }
    
        /**
         * Decodes a double value from little-endian byte order.
         *
    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. src/main/java/jcifs/smb1/util/Encdec.java

         * @param dst the destination byte array
         * @param di the starting index in the destination array
         * @return the number of bytes written (8)
         */
        public static int enc_doublebe(final double d, final byte[] dst, final int di) {
            return enc_uint64be(Double.doubleToLongBits(d), dst, di);
        }
    
        /**
         * Decodes a double value from little-endian byte order.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbRandomAccessFile.java

            Encdec.enc_floatbe(v, this.tmp, 0);
            write(this.tmp, 0, 4);
        }
    
        @Override
        public final void writeDouble(final double v) throws SmbException {
            Encdec.enc_doublebe(v, this.tmp, 0);
            write(this.tmp, 0, 8);
        }
    
        @Override
        public final void writeBytes(final String s) throws SmbException {
            final byte[] b = s.getBytes();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 18.8K bytes
    - Viewed (0)
Back to top