- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for dec_doublebe (0.06 seconds)
-
src/main/java/jcifs/util/Encdec.java
* @return the decoded double value */ public static double dec_doublebe(final byte[] src, final int si) { return Double.longBitsToDouble(dec_uint64be(src, si)); } /* * Encode times */ /** * Encodes a Date value according to the specified time encoding type. * * @param date the Date to encode * @param dst the destination byte arrayCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 17.4K bytes - Click Count (0) -
src/main/java/jcifs/smb1/util/Encdec.java
* @return the decoded double value */ public static double dec_doublebe(final byte[] src, final int si) { return Double.longBitsToDouble(dec_uint64be(src, si)); } /* Encode times */ /** * Encodes a Date value according to the specified time encoding type. * * @param date the Date to encode * @param dst the destination byte arrayCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 18.5K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbRandomAccessFile.java
} @Override public final double readDouble() throws SmbException { if (read(tmp, 0, 8) < 0) { throw new SmbException("EOF"); } return Encdec.dec_doublebe(tmp, 0); } @Override public final String readLine() throws SmbException { final StringBuilder input = new StringBuilder(); int c = -1; boolean eol = false;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 14.1K bytes - Click Count (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 { final StringBuilder input = new StringBuilder(); int c = -1; boolean eol = false;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 18.8K bytes - Click Count (0)