Searched refs:neq (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/test/java/nio/file/attribute/FileTime/
H A DBasic.java46 neq(now, MILLISECONDS, 0, MILLISECONDS);
47 neq(now, MILLISECONDS, 0, MICROSECONDS);
140 static void neq(long v1, TimeUnit u1, long v2, TimeUnit u2) { method in class:Basic
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp40 case neq: return neq;
53 case eql: return neq;
54 case neq: return eql;
305 return cond() == eql || cond() == neq;
478 case If::neq: return x != y ? cond_true : cond_false;
491 case If::neq: return x != y ? cond_true : cond_false;
506 case If::neq: return xvalue != yvalue ? cond_true : cond_false;
H A Dc1_Canonicalizer.cpp615 case If::neq: return x != y;
645 case If::neq: sux = x->sux_for(false); break;
691 else if (lss_sux == gtr_sux) { cond = If::neq; tsux = lss_sux; fsux = eql_sux; }
735 assert(x->cond() == Instruction::neq, "only other valid case");
H A Dc1_InstructionPrinter.cpp55 case If::neq: return "!=";
H A Dc1_LIRGenerator.hpp410 case If::neq: l = lir_cond_notEqual; break;
H A Dc1_GraphBuilder.cpp2644 case Bytecodes::_ifne : if_zero(intType , If::neq); break;
2650 case Bytecodes::_if_icmpne : if_same(intType , If::neq); break;
2656 case Bytecodes::_if_acmpne : if_same(objectType, If::neq); break;
2689 case Bytecodes::_ifnonnull : if_null(objectType, If::neq); break;
H A Dc1_Instruction.hpp354 eql, neq, lss, leq, gtr, geq enumerator in enum:Instruction::Condition
H A Dc1_LIRGenerator.cpp712 case If::neq: return NULL;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp1070 // for longs, only conditions "eql", "neq", "lss", "geq" are valid;
1091 (cond == If::eql || cond == If::neq)) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRGenerator_x86.cpp1213 // for longs, only conditions "eql", "neq", "lss", "geq" are valid;
1223 if (tag == longTag && yin->is_constant() && yin->get_jlong_constant() == 0 && (cond == If::eql || cond == If::neq)) {

Completed in 63 milliseconds