diff options
author | Sven Gothel <[email protected]> | 2014-02-21 07:57:29 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-02-21 07:57:29 +0100 |
commit | bd91f0fb4c67c7effc4715600e53f38bf1b79e12 (patch) | |
tree | b14982ae5c854a8b2a6ae034572be6a6c05ae93f /src/java | |
parent | c70c730b22c847668cf475dc6f841b85297ac3ab (diff) |
Bitstream: Refine c70c730b22c847668cf475dc6f841b85297ac3ab: 'toUint32Long' -> 'toUInt32Long', add 'uint32LongtoInt'
Diffstat (limited to 'src/java')
-rw-r--r-- | src/java/com/jogamp/common/util/Bitstream.java | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/src/java/com/jogamp/common/util/Bitstream.java b/src/java/com/jogamp/common/util/Bitstream.java index 419b356..7938c1c 100644 --- a/src/java/com/jogamp/common/util/Bitstream.java +++ b/src/java/com/jogamp/common/util/Bitstream.java @@ -1167,7 +1167,7 @@ public class Bitstream<T> { * and swap bytes if !bigEndian. * <p> * In case the returned value shall be interpreted as <code>uint32_t</code> - * utilize {@link #toUint32Long(int)} or {@link #toUint32Int(int)} for + * utilize {@link #toUInt32Long(int)} or {@link #toUInt32Int(int)} for * an appropriate conversion. * </p> * @param msbFirst if true incoming stream bit order is MSB to LSB, otherwise LSB to MSB. @@ -1215,7 +1215,7 @@ public class Bitstream<T> { * and swap bytes if !bigEndian. * <p> * In case the returned value shall be interpreted as <code>uint32_t</code> - * utilize {@link #toUint32Long(int)} or {@link #toUint32Int(int)} for + * utilize {@link #toUInt32Long(int)} or {@link #toUInt32Int(int)} for * an appropriate conversion. * </p> * @param bigEndian if false, swap incoming bytes to little-endian, otherwise leave them as little-endian. @@ -1306,22 +1306,30 @@ public class Bitstream<T> { * final long l = 0xffffffffL & int32; * </pre> */ - public static final long toUint32Long(final int val) { - return 0xffffffffL & val; + public static final long toUInt32Long(final int int32) { + return 0xffffffffL & int32; } /** * Returns the reinterpreted given <code>int32_t</code> value - * as <code>uint32_t</code> if < {@link Integer#MAX_VALUE} + * as <code>uint32_t</code> if ≤ {@link Integer#MAX_VALUE} * as within an <code>int</code> storage. * Otherwise return -1. */ - public static final int toUint32Int(final int val) { - final long v = toUint32Long(val); - if( v > Integer.MAX_VALUE ) { - return -1; + public static final int toUInt32Int(final int int32) { + return uint32LongtoInt(toUInt32Long(int32)); + } + + /** + * Returns the given <code>uint32_t</code> value <code>long</code> + * value as <code>int</code> if ≤ {@link Integer#MAX_VALUE}. + * Otherwise return -1. + */ + public static final int uint32LongtoInt(final long uint32) { + if( Integer.MAX_VALUE >= uint32 ) { + return (int)uint32; } else { - return (int)v; + return -1; } } |