Searched defs:ival (Results 1 - 11 of 11) 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/hotspot/src/share/vm/runtime/
H A DstackValueCollection.cpp45 jint ival = *((jint*) (&val)); local
46 return ival;
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
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
/openjdk7/jdk/src/share/native/java/io/
H A DObjectInputStream.c61 jint ival; local
90 ival = ((bytes[srcpos + 0] & 0xFF) << 24) +
94 u.i = (long) ival;
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;
/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...]
/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 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);
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;

Completed in 68 milliseconds