Searched refs:geq (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/test/javax/management/query/
H A DQueryExpStringTest.java63 geq = Query.geq(intValue, floatValue), field in class:QueryExpStringTest
114 geq, "(12345678) >= (2.5)",
266 return Query.geq(lhs, rhs);
/openjdk7/jdk/src/share/classes/javax/management/
H A DQuery.java72 * A code representing the {@link Query#geq} query. This is chiefly
186 public static QueryExp geq(ValueExp v1, ValueExp v2) { method in class:Query
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp42 case leq: return geq;
44 case geq: return leq;
55 case lss: return geq;
58 case geq: return lss;
482 case If::geq: return x >= y ? cond_true : cond_false;
495 case If::geq: return x >= y ? cond_true : cond_false;
H A Dc1_Canonicalizer.cpp619 case If::geq: return x >= y;
649 case If::geq: sux = x->sux_for(true); break;
692 else if (eql_sux == gtr_sux) { cond = If::geq; tsux = eql_sux; fsux = lss_sux; }
H A Dc1_InstructionPrinter.cpp59 case If::geq: return ">=";
H A Dc1_LIRGenerator.hpp413 case If::geq: l = lir_cond_greaterEqual; break;
H A Dc1_LIRGenerator.cpp720 case If::geq: // x >= y ? y : x
814 if ((ifop->cond() == If::gtr || ifop->cond() == If::geq) &&
H A Dc1_Instruction.hpp354 eql, neq, lss, leq, gtr, geq enumerator in enum:Instruction::Condition
H A Dc1_GraphBuilder.cpp2646 case Bytecodes::_ifge : if_zero(intType , If::geq); break;
2652 case Bytecodes::_if_icmpge : if_same(intType , If::geq); break;

Completed in 73 milliseconds