Searched refs:end_pos (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPathGraphics.java1603 Point2D.Float end_pos = new Point2D.Float(xEnd, yEnd);
1604 deviceTransform.transform(end_pos, end_pos);
1610 if ((end_pos.getX() == begin_pos.getX())
1611 && (end_pos.getY() == begin_pos.getY())) {
1627 wPrinterJob.lineTo((float)end_pos.getX(),
1628 (float)end_pos.getY());
1648 wPrinterJob.lineTo((float)end_pos.getX(),
1649 (float)end_pos.getY());
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_InstructionPrinter.hpp43 end_pos = 60 enumerator in enum:InstructionPrinter::LayoutConstants
H A Dc1_InstructionPrinter.cpp324 fill_to(end_pos , filler);
H A Dc1_LinearScan.cpp5693 int end_pos = cur->to();
5694 if (end_pos > allocator()->max_lir_op_id() || (begin_pos & 1) != 0 || (end_pos & 1) != 0) {
5699 if (!is_move(allocator()->lir_op_with_id(begin_pos), register_hint, cur) || !is_move(allocator()->lir_op_with_id(end_pos), cur, register_hint)) {
5705 Interval* end_hint = register_hint->split_child_at_op_id(end_pos, LIR_OpVisitState::outputMode);
5706 if (begin_hint == end_hint || begin_hint->to() != begin_pos || end_hint->from() != end_pos) {
5714 assert(end_hint->first_usage(mustHaveRegister) == end_pos, "must have use position at begin of interval because of move");
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DstubGenerator_sparc.cpp2913 const Register end_pos = temp2; // scratch local
2916 __ add(length, src_pos, end_pos); // src_pos + length
2918 __ cmp(end_pos, array_length);
2922 __ delayed()->add(length, dst_pos, end_pos); // dst_pos + length
2924 __ cmp(end_pos, array_length);

Completed in 65 milliseconds