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

  /src/external/lgpl3/mpfr/dist/src/
rem1.c 59 mpfr_exp_t ex, ey; local
92 ey = mpfr_get_z_2exp (my, y); /* y = my*2^ey */
108 ey += k;
112 if (ex <= ey)
114 /* q = x/y = mx/(my*2^(ey-ex)) */
117 my*2^(ey-ex): if sx = mpz_sizeinbase (mx, 2) and sy =
119 y >= 2^(ey + sy - 1), thus if ex + sx <= ey + sy - 1
122 ey + (mpfr_exp_t) mpz_sizeinbase (my, 2)
    [all...]
exp3.c 297 mpfr_exp_t ey; local
300 ey = MPFR_GET_EXP (y);
305 MPFR_IS_ZERO (y) && ey == __gmpfr_emin + 1)
  /src/external/lgpl3/mpfr/dist/tests/
tcmpabs.c 43 mpfr_exp_t ey = MPFR_IS_SINGULAR (y) ? emax : MPFR_GET_EXP (y); local
44 set_emin (ex < ey ? ex : ey);
45 set_emax (ex < ey ? ey : ex);
tget_sj.c 87 mpfr_exp_t ey; local
91 ey = MPFR_GET_EXP (y);
92 set_emin (ey);
93 set_emax (ey);
168 mpfr_exp_t ey; local
172 ey = MPFR_GET_EXP (y);
173 set_emin (ey);
174 set_emax (ey);
  /src/lib/libc/gdtoa/
g_ddfmt.c 46 int bx, by, decpt, ex, ey, i, j, mode; local
116 y = d2b(dval(&dd[1]), &ey, &by);
119 if ( (i = ex - ey) !=0) {
124 ex = ey;
  /src/lib/libm/src/
s_fma.c 196 int ex, ey, ez; local
214 ys = frexp(y, &ey);
217 spread = ex + ey - ez;
266 spread = ex + ey;
s_fmal.c 181 int ex, ey, ez; local
199 ys = frexpl(y, &ey);
202 spread = ex + ey - ez;
251 spread = ex + ey;
  /src/external/bsd/tmux/dist/
screen.c 37 u_int ey; member in struct:screen_sel
445 u_int ex, u_int ey, u_int rectangle, int modekeys, struct grid_cell *gc)
458 s->sel->ey = ey;
488 if (sel->sy < sel->ey) {
490 if (py < sel->sy || py > sel->ey)
492 } else if (sel->sy > sel->ey) {
494 if (py > sel->sy || py < sel->ey)
527 if (sel->sy < sel->ey) {
529 if (py < sel->sy || py > sel->ey)
    [all...]
screen-redraw.c 125 u_int ex = wp->xoff + wp->sx, ey = wp->yoff + wp->sy; local
136 if (px >= wp->xoff && px < ex && py >= wp->yoff && py < ey)
156 if ((wp->yoff == 0 || py >= wp->yoff - 1) && py <= ey) {
194 if (py == ey)
202 if (py == ey)
window-copy.c 4798 u_int i, xx, yy, sx, sy, ex, ey, ey_last; local
4826 ex = data->selx; ey = data->sely;
4829 ex = xx; ey = yy;
4833 ey_last = window_copy_find_length(wme, ey);
4890 for (i = sy; i <= ey; i++) {
4893 (i == ey ? lastex : restex));
4904 if (~grid_get_line(data->backing->grid, ey)->flags &
  /src/external/gpl3/gcc/dist/libgcc/config/libbid/
bid64_fma.c 77 int digits_p, bp, final_exponent, exponent_z, digits_z, ez, ey, local
367 ey = final_exponent - extra_digits;
368 extra_digits = ez - ey;
bid_sqrt_macros.h 142 int ey, k; local
151 ey = 0x3ff - (ly.i >> 52);
157 // shr by 2*ey+40, to get a 64-bit value
158 k = (ey << 1) + 104 - 64;
204 k = ey + 51;
236 int ey, k, k2; local
254 ey = 0x3ff - (ly.i >> 52);
256 // A10*RS^2, scaled by 2^(2*ey+104)
260 // shr by k=(2*ey+104)-128
263 k = (ey << 1) + 104 - 128 - 192
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/libbid/
bid64_fma.c 77 int digits_p, bp, final_exponent, exponent_z, digits_z, ez, ey, local
367 ey = final_exponent - extra_digits;
368 extra_digits = ez - ey;
bid_sqrt_macros.h 142 int ey, k; local
151 ey = 0x3ff - (ly.i >> 52);
157 // shr by 2*ey+40, to get a 64-bit value
158 k = (ey << 1) + 104 - 64;
204 k = ey + 51;
236 int ey, k, k2; local
254 ey = 0x3ff - (ly.i >> 52);
256 // A10*RS^2, scaled by 2^(2*ey+104)
260 // shr by k=(2*ey+104)-128
263 k = (ey << 1) + 104 - 128 - 192
    [all...]
  /src/external/lgpl3/mpc/dist/src/
asin.c 33 mpfr_exp_t ey = mpfr_get_exp (mpc_imagref (op)); local
39 if (ey >= 0 || ((-ey) / 2 < mpfr_get_prec (mpc_realref (z1))))
46 and since ey <= -2p, then y^(1/2) <= 1/2*ulp(z1) too, thus the total
62 and (1/12) * y^(3/2) <= (1/8) * y * y^(1/2) <= 2^(ey-3)*2^p*ulp(y^(1/2))
63 thus for p+ey-3 <= -1 we have (1/12) * y^(3/2) <= (1/2) * ulp(y^(1/2)),
95 mpfr_exp_t ex, ey, e; local
101 ey = mpfr_get_exp (mpc_imagref (z));
102 MPC_ASSERT(ey <= -1);
103 e = (ex >= ey) ? ex : ey
218 mpfr_exp_t ex, ey, es, err; local
425 mpfr_exp_t ex, ey; local
    [all...]
pow.c 105 mpfr_exp_t ey; local
111 ey = mpfr_get_z_exp (my, y);
114 ey += (mpfr_exp_t) t;
116 /* y = my*2^ey */
119 if (ey >= 2)
121 else if (ey == 1)
123 else if (ey == 0)
176 mpfr_exp_t ec, ed, ey; local
201 ey = mpfr_get_z_exp (my, y);
204 ey += (mpfr_exp_t) t
    [all...]
  /src/sys/dev/usb/
udl.c 1093 int sy, ey, dy, width, height; local
1100 ey = (src + num) * height;
1103 while (sy < ey) {
1110 ey = src * height;
1113 while (sy > ey) {

Completed in 22 milliseconds