Searched defs:vx (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Ddomgraph.cpp110 Tarjan *vx = &tarjan[b->_pre_order]; local
111 Tarjan *u = vx->EVAL();
126 for( Tarjan *vx = w->_parent->_bucket; vx; vx = vx->_bucket ) {
127 Tarjan *u = vx->EVAL();
128 vx->_dom = (u->_semi < vx->_semi) ? u : w->_parent;
438 NTarjan *vx
[all...]
/openjdk7/jdk/test/java/lang/invoke/
H A DInvokeGenericTest.java271 static Integer[] boxAll(int... vx) { argument
272 Integer[] res = new Integer[vx.length];
274 res[i] = vx[i];
H A DMethodHandlesTest.java269 static Integer[] boxAll(int... vx) { argument
270 Integer[] res = new Integer[vx.length];
272 res[i] = vx[i];
1417 static Object id(Object... vx) { return called("id", vx); } argument
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Canonicalizer.cpp368 jlong vx = x->x()->type()->as_LongConstant()->value(); local
370 if (vx == vy)
372 else if (vx < vy)
380 float vx = x->x()->type()->as_FloatConstant()->value(); local
382 if (g_isnan(vx) || g_isnan(vy))
384 else if (vx == vy)
386 else if (vx < vy)
394 double vx = x->x()->type()->as_DoubleConstant()->value(); local
396 if (g_isnan(vx) || g_isnan(vy))
398 else if (vx
[all...]

Completed in 48 milliseconds