HomeSort by: relevance | last modified time | path
    Searched defs:ly (Results 1 - 12 of 12) sorted by relevancy

  /src/lib/libm/src/
s_nextafter.c 38 u_int32_t lx,ly; local in function:__strong_alias
41 EXTRACT_WORDS(hy,ly,y);
46 ((iy>=0x7ff00000)&&((iy-0x7ff00000)|ly)!=0)) /* y is nan */
55 if(hx>hy||((hx==hy)&&(lx>ly))) { /* x > y, x -= ulp */
63 if(hy>=0||hx>hy||((hx==hy)&&(lx>ly))){/* x < y, x -= ulp */
e_fmod.c 37 u_int32_t lx,ly,lz; local in function:__strong_alias
40 EXTRACT_WORDS(hy,ly,y);
46 if((hy|ly)==0||(hx>=0x7ff00000)|| /* y=0,or x not finite */
47 ((hy|((ly|-ly)>>31))>0x7ff00000)) /* or y is NaN */
50 if((hx<hy)||(lx<ly)) return x; /* |x|<|y| return x */
51 if(lx==ly)
67 for (iy = -1043, i=ly; i>0; i<<=1) iy -=1;
73 /* set up {hx,lx}, {hy,ly} and align y to x */
91 hy = (hy<<n)|(ly>>(32-n))
    [all...]
s_remquo.c 40 u_int32_t lx,ly,lz,q,sxy; local in function:remquo
43 EXTRACT_WORDS(hy,ly,y);
50 if((hy|ly)==0||(hx>=0x7ff00000)|| /* y=0,or x not finite */
51 ((hy|((ly|-ly)>>31))>0x7ff00000)) /* or y is NaN */
54 if((hx<hy)||(lx<ly)) {
58 if(lx==ly) {
76 for (iy = -1043, i=ly; i>0; i<<=1) iy -=1;
82 /* set up {hx,lx}, {hy,ly} and align y to x */
100 hy = (hy<<n)|(ly>>(32-n))
    [all...]
e_atan2.c 61 u_int32_t lx,ly; local in function:__ieee754_atan2
65 EXTRACT_WORDS(hy,ly,y);
68 ((iy|((ly|-ly)>>31))>0x7ff00000)) /* x or y is NaN */
74 if((iy|ly)==0) {
e_fmodl.c 79 manl_t lx,ly,lz; local in function:__ieee754_fmodl
118 /* set up {hx,lx}, {hy,ly} and align y to x */
122 ly = uy.extu_fracl;
128 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
136 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
s_remquol.c 83 manl_t lx,ly,lz; local in function:remquol
129 /* set up {hx,lx}, {hy,ly} and align y to x */
133 ly = uy.extu_fracl;
139 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
144 hz=hx-hy;lz=lx-ly; if(lx<ly) hz -= 1;
e_pow.c 106 u_int32_t lx,ly; local in function:__ieee754_pow
109 EXTRACT_WORDS(hy,ly,y);
113 if((iy|ly)==0) return one;
120 iy > 0x7ff00000 || ((iy==0x7ff00000)&&(ly!=0)))
134 j = ly>>(52-k);
135 if((uint32_t)(j<<(52-k))==ly) yisint = 2-(j&1);
136 } else if(ly==0) {
144 if(ly==0) {
  /src/lib/libm/ld80/
s_cexpl.c 44 uint64_t lx, ly; local in function:cexpl
52 EXTRACT_LDBL80_WORDS(hy, ly, y);
56 if ((hy | ly) == 0)
  /src/games/hack/
def.mkroom.h 67 schar lx,hx,ly,hy; /* usually xchar, but hx may be -1 */ member in struct:mkroom
hack.search.c 79 xchar lx, hx, ly, hy; local in function:findit
85 for (ly = u.uy; (num = levl[u.ux][ly - 1].typ) && num != CORR; ly--);
88 for (zy = ly; zy <= hy; zy++)
hack.mklev.c 75 #define somey() ((random()%(croom->hy-croom->ly+1))+croom->ly)
203 for (y = troom->ly; y <= troom->hy; y++)
232 int lx, ly, hx, hy, lowx, lowy, hix, hiy, dx, dy; local in function:makerooms
258 ly = rsp->rly;
271 if (hx - lx < dx + dx / 2 + 2 * xlim || hy - ly < dy + dy / 3 + 2 * ylim) {
285 lowy = ly + ylim + rn2(hy - ly - dy - 2 * ylim + 1);
304 int lx, ly, hx, hy, xlim, ylim; local in function:addrs
313 if ((lx = rsp->rlx) > hix || (ly = rsp->rly) > hiy |
    [all...]
  /src/lib/libcurses/
curses_private.h 218 int lx, ly; /* loop parameters for refresh */ member in struct:__screen

Completed in 16 milliseconds