- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for dec_doublele (0.15 sec)
-
src/main/java/jcifs/util/Encdec.java
*/ public static int enc_doublele ( double d, byte[] dst, int di ) { return enc_uint64le(Double.doubleToLongBits(d), dst, di); } public static int enc_doublebe ( double d, byte[] dst, int di ) { return enc_uint64be(Double.doubleToLongBits(d), dst, di); } public static double dec_doublele ( byte[] src, int si ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 11K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Encdec.java
*/ public static int enc_doublele( double d, byte[] dst, int di ) { return enc_uint64le( Double.doubleToLongBits( d ), dst, di ); } public static int enc_doublebe( double d, byte[] dst, int di ) { return enc_uint64be( Double.doubleToLongBits( d ), dst, di ); } public static double dec_doublele( byte[] src, int si ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 10.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java
} public final double readDouble() throws SmbException { if((read( tmp, 0, 8 )) < 0 ) { throw new SmbException( "EOF" ); } return Encdec.dec_doublebe( tmp, 0 ); } public final String readLine() throws SmbException { StringBuffer input = new StringBuffer(); int c = -1; boolean eol = false; while (!eol) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 10.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbRandomAccessFile.java
@Override public final double readDouble () throws SmbException { if ( ( read(this.tmp, 0, 8) ) < 0 ) { throw new SmbEndOfFileException(); } return Encdec.dec_doublebe(this.tmp, 0); } @Override public final String readLine () throws SmbException { StringBuffer input = new StringBuffer(); int c = -1; boolean eol = false;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 08 12:01:33 UTC 2020 - 18.5K bytes - Viewed (0)