- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for floatToIntBits (0.17 sec)
-
src/main/java/jcifs/util/Encdec.java
* Encode floats */ public static int enc_floatle ( float f, byte[] dst, int di ) { return enc_uint32le(Float.floatToIntBits(f), dst, di); } public static int enc_floatbe ( float f, byte[] dst, int di ) { return enc_uint32be(Float.floatToIntBits(f), dst, di); } /* * Decode floating point numbers */
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
/* Encode floats */ public static int enc_floatle( float f, byte[] dst, int di ) { return enc_uint32le( Float.floatToIntBits( f ), dst, di ); } public static int enc_floatbe( float f, byte[] dst, int di ) { return enc_uint32be( Float.floatToIntBits( f ), dst, di ); } /* Decode floating point numbers */ public static float dec_floatle( 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)