Home
last modified time | relevance | path

Searched refs:xvec (Results 1 – 2 of 2) sorted by relevance

/external/jdiff/src/jdiff/
DDiffMyers.java72 private int[] xvec, yvec; /* Vectors being compared. */ field in DiffMyers
113 final int[] xv = xvec; // Still more help for the compiler. in diag()
225 if (xvec[x - k] != yvec[x - d - k]) in diag()
258 if (xvec[x + k] != yvec[x - d + k]) in diag()
290 while (xoff < xlim && yoff < ylim && xvec[xoff] == yvec[yoff]) { in compareseq()
294 while (xlim > xoff && ylim > yoff && xvec[xlim - 1] == yvec[ylim - 1]) { in compareseq()
438 xvec = filevec[0].undiscarded; in diff_2()
/external/opencv3/modules/viz/src/
Dshapes.cpp133 Vec3d xvec = normalize(new_yaxis.cross(zvec)); in WPlane() local
134 Vec3d yvec = zvec.cross(xvec); in WPlane()
137 plane.applyTransform(makeTransformToGlobal(xvec, yvec, zvec, center)); in WPlane()
162 Vec3d xvec = normalized(end_point - start_point); in WArrow() local
163 Vec3d zvec = normalized(xvec.cross(arbitrary)); in WArrow()
164 Vec3d yvec = zvec.cross(xvec); in WArrow()
166 Matx33d R = makeTransformToGlobal(xvec, yvec, zvec).rotation(); in WArrow()
215 Vec3d xvec = normalized(zvec.cross(arbitrary)); in WCircle() local
216 Vec3d yvec = zvec.cross(xvec); in WCircle()
219 circle.applyTransform(makeTransformToGlobal(xvec, yvec, zvec, center)); in WCircle()
[all …]