Searched defs:SMALLINT (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/sql/
H A DTypes.java53 * <code>SMALLINT</code>.
55 public final static int SMALLINT = 5; field in class:Types
/openjdk7/hotspot/src/share/vm/opto/
H A Dtype.cpp205 #define SMALLINT ((juint)3) // a value too insignificant to consider widening macro
265 assert( (juint)(TypeInt::CC->_hi - TypeInt::CC->_lo) <= SMALLINT, "CC is truly small");
1104 // The 'SMALLINT' covers constants and also CC and its relatives.
1106 if ((juint)(hi - lo) <= SMALLINT) w = Type::WidenMin;
1109 if ((juint)(lo - hi) <= SMALLINT) w = Type::WidenMin;
1243 if (nrange < max_juint - 1 && nrange > (orange >> 1) + (SMALLINT*2)) {
1359 // The 'SMALLINT' covers constants.
1361 if ((julong)(hi - lo) <= SMALLINT) w = Type::WidenMin;
1364 if ((julong)(lo - hi) <= SMALLINT) w = Type::WidenMin;
1502 if (nrange < max_julong - 1 && nrange > (orange >> 1) + (SMALLINT*
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp1647 #define SMALLINT 32 // libthread allocate for tsd_common is a version specific macro
1653 vm_exit_out_of_memory(SMALLINT, "thr_setspecific: out of swap space");

Completed in 61 milliseconds