Searched defs:canRepresentUnsigned (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dcoding.h80 bool canRepresentUnsigned(int x) { return (x >= umin && x <= umax); } function in struct:coding
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DCoding.java422 return canRepresentUnsigned(x);
430 * use canRepresentUnsigned.
441 public boolean canRepresentUnsigned(int x) { method in class:Coding
551 if (value == (int)value && canRepresentUnsigned((int)value))
558 assert(canRepresentUnsigned((int)value));
740 return canRepresentUnsigned(maxValue)
741 && canRepresentUnsigned(minValue);
779 if (!canRepresentUnsigned(value))

Completed in 41 milliseconds