Searched defs:dy (Results 1 - 25 of 30) sorted by relevance

12

/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dpecho_wc.c49 int code, dy, dx; local
56 dy = pad->_smaxy - pad->_sminy;
61 || pad->_refy + dy < pad->_cury || pad->_refx + dx < pad->_curx)
H A Dmvwin.c57 int i, dx, dy; local
81 dy = by - parent->_begy;
85 w->_line[i] = &parent->_line[dy++][dx];
H A Dprefresh.c83 int row, dy, dx; local
141 dy = pad->_cury - pminr + pad->_begy;
144 ns->_cury = dy < 0 ? 0 : ns->_maxy <= dy ? ns->_maxy-1 : dy;
H A Dnewwin.c67 int x, y, dx, dy; local
161 dy = begy - parent->_begy;
167 w->_line[y] = &parent->_line[dy++][dx];
H A Dprivate.h140 int dy; /* Distance from screen top/bottom. */ member in struct:__anon4211::__anon4212
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dpecho_wc.c54 int code, dy, dx; local
58 dy = pad->_smaxy - pad->_sminy;
64 pad->_refy + dy < pad->_cury || pad->_refx + dx < pad->_curx)
H A Dmvwin.c58 int i, dx, dy; local
79 dy = by - parent->_begy;
83 w->_line[i] = &parent->_line[dy++][dx];
H A Dprefresh.c79 int row, dy, dx; local
132 dy = pad->_cury - pminr + pad->_begy;
135 ns->_cury = (dy < 0) ? 0 :
136 ((ns->_maxy <= dy) ? ns->_maxy - 1 : (short) dy);
H A Dnewwin.c73 int x, y, dx, dy; local
166 dy = begy - parent->_begy;
172 w->_line[y] = &parent->_line[dy++][dx];
H A Dprivate.h125 int dy; /* Distance from screen top/bottom. */ member in struct:__anon4224::__anon4225
/illumos-gate/usr/src/lib/libm/common/R/
H A Dhypotf.c36 double dx, dy; local
60 dy = (double) y;
61 w = (float) sqrt(dx * dx + dy * dy);
H A Dpowf.c232 double dx, dy, dz, ds; local
249 dy = invln2 * (TBL[i] + ds * (A0 + dz * A1));
251 dz = (double)fy * dy;
253 dz = (double)fy * (dy + (double)n);
273 dy = ln2 * (dz - d1_32 * (double)n);
274 dx = S[i] * (done - (dtwo * dy) / (dy * (done - dy * t1) - t0));
/illumos-gate/usr/src/ucblib/libcurses/
H A Dmvwin.c34 int dy, dx; local
38 dy = by - win->_begy;
44 win->_begy += dy;
50 if (by < orig->_begy || win->_maxy + dy > orig->_maxy)
/illumos-gate/usr/src/lib/libm/common/Q/
H A Dcbrtl.c40 double dx, dy; local
41 int *py = (int *) &dy;
55 dy = cbrt(dx);
61 t = (long double) dy;
/illumos-gate/usr/src/lib/libm/common/complex/
H A Dclogf.c42 double dx, dy; local
67 dy = (double)ay;
69 F_RE(ans) = (float)(0.5 * log1p(dy * dy));
75 F_RE(ans) = (float)(0.5 * log(dx * dx + dy * dy));
H A Dcsqrtf.c42 double dt, dx, dy; local
78 dy = (double) ay;
79 dt = sqrt(0.5 * (sqrt(dx * dx + dy * dy) + dx));
81 w = (float) (dy / (dt + dt));
H A Dcatanf.c49 double dx, dy, dt; local
122 dy = (double)ay;
124 1.0 - dx * dx - dy * dy));
125 dt = dy - 1.0;
126 F_IM(ans) = (float)(0.25 * log1p(4.0 * dy /
H A Dcpowf.c57 double dx, dy, du, dv, dt, dc, ds, dp, dq, dr; local
148 dy = (double)y;
152 dt = dhalf * log1p((dx - 1.0) * (dx + 1.0) + dy * dy);
154 dt = dhalf * log1p((dy - 1.0) * (dy + 1.0) + dx * dx);
156 dt = dhalf * log(dx * dx + dy * dy);
157 dp = atan2pi(dy, dx);
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dconvtime.c132 int wk, dy, hr, mi, se;
148 dy = intvl;
153 dy = intvl % 7;
162 if (dy > 0)
164 (void) sm_snprintf(p, SPACELEFT(buf, p), "%d+", dy);
179 if (dy > 0)
181 (void) sm_snprintf(p, SPACELEFT(buf, p), ", %d day%s", dy,
182 PLURAL(dy));
131 int wk, dy, hr, mi, se; local
/illumos-gate/usr/src/lib/libm/common/LD/
H A Dcbrtl.c40 double dx, dy; local
41 int *py = (int *) &dy;
58 dy = cbrt(dx);
64 t = (long double) dy;
/illumos-gate/usr/src/cmd/lp/filter/postscript/dpost/
H A Ddraw.c196 drawline(int dx, int dy) argument
197 /* endpoint is (hpos+dx, vpos+dy) */
202 * Draws a line from (hpos, vpos) to (hpos+dx, vpos+dy), and leaves the current
208 if ( dx == 0 && dy == 0 )
210 else fprintf(tf, "%d %d %d %d Dl\n", hpos + dx, vpos + dy, hpos, vpos);
213 vgoto(vpos+dy);
633 * new baseline. Equations for x(t), y(t), dx/dt, and dy/dt must be written in
636 * last one on the stack, while the equation for dy/dt comes last (in *buf) and
750 * dy/dt = g'(t)
753 * first (ie. it ends up on the bottom of the stack) and the equation for dy/d
[all...]
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dmvcur.c230 int dy, st_1, st_n, cv; local
237 dy = ny-cy;
238 st_1 = _COST(Cursor_down) * dy;
241 dy = cy-ny;
242 st_1 = _COST(Cursor_up) * dy;
260 _PUTS(tparm_p1(parm_down_cursor, dy), 1);
262 _PUTS(tparm_p1(parm_up_cursor, dy), 1);
268 for (; dy > 0; --dy)
/illumos-gate/usr/src/cmd/troff/
H A Dn9.c314 int i, j, k, dx[NPAIR], dy[NPAIR], delim, type; local
317 /* input is \D'f dx dy dx dy ... c' (or at least it had better be) */
319 /* specified dx,dy pairs interpreted as appropriate */
322 /* l dx dy: line from here by dx,dy */
333 /* f dx dy ...: f is any other char: like spline */
354 dy[i++] = 0;
359 dy[i] = quant(atoi(), VERT);
360 if (dy[
[all...]
/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dfmal.c92 double dx[5], dy[5], dxy[9], c, s; local
327 dy[0] = (double) ((int) hy) * c;
331 dy[1] = (double) ((int) (yy.i[1] >> 8)) * c;
336 dy[2] = (double) ((int) (((yy.i[1] << 16) | (yy.i[2] >> 16)) &
342 dy[3] = (double) ((int) (((yy.i[2] << 8) | (yy.i[3] >> 24)) &
347 dy[4] = (double) ((int) (yy.i[3] & 0xffffff)) * c;
350 dxy[0] = dx[0] * dy[0];
351 dxy[1] = dx[0] * dy[1] + dx[1] * dy[0];
352 dxy[2] = dx[0] * dy[
[all...]
/illumos-gate/usr/src/cmd/troff/troff.d/
H A Dt10.c290 short z, dx, dy, dx2, dy2, n; local
398 dy = absmot(pi[4]);
400 dy = -dy;
408 fdprintf(ptid, "D%c %d %d\n", DRAWELLIPSE, dx, dy);
414 fdprintf(ptid, "D%c %d %d ", DRAWLINE, dx, dy);
421 vpos += dy;
431 dx, dy, dx2, dy2);
434 vpos += dy + dy2;
438 fdprintf(ptid, "D%c %d %d", cbits(pi[1]), dx, dy);
[all...]

Completed in 79 milliseconds

12