Searched refs:ival (Results 1 - 18 of 18) sorted by relevance

/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DNameValueNode.java40 NameValueNode(String name, int ival) { argument
42 this.val = Integer.toString(ival);
/openjdk7/jdk/test/javax/xml/jaxp/PrecisionDecimalDV/
H A DXPrecisionDecimalToString.java91 private static void test(String ival, String fval, int sign, int pvalue, String expected) { argument
92 final String canonical = canonicalToStringForHashCode(ival, fval, sign, pvalue);
93 System.out.println((sign == -1 ? "-" : "") + ival +
94 ("INF".equals(ival) || "NaN".equals(ival) ? ""
/openjdk7/jdk/src/share/native/java/io/
H A DObjectOutputStream.c60 jint ival; local
92 ival = 0x7fc00000;
95 ival = (jint) u.i;
97 bytes[dstpos++] = (ival >> 24) & 0xFF;
98 bytes[dstpos++] = (ival >> 16) & 0xFF;
99 bytes[dstpos++] = (ival >> 8) & 0xFF;
100 bytes[dstpos++] = (ival >> 0) & 0xFF;
H A DObjectInputStream.c61 jint ival; local
90 ival = ((bytes[srcpos + 0] & 0xFF) << 24) +
94 u.i = (long) ival;
/openjdk7/jdk/test/com/sun/jdi/
H A DArrayRangeTest.java97 int ival = ((IntegerValue)val).value();
98 if (ival != samp.expected[index]) {
100 ".getValue(" + index + ") - wrong value=" + ival);
103 ".getValue(" + index + ") - value=" + ival);
135 int ival = ((IntegerValue)vals.get(index)).value();
136 if (ival != samp.expected[index]) {
138 " - wrong value=" + ival);
159 int ival = ((IntegerValue)vals.get(i)).value();
160 if (ival != samp.expected[index + i]) {
163 ival);
189 setValueGood(Sample samp, int index, int ival) argument
201 setValueBad(Sample samp, int index, int ival) argument
[all...]
H A DTwoThreadsTest.java167 Value ival = sf.getValue(ivar);
168 println("Got bkpt at: " + event.location() + ", i = " + ival);
/openjdk7/jdk/test/sun/net/www/
H A DHeaderTests.java127 String ival = (String)vals.next();
129 if (val == null && ival == null)
131 if (!val.equals(ival)) {
132 throw new RuntimeException ("Error " + val + "/" + ival);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DItems.java548 int ival = ((Number)value).intValue();
549 if (-1 <= ival && ival <= 5)
550 code.emitop0(iconst_0 + ival);
551 else if (Byte.MIN_VALUE <= ival && ival <= Byte.MAX_VALUE)
552 code.emitop1(bipush, ival);
553 else if (Short.MIN_VALUE <= ival && ival <= Short.MAX_VALUE)
554 code.emitop2(sipush, ival);
[all...]
H A DGen.java1825 int ival = ((Number) tree.rhs.type.constValue()).intValue();
1826 if (tree.getTag() == JCTree.MINUS_ASG) ival = -ival;
1827 ((LocalItem)l).incr(ival);
/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValueCollection.cpp45 jint ival = *((jint*) (&val)); local
46 return ival;
H A DperfData.hpp781 jlong ival, TRAPS);
803 jlong ival, TRAPS);
829 PerfData::Units u, jlong ival, TRAPS) {
830 return create_long_variable(ns, name, u, ival, CHECK_NULL);
850 PerfData::Units u, jlong ival, TRAPS) {
851 return create_long_counter(ns, name, u, ival, CHECK_NULL);
828 create_variable(CounterNS ns, const char* name, PerfData::Units u, jlong ival, TRAPS) argument
849 create_counter(CounterNS ns, const char* name, PerfData::Units u, jlong ival, TRAPS) argument
H A DperfData.cpp445 jlong ival, TRAPS) {
447 PerfLongVariable* p = new PerfLongVariable(ns, name, u, ival);
506 jlong ival, TRAPS) {
508 PerfLongCounter* p = new PerfLongCounter(ns, name, u, ival);
442 create_long_variable(CounterNS ns, const char* name, PerfData::Units u, jlong ival, TRAPS) argument
503 create_long_counter(CounterNS ns, const char* name, PerfData::Units u, jlong ival, TRAPS) argument
/openjdk7/jdk/src/share/classes/sun/awt/
H A DSunHints.java465 int ival = ((Integer)val).intValue();
466 return ival >= 100 && ival <= 250;
/openjdk7/jdk/test/com/sun/jdi/redefineMethod/
H A DRedefineTest.java186 int ival = ((IntegerValue)val).value();
187 if (ival != lvValue) {
189 "' got: '" + ival + "' -- " + errInfo);
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DFilter.java214 int ival;
228 if ((ival = hexchar2int(ch)) < 0) {
245 tbuf[j] = (byte)(ival<<4);
248 tbuf[j++] |= (byte)ival;
/openjdk7/hotspot/test/compiler/6689060/
H A DTest.java53 int ival(int i) { method in class:Test
82 p1.x = ival(3);
91 p1.x = ival(3);
93 p1.x = ival(5);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiExport.cpp1576 jint ival = value->i; local
1582 value->z = (jboolean)ival;
1587 value->b = (jbyte)ival;
1592 value->c = (jchar)ival;
1597 value->s = (jshort)ival;
H A Djvm.cpp3924 jint ival = ((dbuf->byte_at(off + 0) & 0xFF) << 24) variable
3928 o->int_field_put(field_offset, ival);
3935 jint ival = ((dbuf->byte_at(off + 0) & 0xFF) << 24) variable
3939 jfloat fval = (*int_bits_to_float_fn)(env, NULL, ival);
4054 jint ival = (*float_to_int_bits_fn)(env, NULL, fval); variable
4055 dbuf->byte_at_put(off++, (ival >> 24) & 0xFF);
4056 dbuf->byte_at_put(off++, (ival >> 16) & 0xFF);
4057 dbuf->byte_at_put(off++, (ival >> 8) & 0xFF);
4058 dbuf->byte_at_put(off++, (ival >> 0) & 0xFF);

Completed in 79 milliseconds