Searched refs:zero (Results 51 - 75 of 108) sorted by relevance

12345

/openjdk7/jdk/test/javax/management/mxbean/
H A DRandomMXBeanTest.java134 Field zero = StupidMXBean.class.getField("ZERO");
135 System.out.println("Zero field = " + zero.get(null));
/openjdk7/hotspot/src/cpu/x86/vm/
H A DstubGenerator_x86_32.cpp212 __ jcc(Assembler::zero, parameters_done);
675 __ jcc(Assembler::zero, exit); // if obj is NULL it is ok
688 __ jcc(Assembler::zero, error); // if klass is NULL it is broken
701 __ jcc(Assembler::zero, error); // if klass' klass is NULL it is broken
873 __ jccb(Assembler::zero, L_exit);
921 __ jccb(Assembler::zero, L_exit);
968 __ jcc(Assembler::zero, L_0_count);
981 __ jccb(Assembler::zero, L_skip_align1);
990 __ jccb(Assembler::zero, L_skip_align2);
1009 __ jccb(Assembler::zero, L_copy_64_byte
[all...]
H A DtemplateTable_x86_32.cpp111 return Assembler::zero;
222 // the put_code written to the constant pool cache is zero.
231 __ jcc(Assembler::zero, L_patch_done); // don't patch
977 __ jcc(Assembler::zero, is_null);
1262 __ jump_cc(Assembler::zero,
1276 __ jump_cc(Assembler::zero,
1637 __ jccb(Assembler::zero, no_mdo);
1642 rax, false, Assembler::zero, &backedge_counter_overflow);
1648 rax, false, Assembler::zero, &backedge_counter_overflow); member in class:Assembler
1681 __ jcc(Assembler::zero, backedge_counter_overflo
[all...]
H A DtemplateTable_x86_64.cpp123 return Assembler::zero;
228 // the put_code written to the constant pool cache is zero.
237 __ jcc(Assembler::zero, L_patch_done); // don't patch
1005 __ jcc(Assembler::zero, is_null);
1265 __ jump_cc(Assembler::zero,
1279 __ jump_cc(Assembler::zero,
1666 __ jccb(Assembler::zero, no_mdo);
1671 rax, false, Assembler::zero, &backedge_counter_overflow);
1677 rax, false, Assembler::zero, &backedge_counter_overflow); member in class:Assembler
1711 __ jcc(Assembler::zero, backedge_counter_overflo
[all...]
H A DstubGenerator_x86_64.cpp321 __ jcc(Assembler::zero, parameters_done);
1018 __ jcc(Assembler::zero, exit); // if obj is NULL it is OK
1033 __ jcc(Assembler::zero, error); // if klass is NULL it is broken
1045 __ jcc(Assembler::zero, error); // if klass' klass is NULL it is broken
1467 // c_rarg2 - element count, treated as ssize_t, can be zero
1492 // End pointers are inclusive, and if count is not zero they point
1527 __ jccb(Assembler::zero, L_copy_2_bytes);
1537 __ jccb(Assembler::zero, L_copy_byte);
1547 __ jccb(Assembler::zero, L_exit);
1573 // c_rarg2 - element count, treated as ssize_t, can be zero
[all...]
H A DcppInterpreter_x86.cpp509 __ jcc(Assembler::zero, not_synced);
519 __ jcc(Assembler::zero, done);
696 // verify that thread stack base is non-zero
699 __ stop("stack base is zero");
701 // verify that thread stack size is non-zero
704 __ stop("stack size is zero");
773 __ jcc(Assembler::zero, done);
825 __ jcc(Assembler::zero, slow_path);
994 // for natives the size of locals is zero
1057 __ jcc(Assembler::zero,
[all...]
H A DmethodHandles_x86.cpp80 __ jcc(Assembler::zero, L_bad);
139 __ jccb(Assembler::zero, run_compiled_code);
/openjdk7/jdk/src/share/classes/java/text/
H A DDecimalFormat.java189 * <td>Digit, zero shows as absent
285 * the significant digits count to zero. The number of significant digits
300 * characters starting with the localized zero digit defined in the
317 * <p>Negative zero (<code>"-0"</code>) parses to
549 * the value -0.0. This is a double which has a zero mantissa (and
551 * a zero with a positive sign bit, and this distinction is important
871 // // zeros between the decimal and the first non-zero digit, for
875 // // the DigitList representation to zero in this situation.
882 char zero = symbols.getZeroDigit();
883 int zeroDelta = zero
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Daddnode.cpp55 const Type *zero = add_id(); // The additive identity local
56 if( phase->type( in(1) )->higher_equal( zero ) ) return in(2);
57 if( phase->type( in(2) )->higher_equal( zero ) ) return in(1);
229 const Type *zero = add_id(); // The additive identity local
230 if( t1->higher_equal( zero ) ) return t2;
231 if( t2->higher_equal( zero ) ) return t1;
305 // (x + (y << z)) does not cross zero.
491 // x ADD 0 should return x unless 'x' is a -zero
493 // const Type *zero = add_id(); // The additive identity
497 // if( t1->higher_equal( zero ) ) retur
[all...]
H A DloopTransform.cpp225 Node *zero = phase->_igvn.intcon(0); local
226 phase->set_ctrl(zero, phase->C->root());
227 n_inv1 = new (phase->C) SubINode(zero, inv1);
940 // Step A2: Build a zero-trip guard for the post-loop. After leaving the
943 // the exit value (via unrolling) so we cannot constant-fold away the zero
1016 // Step B2: Build a zero-trip guard for the main-loop. After leaving the
1018 // zero-trip guard will become the minimum-trip guard when we unroll
1175 // Search for zero-trip guard.
1185 // Occasionally it's possible for a zero-trip guard Opaque1 node to be
1189 return; // Cannot find zero
1678 Node *zero = _igvn.intcon(0); local
1709 Node *zero = _igvn.intcon(0); local
1798 Node *zero = _igvn.intcon(0); local
[all...]
H A DloopPredicate.cpp749 ConNode* zero = _igvn.intcon(0); local
750 set_ctrl(zero, C->root());
835 Node* offset = zero;
855 if (offset && offset != zero) {
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DtemplateInterpreter_sparc.cpp309 Assembler::zero, overflow);
320 Assembler::zero, overflow);
371 __ br( Assembler::zero, true, Assembler::pt, done);
383 __ breakpoint_trap(Assembler::zero, Assembler::ptr_cc);
407 // get the stack base, and in debug, verify it is non-zero
412 __ stop("stack base is zero in generate_stack_overflow_check");
416 // get the stack size, and in debug, verify it is non-zero
422 __ stop("stack size is zero in generate_stack_overflow_check");
851 __ br(Assembler::zero, false, Assembler::pt, L);
912 __ br( Assembler::zero, fals
[all...]
H A DcppInterpreter_sparc.cpp478 __ brx(Assembler::zero, false, Assembler::pn, slow_path);
618 __ br(Assembler::zero, false, Assembler::pt, L);
685 __ br( Assembler::zero, false, Assembler::pt, ok);
765 __ br( Assembler::zero, false, Assembler::pt, not_static);
1177 __ br( Assembler::zero, false, Assembler::pt, done);
1182 __ br( Assembler::zero, true, Assembler::pt, got_obj);
1194 __ breakpoint_trap(Assembler::zero, Assembler::ptr_cc);
1227 // Now zero locals
1417 // now zero the slot so we can find it.
1711 __ br(Assembler::zero, fals
[all...]
H A Dinterpreter_sparc.cpp175 __ br(Assembler::zero, false, Assembler::pt, NonFloatArg);
227 // and the second is only used when the first is true. We pass zero for both.
H A DtemplateTable_sparc.cpp146 return Assembler::zero;
177 // the put_code written to the constant pool cache is zero.
262 static float zero = 0.0, one = 1.0, two = 2.0; local
266 case 0: p = &zero; break;
278 static double zero = 0.0, one = 1.0; local
282 case 0: p = &zero; break;
401 __ brx(Assembler::zero, true, Assembler::pt, L_done);
1219 // check for zero
1236 // check for zero
2044 __ br(Assembler::zero, fals
[all...]
H A Dassembler_sparc.cpp971 // (Note: flags should always be zero before we get here so doesn't need to be set.)
986 br(Assembler::zero, false, Assembler::pt, FlagsOk);
1035 breakpoint_trap(Assembler::zero, Assembler::ptr_cc);
1040 // Always return last_Java_pc to zero
1452 Assembler::sethi(lo, d); // hardware version zero-extends to upper 32
1457 Assembler::sethi(~lo, d); // hardware version zero-extends to upper 32
1464 Assembler::sethi(hi, d); // hardware version zero-extends to upper 32
2120 /*case zero: */
2133 // compares (32 bit) register with zero and branches. NOT FOR USE WITH 64-bit POINTERS
2139 // Compares a pointer register with zero an
[all...]
H A Dinterp_masm_sparc.cpp189 br(zero, false, pt, L);
706 br(Assembler::zero, true, Assembler::pn, aligned);
993 br(zero, false, pt, unlocked);
1199 assert(mark_addr.disp() == 0, "cas must take a zero displacement");
1229 brx(Assembler::zero, true, Assembler::pt, done);
1280 assert(mark_addr.disp() == 0, "cas must take a zero displacement");
1680 brx(Assembler::zero, false, Assembler::pn, found_null);
1694 brx(Assembler::zero, false, Assembler::pn, found_null);
1823 // *Decrement* the counter. We expect to see zero or small negatives.
2303 SkipIfEqual skip_if(this, temp_reg, &DTraceMethodProbes, zero);
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalLookAndFeel.java458 Integer zero = Integer.valueOf(0);
901 "ProgressBar.cellSpacing", zero,
1263 "Menu.menuPopupOffsetX", zero,
1264 "Menu.menuPopupOffsetY", zero,
1421 "Tree.rowHeight", zero,
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKLookAndFeel.java339 Integer zero = Integer.valueOf(0);
342 new Object[] {zero, zero, zero, zero});
/openjdk7/hotspot/src/share/vm/memory/
H A Dfilemap.cpp272 char zero = 0; local
273 write_bytes(&zero, 1);
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageAffineEdge.c158 *dp = zero; \
593 mlib_s32 zero = 0; local
596 zero = mlib_ImageGetLutOffset(colormap);
615 mlib_d64 zero = 0; local
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Frame.cpp1213 POINT zero; local
1214 zero.x = 0;
1215 zero.y = 0;
1216 ::ClientToScreen(parent, &zero);
1217 ::OffsetRect(&rect, -zero.x, -zero.y);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DFloatingDecimal.java97 // the strategy is to shift until we get a non-zero sign bit
294 * lvalue > 0L (not zero, nor negative).
443 digits = zero;
503 digits = zero;
710 * was too high, our first quotient will be zero. In this
721 // oops. Usually ignore leading zero.
763 * was too high, our first quotient will be zero. In this
774 // oops. Usually ignore leading zero.
828 * was too high, our first quotient will be zero. In this
838 // oops. Usually ignore leading zero
1860 private static final char zero[] = { '0', '0', '0', '0', '0', '0', '0', '0' }; field in class:FloatingDecimal
[all...]
H A DFormattedFloatingDecimal.java105 // the strategy is to shift until we get a non-zero sign bit
302 * lvalue > 0L (not zero, nor negative).
513 digits = zero;
580 digits = zero;
787 * was too high, our first quotient will be zero. In this
798 // oops. Usually ignore leading zero.
840 * was too high, our first quotient will be zero. In this
851 // oops. Usually ignore leading zero.
905 * was too high, our first quotient will be zero. In this
915 // oops. Usually ignore leading zero
1766 private static final char zero[] = { '0', '0', '0', '0', '0', '0', '0', '0' }; field in class:FormattedFloatingDecimal
[all...]
/openjdk7/jdk/make/common/
H A DDefs-linux.gmk327 Z_ORIGIN_FLAG/zero = -Xlinker -z -Xlinker origin

Completed in 1620 milliseconds

12345