/haiku/src/system/libroot/posix/musl/math/ |
H A D | remquo.c | 8 int ey = uy.i>>52 & 0x7ff; in remquo() local 29 if (!ey) { in remquo() 30 for (i = uy.i<<12; i>>63 == 0; ey--, i <<= 1); in remquo() 31 uy.i <<= -ey + 1; in remquo() 38 if (ex < ey) { in remquo() 39 if (ex+1 == ey) in remquo() 45 for (; ex > ey; ex--) { in remquo() 75 if (ex == ey || (ex+1 == ey && (2*x > y || (2*x == y && q%2)))) { in remquo()
|
H A D | remquof.c | 8 int ey = uy.i>>23 & 0xff; in remquof() local 29 if (!ey) { in remquof() 30 for (i = uy.i<<9; i>>31 == 0; ey--, i <<= 1); in remquof() 31 uy.i <<= -ey + 1; in remquof() 38 if (ex < ey) { in remquof() 39 if (ex+1 == ey) in remquof() 45 for (; ex > ey; ex--) { in remquof() 75 if (ex == ey || (ex+1 == ey && (2*x > y || (2*x == y && q%2)))) { in remquof()
|
H A D | atan2l.c | 32 int m, ex, ey; in atan2l() local 41 ey = uy.i.se & 0x7fff; in atan2l() 54 if (ey == 0x7fff) { in atan2l() 70 if (ex+120 < ey || ey == 0x7fff) in atan2l() 73 if ((m&2) && ey+120 < ex) /* |y/x| < 0x1p-120, x<0 */ in atan2l()
|
H A D | remquol.c | 13 int ey = uy.i.se & 0x7fff; in remquol() local 30 if (!ey) { in remquol() 31 uy.i.se = ey; in remquol() 33 ey = uy.i.se - 120; in remquol() 37 if (ex >= ey) { in remquol() 43 for (; ex > ey; ex--) { in remquol() 74 for (; ex > ey; ex--) { in remquol() 116 if (ex == ey || (ex+1 == ey && (2*x > y || (2*x == y && q%2)))) { in remquol()
|
H A D | fmodf.c | 8 int ey = uy.i>>23 & 0xff; in fmodf() local 29 if (!ey) { in fmodf() 30 for (i = uy.i<<9; i>>31 == 0; ey--, i <<= 1); in fmodf() 31 uy.i <<= -ey + 1; in fmodf() 38 for (; ex > ey; ex--) { in fmodf()
|
H A D | fmod.c | 8 int ey = uy.i>>52 & 0x7ff; in fmod() local 32 if (!ey) { in fmod() 33 for (i = uy.i<<12; i>>63 == 0; ey--, i <<= 1); in fmod() 34 uy.i <<= -ey + 1; in fmod() 41 for (; ex > ey; ex--) { in fmod()
|
H A D | hypot.c | 25 int ex, ey; in hypot() local 39 ey = uy.i>>52; in hypot() 43 if (ey == 0x7ff) in hypot() 49 if (ex - ey > 64) in hypot() 59 } else if (ey < 0x3ff-450) { in hypot()
|
H A D | hypotl.c | 28 int ex, ey; in hypotl() local 35 ey = ux.i.se; in hypotl() 40 ey = uy.i.se; in hypotl() 49 if (ex - ey > LDBL_MANT_DIG) in hypotl() 57 } else if (ey < 0x3fff-8000) { in hypotl()
|
H A D | fmodl.c | 13 int ey = uy.i.se & 0x7fff; in fmodl() local 19 uy.i.se = ey; in fmodl() 31 if (!ey) { in fmodl() 33 ey = uy.i.se - 120; in fmodl() 41 for (; ex > ey; ex--) { in fmodl() 67 for (; ex > ey; ex--) { in fmodl()
|
H A D | __rem_pio2l.c | 74 int ex,ey,n,i; in __rem_pio2l() local 86 ey = u.i.se & 0x7fff; in __rem_pio2l() 87 if (ex - ey > ROUND1) { /* 2nd iteration needed, good to 141/248 (ld80/ld128) */ in __rem_pio2l() 94 ey = u.i.se & 0x7fff; in __rem_pio2l() 95 if (ex - ey > ROUND2) { /* 3rd iteration, good to 180/316 bits */ in __rem_pio2l()
|
H A D | __rem_pio2.c | 54 int sign, n, ex, ey, i; in __rem_pio2() local 127 ey = u.i>>52 & 0x7ff; in __rem_pio2() 129 if (ex - ey > 16) { /* 2nd round, good to 118 bits */ in __rem_pio2() 136 ey = u.i>>52 & 0x7ff; in __rem_pio2() 137 if (ex - ey > 49) { /* 3rd round, good to 151 bits, covers all cases */ in __rem_pio2()
|
H A D | fmal.c | 171 int ex, ey, ez; in fmal() local 189 ys = frexpl(y, &ey); in fmal() 192 spread = ex + ey - ez; in fmal() 251 spread = ex + ey; in fmal()
|
/haiku/src/system/libroot/posix/glibc/arch/generic/ |
H A D | mpsqrt.c | 49 int i,m,ex,ey; in __mpsqrt() local 64 ex=EX; ey=EX/2; __cpy(x,&mpxn,p); mpxn.e -= (ey+ey); in __mpsqrt() 76 __mul(&mpxn,&mpu,y,p); EY += ey; in __mpsqrt()
|
/haiku/headers/libs/agg/ |
H A D | agg_renderer_outline_aa.h | 192 int ex, int ey, int x, int y, int) : in distance_interpolator2() argument 196 m_dy_start(line_mr(ey) - line_mr(y2)), in distance_interpolator2() 202 (line_mr(y + line_subpixel_scale/2) - line_mr(ey)) * m_dx_start) in distance_interpolator2() 320 int sx, int sy, int ex, int ey, in distance_interpolator3() argument 327 m_dy_end(line_mr(ey) - line_mr(y2)), in distance_interpolator3() 336 (line_mr(y + line_subpixel_scale/2) - line_mr(ey)) * m_dx_end) in distance_interpolator3() 891 int ex, int ey) : in line_interpolator_aa2() argument 893 m_di(lp.x1, lp.y1, lp.x2, lp.y2, ex, ey, in line_interpolator_aa2() 1040 int sx, int sy, int ex, int ey) : in line_interpolator_aa3() argument 1042 m_di(lp.x1, lp.y1, lp.x2, lp.y2, sx, sy, ex, ey, in line_interpolator_aa3() [all …]
|
H A D | agg_renderer_outline_image.h | 267 int sx, int sy, int ex, int ey, in distance_interpolator4() argument 274 m_dy_end(line_mr(ey) - line_mr(y2)), in distance_interpolator4() 283 (line_mr(y + line_subpixel_scale/2) - line_mr(ey)) * m_dx_end), in distance_interpolator4() 485 int sx, int sy, int ex, int ey, in line_interpolator_image() argument 493 m_di(lp.x1, lp.y1, lp.x2, lp.y2, sx, sy, ex, ey, lp.len, scale_x, in line_interpolator_image() 906 int sx, int sy, int ex, int ey) in line3_no_clip() argument 915 line3_no_clip(lp2, mx, my, (lp.x2 + ex) >> 1, (lp.y2 + ey) >> 1); in line3_no_clip() 920 fix_degenerate_bisectrix_end(lp, &ex, &ey); in line3_no_clip() 923 ex, ey, in line3_no_clip() 938 int sx, int sy, int ex, int ey) in line3() argument [all …]
|
H A D | agg_rasterizer_cells_aa.h | 102 void render_hline(int ey, int x1, int y1, int x2, int y2); 211 AGG_INLINE void rasterizer_cells_aa<Cell>::render_hline(int ey, in render_hline() argument 226 set_curr_cell(ex2, ey); in render_hline() 268 set_curr_cell(ex1, ey); in render_hline() 299 set_curr_cell(ex1, ey); in render_hline()
|
H A D | agg_rasterizer_scanline_aa.h | 62 int not_equal(int ex, int ey, const cell_aa&) const in not_equal() 64 return (ex - x) | (ey - y); in not_equal()
|
H A D | agg_rasterizer_compound_aa.h | 66 int not_equal(int ex, int ey, const cell_style_aa& c) const in not_equal() 68 return (ex - x) | (ey - y) | (left - c.left) | (right - c.right); in not_equal()
|
/haiku/data/catalogs/kits/package/solver/ |
H A D | tr.catkeys | 7 …ides requested %dependency% SolverProblem istenen %dependency% bağımlılığını hiçbir şey sağlamıyor 36 … SolverProblem %source% ögesinin gereksinimi olan %dependency% bağımlılığını hiçbir şey sağlamıyor
|
/haiku/data/catalogs/apps/launchbox/ |
H A D | tr.catkeys | 13 Failed to launch 'something', error in Pad data. LaunchBox “Bir şey” başlatılamadı, Rampa verisind…
|
/haiku/data/catalogs/apps/mediaplayer/ |
H A D | tr.catkeys | 63 Nothing to Play MediaPlayer-Main Oynatacak bir şey yok 130 <nothing to redo> MediaPlayer-PlaylistWindow <yinelenecek bir şey yok> 147 <nothing to undo> MediaPlayer-PlaylistWindow <geri alınacak bir şey yok>
|
/haiku/data/catalogs/apps/soundrecorder/ |
H A D | tr.catkeys | 6 Nothing to play RecorderWindow Oynatacak bir şey yok
|
/haiku/src/apps/diskusage/ |
H A D | PieView.cpp | 376 float ey = by + kProgBarHeight; in _DrawProgressBar() local 380 BRect barFrame(bx, by, ex, ey); in _DrawProgressBar()
|
/haiku/data/catalogs/apps/softwareupdater/ |
H A D | tr.catkeys | 11 For some reason, we could not reboot your computer. SoftwareUpdaterWindow Hiçbir şey olmasa bile b…
|
/haiku/data/catalogs/apps/icon-o-matic/ |
H A D | tr.catkeys | 41 <nothing to redo> Icon-O-Matic-Menu-Edit <yinelenecek bir şey yok> 165 <nothing to undo> Icon-O-Matic-Menu-Edit <geri alınacak bir şey yok>
|