/src/lib/libm/src/ |
e_remainderl.c | 37 int quo; local in function:remainderl 40 return remquol(x, y, &quo); 42 return remquo(x, y, &quo);
|
/src/sys/arch/hppa/spmath/ |
divu.S | 56 quo: .reg %r4 /* quotient and lower part of dividend */ label 65 stws,ma quo,4(%sp) ; save registers on stack 70 addi 0,%arg1,quo ; get lower dividend 76 add quo,quo,quo ; shift msb bit into carry 79 addc quo,quo,quo ; shift quo with/into carr [all...] |
/src/tests/lib/libm/ |
t_remquo.c | 68 int quo; /* expected */ member in struct:__anon7c827fa50108 95 int quo; local in function:ATF_TC_BODY 96 int quo_exp = args[i].quo; 100 r = remquo(x, y, &quo); 107 if (quo_exp < 0 && quo >= 0) 109 if (quo_exp >= 0 && quo < 0) 113 * The specification requires that quo be congruent to 116 ok &= ((quo & 0x7) == (quo_exp & 0x7)); 120 "r/quo expected %g/%d != %g/%d", 121 x, y, r_exp, quo_exp, r, quo); [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/ |
msan_test.cc | 1924 int quo; local in function:TEST 1925 double res = remquo(29.0, 3.0, &quo); 1927 EXPECT_NOT_POISONED(quo); 1931 int quo; local in function:TEST 1932 float res = remquof(29.0, 3.0, &quo); 1934 EXPECT_NOT_POISONED(quo); 1939 int quo; local in function:TEST 1940 long double res = remquof(29.0, 3.0, &quo); 1942 EXPECT_NOT_POISONED(quo);
|