Searched refs:y2 (Results 1 - 20 of 20) sorted by relevance

/opensolaris-onvv-gate/usr/src/ucblib/libcurses/
H A Doverlay.c39 int y1, y2; local
55 y2 = starty - win2->_begy;
56 for (y = starty; y < endy; y++, y1++, y2++) {
61 (void) mvwaddch(win2, y2, x, *sp);
/opensolaris-onvv-gate/usr/src/lib/libshell/common/tests/
H A Dsun_solaris_compoundvario.sh222 read -C y2
230 [[ "${y2.myarray3[b].foo}" == "bar" ]] || err_exit "y2.myarray3[b].foo != bar"
232 [[ "$y2" != "" ]] || err_exit "y2 is empty"
234 (( ${#y2.myarray3[e].nested_cpv.myarray[@]} == 10 )) || err_exit "Expected 10 elements in y2.myarray3[e].nested_cpv, got ${#y2.myarray3[e].nested_cpv[@]}"
236 (( isnan(y2.myarray3[a_nan].my_nan) )) || err_exit "y2
[all...]
H A Dtypes.sh50 y2=xyz
81 unset z y r s x z2 y2 www .sh.q
/opensolaris-onvv-gate/usr/src/tools/cscope-fast/
H A Dmouse.h39 int y2; member in struct:__anon4815
H A Dmouse.c218 m.x2 = m.y2 = -1;
227 m.y2 = getcoordinate();
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dconcat.t141 $y2 = $u . $p;
145 ok(beq($y1, $y2), "perl #26905, right, .= vs = . in bytes");
147 ok(($y1 eq $y2), "perl #26905, right, .= vs = . in chars");
/opensolaris-onvv-gate/usr/src/cmd/cron/
H A Dfuncs.c64 days_btwn(int m1, int d1, int y1, int m2, int d2, int y2) argument
68 * m1/d1/y1 and m2/d2/y2.
76 if ((m1 == m2) && (d1 == d2) && (y1 == y2))
84 if (d2 > days_in_mon(m2, y2)) {
86 for (p = 1; ! isleap(y2+YEAR+p); p++)
/opensolaris-onvv-gate/usr/src/cmd/sgs/yacc/
H A DMakefile35 CSRC= common/y1.c common/y2.c common/y3.c common/y4.c
H A DMakefile.com30 COMOBJS= y1.o y2.o y3.o y4.o
/opensolaris-onvv-gate/usr/src/lib/libplot/t300/common/
H A Dsubr.c100 dist2(int x1, int y1, int x2, int y2) argument
104 v = y1 - y2;
/opensolaris-onvv-gate/usr/src/lib/libplot/t450/common/
H A Dsubr.c104 dist2(int x1, int y1, int x2, int y2) argument
108 v = y1 - y2;
/opensolaris-onvv-gate/usr/src/common/openssl/crypto/ec/
H A Dec2_smpl.c679 BIGNUM *x0, *y0, *x1, *y1, *x2, *y2, *s, *t; local
707 y2 = BN_CTX_get(ctx);
758 if (!BN_GF2m_add(y2, x1, x2)) goto err;
759 if (!group->meth->field_mul(group, y2, y2, s, ctx)) goto err;
760 if (!BN_GF2m_add(y2, y2, x2)) goto err;
761 if (!BN_GF2m_add(y2, y2, y1)) goto err;
763 if (!EC_POINT_set_affine_coordinates_GF2m(group, r, x2, y2, ct
810 BIGNUM *lh, *y2; local
[all...]
/opensolaris-onvv-gate/usr/src/lib/libplot/t300s/common/
H A Dsubr.c110 dist2(int x1, int y1, int x2, int y2) argument
114 v = y1 - y2;
/opensolaris-onvv-gate/usr/src/cmd/troff/troff.d/
H A Ddraw.c234 dist(x1, y1, x2, y2) /* integer distance from x1,y1 to x2,y2 */
239 dy = y2 - y1;
246 int x0, y0, x2, y2, r; local
251 y2 = y0 + dy2;
253 conicarc(x0, -y0, hpos, -vpos, x2, -y2, r, r);
/opensolaris-onvv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Math/
H A DComplex.pm404 my ($x2, $y2) = @{$z2->cartesian};
405 return (ref $z1)->make($x1*$x2-$y1*$y2, $x1*$y2+$y1*$x2);
459 my ($d, $x2, $y2);
461 ($x2, $y2) = @{$z1->cartesian};
462 $d = $x2*$x2 + $y2*$y2;
464 return (ref $z1)->make(($x2*$z2)/$d, -($y2*$z2)/$d);
468 ($x2, $y2) = @{$z2->cartesian};
469 $d = $x2*$x2 + $y2*
[all...]
/opensolaris-onvv-gate/usr/src/uts/intel/io/drm/
H A Dr300_cmdbuf.c98 box.y2 =
99 (box.y2 +
105 (box.y2 << R300_CLIPRECT_Y_SHIFT));
H A Di915_dma.c427 if (box.y2 <= box.y1 || box.x2 <= box.x1) {
429 box.x1, box.y1, box.x2, box.y2);
437 OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
445 OUT_RING(((box.x2 - 1) & 0xffff) | ((box.y2 - 1) << 16));
H A Dradeon_state.c448 DRM_DEBUG(" box: x1=%d y1=%d x2=%d y2=%d\n",
449 box->x1, box->y1, box->x2, box->y2);
455 OUT_RING(((box->y2 - 1) << 16) | (box->x2 - 1));
907 int h = pbox[i].y2 - y;
1061 (pbox[i].y2 >> 3) - (pbox[i].y1 >> 3);
1090 (pbox[i].y2 >> 3) - (pbox[i].y1 >> 3);
1127 (pbox[i].y2 >> 4) - (pbox[i].y1 >> 4);
1425 int h = pbox[i].y2 - y;
/opensolaris-onvv-gate/usr/src/uts/common/io/drm/
H A Ddrm.h231 unsigned short y2; member in struct:drm_clip_rect
/opensolaris-onvv-gate/usr/src/uts/common/io/iwk/
H A Diwk2.c303 int32_t x2, int32_t y2);
4660 int32_t x2, int32_t y2)
4667 (void) iwk_division((x2-x)*(y1-y2), (x2-x1), &val);
4668 return (val + y2);
4659 iwk_interpolate_value(int32_t x, int32_t x1, int32_t y1, int32_t x2, int32_t y2) argument

Completed in 232 milliseconds