/src/lib/libm/arch/i387/ |
s_rint.S | 12 ENTRY(rint) function
|
/src/lib/libm/src/ |
s_llrint.c | 9 #define roundit rint
|
s_lrint.c | 40 #define roundit rint
|
s_nearbyint.c | 46 * because the only exception defined for rint() is overflow, and 62 DECL(double, nearbyint, rint)
|
e_scalb.c | 44 if (rint(fn)!=fn) return (fn-fn)/(fn-fn);
|
s_rint.c | 19 * rint(x) 25 * Inexact flag raised if x not equal to rint(x). 38 rint(double x) function in typeref:typename:double 82 __weak_alias(rintl, rint)
|
k_standard.c | 440 if(x<zero&&rint(y)!=y) exc.retval = -HUGE; 444 if(x<zero&&rint(y)!=y) exc.retval = -HUGE_VAL; 474 if(signbit(x)&&rint(y)!=y) exc.retval = -HUGE_VAL;
|
/src/lib/libm/arch/m68k/ |
s_rint.S | 43 | rint(x) 45 ENTRY(rint) function
|
/src/lib/libm/noieee_src/ |
n_floor.c | 51 __weak_alias(rintl, rint) 113 * algorithm for rint(x) in pseudo-pascal form ... 115 * real rint(x): real x; 134 rint(double x) function in typeref:typename:double 154 return rint((double)x);
|
/src/tests/lib/lua/libm/ |
h_lualibm.c | 77 TEST(rint(M_PI)); 78 TEST(rint(M_E));
|
lualibm.lua | 80 test("rint(M_PI)", lm.rint(lm.M_PI)) 81 test("rint(M_E)", lm.rint(lm.M_E))
|
/src/tests/lib/libc/gen/ |
t_fpsetround.c | 105 int g = (int)rint(d); 114 tst[i].n, (int)rint(d), tst[i].v[r]);
|
/src/sys/arch/amiga/dev/ |
if_qn.c | 709 u_short tint, rint, tintmask; local in function:qnintr 720 rint = (*sc->nic_r_status) & NIC_R_MASK; 723 if (tint == 0 && rint == 0) 776 if (rint != 0) 777 qn_rint(sc, rint);
|
/src/lib/libm/ |
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
|
/src/sys/arch/evbppc/virtex/dev/ |
xlcom.c | 271 int (*rint)(int, struct tty *); local in function:xlcom_rx_soft 280 rint = tp->t_linesw->l_rint; 297 if ((rint)(d, tp) == -1) {
|
/src/include/ |
tgmath.h | 181 #define rint(a) __TG_FN1(rint, (a)) macro
|
math.h | 302 double rint(double);
|
/src/lib/lua/libm/ |
libm.c | 148 DFUNC_DBL(rint) 287 { "rint", libm_rint },
|
/src/tests/lib/libm/ |
t_fe_round.c | 172 "Checking IEEE 754 rounding modes using nearbyint/rint"); 181 RINT, 190 [RINT] = "rint", 233 * Call the rint(3)-family function. 248 case RINT: 249 received = rint(values[i].input); 379 * Call the rint(3)-family function.
|
/src/sys/arch/hpcmips/tx/ |
txcom.c | 715 int (*rint)(int, struct tty *); local in function:txcom_rxsoft 719 rint = tp->t_linesw->l_rint; 728 if ((*rint)(code, tp) == -1) {
|
/src/sys/dev/ic/ |
clmpcc.c | 1339 int (*rint)(int, struct tty *); local in function:clmpcc_softintr 1352 rint = tp->t_linesw->l_rint; 1358 if ( (rint)(c, tp) == -1 ) {
|
/src/sys/dev/usb/ |
ucom.c | 1390 int (*rint)(int, struct tty *); local in function:ucom_read_complete 1397 rint = tp->t_linesw->l_rint; 1405 if ((*rint)(ub->ub_data[ub->ub_index], tp) == -1) {
|
/src/sys/arch/arm/ixp12x0/ |
ixp12x0_com.c | 920 int (*rint)(int, struct tty *) = tp->t_linesw->l_rint; local in function:ixpcom_rxsoft 955 if ((*rint)(code, tp) == -1) {
|
/src/sys/arch/arm/at91/ |
at91dbgu.c | 922 int (*rint)(int, struct tty *) = tp->t_linesw->l_rint; local in function:at91dbgu_rxsoft 957 if ((*rint)(code, tp) == -1) {
|
at91usart.c | 976 int (*rint)(int, struct tty *) = tp->t_linesw->l_rint; local in function:at91usart_rxsoft 984 if ((*rint)(code, tp) == -1) {
|