Searched refs:v1 (Results 51 - 75 of 94) sorted by relevance

1234

/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DTableSorter.java170 Object v1 = data.getValueAt(row1, column);
171 String s1 = v1.toString();
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultRowSorter.java941 Object v1, v2;
950 // v1 != null && v2 != null
952 v1 = getModelWrapper().getStringValueAt(model1, column);
955 v1 = getModelWrapper().getValueAt(model1, column);
959 if (v1 == null) {
968 result = sortComparators[counter].compare(v1, v2);
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DLogParser.java158 long v1 = Long.decode(s1).longValue() & 0xffffffffL;
160 if (!l.equals("0x" + Long.toHexString(v1 + v2))) {
164 System.out.println(v1);
166 System.out.println(Long.toHexString(v1 + v2));
169 return v1 + v2;
/openjdk7/jdk/test/javax/swing/JFormattedTextField/
H A DTest6462562.java133 Object v1 = getValue();
134 if (! v1.equals(expectedResult)) {
137 System.err.printf(" Result: '%s', expected: '%s'\n", v1, expectedResult);
/openjdk7/jdk/src/share/classes/java/util/
H A DWeakHashMap.java816 V v1 = getValue();
818 if (v1 == v2 || (v1 != null && v1.equals(v2)))
H A DHashMap.java842 Object v1 = getValue();
844 if (v1 == v2 || (v1 != null && v1.equals(v2)))
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageLookUp_Bit.c453 mlib_u32 l0, h0, v0, l1, h1, v1, l2, h2, v2; local
491 v1 = (l1 &~ mask1) | (h1 & mask1);
495 ((mlib_u32*)d_array01)[2*i + 1] = v1;
496 ((mlib_u32*)d_array12)[2*i ] = v1;
/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A De_lgamma_r.c142 v1 = 2.45597793713041134822e+00, /* 0x4003A5D7, 0xC2BD619C */ variable
284 p2 = one+y*(v1+y*(v2+y*(v3+y*(v4+y*v5))));
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DOldHierarchicalLayoutManager.java944 private boolean intersect(int v1, int w1, int v2, int w2) { argument
945 if (v1 >= v2 && v1 < v2 + w2) {
948 if (v1 + w1 > v2 && v1 + w1 < v2 + w2) {
951 if (v1 < v2 && v1 + w1 > v2) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.cpp1469 intptr_t* v1 = _values.at(max_index).location; local
1475 while (!thread->is_in_stack((address)v1)) {
1476 v1 = _values.at(--max_index).location;
1482 while (!thread->on_local_stack((address)v1)) {
1483 v1 = _values.at(--max_index).location;
1486 intptr_t* min = MIN2(v0, v1);
1487 intptr_t* max = MAX2(v0, v1);
/openjdk7/hotspot/src/share/vm/opto/
H A Dstringopts.cpp152 Node* v1 = cmp->in(1); local
158 value->in(true_path)->in(1) == v1 &&
159 v1->is_Proj() && is_SB_toString(v1->in(0))) {
160 return v1;
775 Node* v1 = cmp->in(1); local
782 v1->is_Proj() && ctrl_path.member(v1->in(0))) {
816 v1->dump();
H A Ddivnode.cpp270 // int u1, v1, w1, w2, t;
273 // v0 = v & 0xFFFF; v1 = v >> 16;
278 // w1 = u0*v1 + w1;
279 // return u1*v1 + w2 + (w1 >> 16);
296 // v0 = v & 0xFFFFFFFF; v1 = v >> 32;
298 Node* v1 = phase->longcon(magic_const >> (N / 2)); local
316 // w1 = u0*v1 + w1;
317 Node* u0v1 = phase->transform(new (phase->C) MulLNode(u0, v1));
320 // return u1*v1 + w2 + (w1 >> 32);
321 Node* u1v1 = phase->transform(new (phase->C) MulLNode(u1, v1));
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DXRBackendNative.c191 int v1 = 0, v2 = 0, v3 = 0; local
194 numProcessed = sscanf(version, "%d.%d.%d", &v1, &v2, &v3);
200 if (REQUIRED_XRENDER_VER1 == v1 &&
209 v1, v2, v3);
215 "is detected as %d.%d%d\n", v1, v2, v3);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DPlotter.java598 long v1 = -1;
608 if (x1 >= 0 && v1 >= vMin && v1 <= vMax) {
609 int y1 = (int)(h * (v1-vMin) / (vMax-vMin));
629 v1 = v2;
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DBlitLoops.cpp58 #define GETMIN(v1, v2) (((v1) > (t=(v2))) && ((v1) = t))
59 #define GETMAX(v1, v2) (((v1) < (t=(v2))) && ((v1) = t))
H A DD3DVertexCacher.cpp646 float u1, float v1, float u2, float v2)
660 u1, v1, u2, v1, u1, v2,
663 u1, v2, u2, v1, u2, v2,
645 DrawTexture(float x1, float y1, float x2, float y2, float u1, float v1, float u2, float v2) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DAbstractDateTimeDV.java78 DateTimeData v1 = (DateTimeData) value1;
83 if ((v1.timezoneHr == v2.timezoneHr) && (v1.timezoneMin == v2.timezoneMin)) {
84 return v1.equals(v2);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DNodeSet.java1004 * @param v1 First node to add to vector
1007 public final void pushPair(Node v1, Node v2) argument
1029 m_map[m_firstFree] = v1;
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixPath.java721 byte v1[] = path;
726 int c1 = v1[k] & 0xff;
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DIBM970_OLD.java1630 private char composeVV(char v1, char v2) { argument
/openjdk7/hotspot/test/compiler/8005956/
H A DPolynomialRoot.java678 final double v1=Math.signum(r1)*Math.pow(Math.abs(r1),1.0/3),
680 sv=v1+v2;
686 im_root[1]=(v1-v2)*(SQRT3*0.5);
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DTransformHelper.c642 #define BL_INTERP_V1_to_V2_by_F(v1, v2, f) \
643 (((v1)<<8) + ((v2)-(v1))*(f))
/openjdk7/jdk/test/javax/management/mxbean/
H A DMXBeanTest.java627 Collection v1 = cd1.values();
629 if (v1.size() != v2.size())
631 for (Iterator i1 = v1.iterator(), i2 = v2.iterator();
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DCurve.java1200 public boolean fairlyClose(double v1, double v2) { argument
1201 return (Math.abs(v1 - v2) <
1202 Math.max(Math.abs(v1), Math.abs(v2)) * 1E-10);
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpng.c1781 png_64bit_product (long v1, long v2, unsigned long *hi_product, argument
1787 a = (v1 >> 16) & 0xffff;
1788 b = v1 & 0xffff;

Completed in 138 milliseconds

1234