| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/math/ |
| H A D | rounding.d | 334 Unqual!F quantize(alias rfunc = rint, F)(const F val, const F unit) 380 Unqual!F quantize(real base, alias rfunc = rint, F, E)(const F val, const E exp) 390 Unqual!F quantize(real base, long exp = 1, alias rfunc = rint, F)(const F val) 474 real rint(real x) @safe pure nothrow @nogc 476 return core.math.rint(x); 480 double rint(double x) @safe pure nothrow @nogc 482 return core.math.rint(x); 486 float rint(float x) @safe pure nothrow @nogc 488 return core.math.rint(x); 497 assert(rint(0.4) == 0); [all …]
|
| /netbsd-src/external/gpl3/gdb/dist/sim/testsuite/mips/ |
| H A D | r6-fpu.s | 259 r6ck_2s rint.s, 0x0, 0x3fbf10cb, 0x3f800000 260 r6ck_2s rint.s, 0x0, 0xb9011423, 0x0 261 r6ck_2s rint.s, 0x0, 0x43fa4687, 0x43fa8000 262 r6ck_2s rint.s, 0x0, 0x41380000, 0x41400000 263 r6ck_2s rint.s, 0x0, 0x3ff33333, 0x40000000 266 r6ck_2d rint.d, 0x0, 0x3ff1f9a6b50b0f28, 0x3ff0000000000000 267 r6ck_2d rint.d, 0x0, 0xbf543bf727136a40, 0x0 268 r6ck_2d rint.d, 0x0, 0x407f48d0e5604189, 0x407f500000000000 269 r6ck_2d rint.d, 0x0, 0x5b7c2d43b93b0a8c, 0x5b7c2d43b93b0a8c,
|
| /netbsd-src/lib/libm/noieee_src/ |
| H A D | n_floor.c | 51 __weak_alias(rintl, rint) in __weak_alias() 134 rint(double x) in rint() function 154 return rint((double)x); in rintf()
|
| /netbsd-src/lib/libm/src/ |
| H A D | s_nearbyint.c | 46 * because the only exception defined for rint() is overflow, and 62 DECL(double, nearbyint, rint) 49 DECL(type,fn,rint) global() argument
|
| H A D | s_rint.c | 38 rint(double x) in rint() function 82 __weak_alias(rintl, rint)
|
| H A D | s_llrint.c | 9 #define roundit rint
|
| H A D | s_lrint.c | 40 #define roundit rint
|
| H A D | e_scalb.c | 44 if (rint(fn)!=fn) return (fn-fn)/(fn-fn); in __ieee754_scalb()
|
| H A D | k_standard.c | 440 if(x<zero&&rint(y)!=y) exc.retval = -HUGE; in __kernel_standard() 444 if(x<zero&&rint(y)!=y) exc.retval = -HUGE_VAL; in __kernel_standard() 474 if(signbit(x)&&rint(y)!=y) exc.retval = -HUGE_VAL; in __kernel_standard()
|
| /netbsd-src/lib/libm/arch/m68k/ |
| H A D | s_rint.S | 43 | rint(x) 45 ENTRY(rint)
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/ |
| H A D | math.d | 166 float rint(float x); /* intrinsic */ 167 double rint(double x); /* intrinsic */ /// ditto 168 real rint(real x); /* intrinsic */ /// ditto
|
| /netbsd-src/tests/lib/libc/gen/ |
| H A D | t_fpsetround.c | 105 int g = (int)rint(d); in test() 114 tst[i].n, (int)rint(d), tst[i].v[r]); in test()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Headers/ |
| H A D | __clang_cuda_math_forward_declares.h | 155 __DEVICE__ double rint(double); 156 __DEVICE__ float rint(float); 260 using ::rint;
|
| /netbsd-src/sys/arch/amiga/dev/ |
| H A D | if_qn.c | 709 u_short tint, rint, tintmask; in qnintr() local 720 rint = (*sc->nic_r_status) & NIC_R_MASK; in qnintr() 723 if (tint == 0 && rint == 0) in qnintr() 776 if (rint != 0) in qnintr() 777 qn_rint(sc, rint); in qnintr()
|
| /netbsd-src/tests/lib/lua/libm/ |
| H A D | h_lualibm.c | 77 TEST(rint(M_PI)); in main() 78 TEST(rint(M_E)); in main()
|
| H A D | lualibm.lua | 80 test("rint(M_PI)", lm.rint(lm.M_PI)) 81 test("rint(M_E)", lm.rint(lm.M_E))
|
| /netbsd-src/lib/libm/arch/i387/ |
| H A D | s_rint.S | 12 ENTRY(rint)
|
| /netbsd-src/lib/libm/ |
| H A D | Makefile | 452 remainder.3 rint.3 round.3 \ 541 MLINKS+=rint.3 rintf.3 \ 542 rint.3 rintl.3 \ 543 rint.3 nearbyint.3 \ 544 rint.3 nearbyintf.3 \ 545 rint.3 nearbyintl.3
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ginclude/ |
| H A D | tgmath.h | 112 #define rint(x) __TGMATH_REAL(x, rint) macro
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ginclude/ |
| H A D | tgmath.h | 112 #define rint(x) __TGMATH_REAL(x, rint) macro
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/stdc/ |
| H A D | tgmath.d | 386 alias core.stdc.math.rint rint; in version() local 388 alias core.stdc.math.rintf rint; in version() local 390 alias core.stdc.math.rintl rint; in version() local 887 alias core.stdc.math.rint rint; in version() local 889 alias core.stdc.math.rintf rint; in version() local 891 alias core.stdc.math.rintl rint; in version() local 1390 alias core.stdc.math.rint rint; variable 1392 alias core.stdc.math.rintf rint; variable 1394 alias core.stdc.math.rintl rint; variable
|
| /netbsd-src/sys/arch/evbppc/virtex/dev/ |
| H A D | xlcom.c | 271 int (*rint)(int, struct tty *); in xlcom_rx_soft() local 280 rint = tp->t_linesw->l_rint; in xlcom_rx_soft() 297 if ((rint)(d, tp) == -1) { in xlcom_rx_soft()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/ |
| H A D | intrinsics.def | 158 DEF_D_BUILTIN (INTRINSIC_RINTF, BUILT_IN_RINTF, "rint", "core.math", 160 DEF_D_BUILTIN (INTRINSIC_RINT, BUILT_IN_RINT, "rint", "core.math", 162 DEF_D_BUILTIN (INTRINSIC_RINTL, BUILT_IN_RINTL, "rint", "core.math",
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | BranchProbability.cpp | 30 double Percent = rint(((double)N / D) * 100.0 * 100.0) / 100.0; in print()
|
| /netbsd-src/external/bsd/nvi/dist/docs/vi.man/ |
| H A D | spell.ok | 121 rint
|