- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for dec_doublele (0.05 sec)
-
src/main/java/jcifs/util/Encdec.java
* * @param src the source byte array * @param si the starting index in the source array * @return the decoded double value */ public static double dec_doublele(final byte[] src, final int si) { return Double.longBitsToDouble(dec_uint64le(src, si)); } /** * Decodes a double value from 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) -
src/main/java/jcifs/smb1/util/Encdec.java
* * @param src the source byte array * @param si the starting index in the source array * @return the decoded double value */ public static double dec_doublele(final byte[] src, final int si) { return Double.longBitsToDouble(dec_uint64le(src, si)); } /** * Decodes a double value from 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) -
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;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.1K 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 { final StringBuilder input = new StringBuilder(); int c = -1; boolean eol = false;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 18.8K bytes - Viewed (0)