HomeSort by: relevance | last modified time | path
    Searched defs:sx (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/lib/libm/src/
e_remainderf.c 31 u_int32_t sx; local in function:__ieee754_remainderf
36 sx = hx&0x80000000;
64 SET_FLOAT_WORD(x,hx^sx);
e_remainder.c 37 u_int32_t sx,lx,lp; local in function:__ieee754_remainder
42 sx = hx&0x80000000;
71 SET_HIGH_WORD(x,hx^sx);
s_rint.c 40 int32_t i0,jj0,sx; local in function:rint
44 sx = (i0>>31)&1;
53 w = TWO52[sx]+x;
54 t = w-TWO52[sx];
56 SET_HIGH_WORD(t,(i0&0x7fffffff)|(sx<<31));
77 w = TWO52[sx]+x;
78 return w-TWO52[sx];
s_rintf.c 33 int32_t i0,jj0,sx; local in function:rintf
41 sx = (i0>>31)&1;
50 w = TWO23[sx]+x;
51 t = w-TWO23[sx];
53 SET_FLOAT_WORD(t,(i0&0x7fffffff)|(sx<<31));
66 w = TWO23[sx]+x;
67 return w-TWO23[sx];
e_fmod.c 36 int32_t n,hx,hy,hz,ix,iy,sx,i; local in function:__strong_alias
41 sx = hx&0x80000000; /* sign of x */
42 hx ^=sx; /* |x| */
52 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
106 return Zero[(u_int32_t)sx>>31];
115 return Zero[(u_int32_t)sx>>31];
122 INSERT_WORDS(x,hx|sx,lx);
129 lx = (hx<<(32-n))|(lx>>n); hx = sx;
131 lx = hx>>(n-32); hx = sx;
133 INSERT_WORDS(x,hx|sx,lx)
    [all...]
e_fmodf.c 35 int32_t n,hx,hy,hz,ix,iy,sx,i; local in function:__ieee754_fmodf
39 sx = hx&0x80000000; /* sign of x */
40 hx ^=sx; /* |x| */
49 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
82 return Zero[(u_int32_t)sx>>31];
91 return Zero[(u_int32_t)sx>>31];
98 SET_FLOAT_WORD(x,hx|sx);
102 SET_FLOAT_WORD(x,hx|sx);
s_remquof.c 37 int32_t n,hx,hy,hz,ix,iy,sx,i; local in function:remquof
43 sx = hx&0x80000000; /* sign of x */
44 hx ^=sx; /* |x| */
55 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
97 return Zero[(u_int32_t)sx>>31];
122 SET_FLOAT_WORD(x,hx^sx);
s_remquo.c 39 int32_t n,hx,hy,hz,ix,iy,sx,i; local in function:remquo
45 sx = hx&0x80000000; /* sign of x */
46 hx ^=sx; /* |x| */
60 return Zero[(u_int32_t)sx>>31]; /* |x|=|y| return x*0*/
124 return Zero[(u_int32_t)sx>>31];
156 SET_HIGH_WORD(x,hx^sx);
e_fmodl.c 80 int ix,iy,n,sx; local in function:__ieee754_fmodl
82 sx = ux.extu_sign;
98 return Zero[sx]; /* |x|=|y| return x*0*/
132 return Zero[sx];
141 return Zero[sx];
s_remquol.c 84 int ix,iy,n,q,sx,sxy; local in function:remquol
88 sx = ux.extu_sign;
89 sxy = sx ^ uy.extu_sign;
109 return Zero[sx]; /* |x|=|y| return x*0*/
151 return Zero[sx];
178 ux.extu_sign ^= sx;
  /src/lib/libcurses/
delch.c 112 int cw, sx; local in function:wdelch
116 sx = win->curx;
121 sx += cw;
133 if (sx + cw < win->maxx) {
150 __touchline(win, (int)win->cury, sx, (int)win->maxx - 1);
ins_wch.c 90 int cw, pcw, x, y, sx, ex, newx, i; local in function:wins_wch
139 sx = x;
143 sx += pcw;
145 if (cw > win->maxx - sx)
148 newx = sx + win->ch_off;
213 __touchline(win, y, sx, (int)win->maxx - 1);
add_wchstr.c 140 int cw, x, y, sx, ex, newx, i, cnt; local in function:wadd_wchnstr
171 sx = x;
189 sx = x + cw;
192 newx = sx + win->ch_off;
287 for (i = sx; i < ex; i++) {
298 __touchline(win, y, sx, ex);
ins_wstr.c 138 int width, len, lx, sx, x, y, tx, ty, cw, pcw, newx, tn, w; local in function:wins_nwstr
284 sx = x;
288 sx += pcw;
291 __CTRACE(__CTRACE_INPUT, "wins_nwstr: start@(%d)\n", sx);
294 newx = sx + win->ch_off;
315 if (sx + width + pcw <= win->maxx) {
  /src/lib/libc/gdtoa/
dmisc.c 116 ULong *bx, *bxe, q, *sx, *sxe; local in function:quorem
133 sx = S->x;
134 sxe = sx + --n;
147 ys = *sx++ * (ULLong)q + carry;
156 si = *sx++;
166 ys = *sx++ * q + carry;
174 while(sx <= sxe);
187 sx = S->x;
190 ys = *sx++ + carry;
199 si = *sx++
    [all...]
  /src/games/hack/
hack.mkshop.c 93 int sh, sx, sy, i = -1; local in function:mkshop
157 sx = doors[sh].x;
159 if (sx == sroom->lx - 1)
160 sx++;
161 else if (sx == sroom->hx + 1)
162 sx--;
187 if (!(shk = makemon(PM_SHK, sx, sy)))
195 ESHK->shk.x = sx;
203 for (sx = sroom->lx; sx <= sroom->hx; sx++
227 int sh, sx, sy, i; local in function:mkzoo
303 int sx, sy, i, eelct = 0; local in function:mkswamp
    [all...]
  /src/lib/libm/complex/
catrig.c 382 int sx, sy; local in function:cacos
388 sx = signbit(x);
433 if (sx == 0)
438 if (sx == 0)
catrigf.c 217 int sx, sy; local in function:cacosf
223 sx = signbit(x);
257 if (sx == 0)
262 if (sx == 0)
catrigl.c 247 int sx, sy; local in function:cacosl
253 sx = signbit(x);
286 if (sx==0)
291 if (sx==0)
  /src/lib/libedit/
refresh.c 492 * the line. fx and sx is the number of characters inserted or deleted
497 re_clear_eol(EditLine *el, int fx, int sx, int diff)
500 ELRE_DEBUG(1, (__F, "re_clear_eol sx %d, fx %d, diff %d\n",
501 sx, fx, diff));
505 if (sx < 0)
506 sx = -sx;
509 if (sx > diff)
510 diff = sx;
546 int fx, sx; local in function:re_update_line
    [all...]
  /src/sys/dev/sbus/
zx.c 683 int sx, sy, x, y; local in function:zx_cursor_move
689 sx = uimin(-x, 32);
692 sx = 0;
700 if (sx != sc->sc_shiftx || sy != sc->sc_shifty) {
701 sc->sc_shiftx = sx;
854 zx_copyrect(struct zx_softc *sc, int sx, int sy, int dx, int dy, int w,
862 if (sy < dy || sx < dx) {
864 sx += w;
878 bus_space_write_4(sc->sc_bt, sc->sc_bhzc, zc_src, sx | (sy << 11));
  /src/common/dist/zlib/
trees.c 904 unsigned sx = 0; /* running index in symbol buffers */ local in function:compress_block
910 dist = s->d_buf[sx];
911 lc = s->l_buf[sx++];
913 dist = s->sym_buf[sx++] & 0xff;
914 dist += (unsigned)(s->sym_buf[sx++] & 0xff) << 8;
915 lc = s->sym_buf[sx++];
943 Assert(s->pending < 2 * (s->lit_bufsize + sx), "pendingBuf overflow");
945 Assert(s->pending < s->lit_bufsize + sx, "pendingBuf overflow");
948 } while (sx < s->sym_next);
  /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv50/
atom.h 219 u16 sx; member in struct:nv50_wndw_atom::__anonf635598f1608
  /src/sys/arch/mips/adm5120/dev/
ahci.c 1010 struct ahci_xfer *sx; local in function:ahci_device_intr_start
1016 sx = kmem_intr_alloc(sizeof(*sx), KM_NOSLEEP);
1017 if (sx == NULL)
1019 memset(sx, 0, sizeof(*sx));
1020 sx->sx_xfer = xfer;
1021 xfer->ux_hcpriv = sx;
1024 callout_init(&sx->sx_callout_t, 0);
1025 callout_reset(&sx->sx_callout_t
1039 struct ahci_xfer *sx = (struct ahci_xfer *)arg; local in function:ahci_poll_device
1076 struct ahci_xfer *sx; local in function:ahci_device_intr_abort
    [all...]
  /src/sys/arch/vax/vsa/
gpx.c 527 int dx, dy, sx, sy, fg, bg, ul; local in function:gpx_putchar
536 sx = (uc % ss->ss_gpr) * font->stride * NBBY;
565 ss->ss_adder->source_1_x = sx;
583 int sx, y, dx, w, h; local in function:gpx_copycols
585 sx = ri->ri_xorigin + src * font->fontwidth;
591 gpx_copyrect(ss, sx, y, dx, y, w, h);
1067 int sx, int sy, int dx, int dy, int w, int h)
1089 ss->ss_adder->source_1_x = sx;

Completed in 117 milliseconds

1 2