Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for enc_floatle (0.52 sec)

  1. 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 (4)
         */
        public static int enc_floatle(final float f, final byte[] dst, final int di) {
            return enc_uint32le(Float.floatToIntBits(f), dst, di);
        }
    
        /**
         * Encodes a float value in big-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)
  2. 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 (4)
         */
        public static int enc_floatle(final float f, final byte[] dst, final int di) {
            return enc_uint32le(Float.floatToIntBits(f), dst, di);
        }
    
        /**
         * Encodes a float value in big-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)
  3. src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java

            Encdec.enc_uint64be(v, tmp, 0);
            write(tmp, 0, 8);
        }
    
        @Override
        public final void writeFloat(final float v) throws SmbException {
            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);
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbRandomAccessFile.java

            Encdec.enc_uint64be(v, this.tmp, 0);
            write(this.tmp, 0, 8);
        }
    
        @Override
        public final void writeFloat(final float v) throws SmbException {
            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);
    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