/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/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);
|
s_remquol.c | 65 * Return the IEEE remainder and set *quo to the last n bits of the 78 remquol(long double x, long double y, int *quo) 108 *quo = (sxy ? -1 : 1); 150 *quo = (sxy ? -q : q); 181 *quo = (sxy ? -q : q); 187 remquol(long double x, long double y, int *quo) 189 return remquo(x, y, quo);
|
s_remquof.c | 27 * Return the IEEE remainder and set *quo to the last n bits of the 35 remquof(float x, float y, int *quo) 54 *quo = 1; 96 *quo = (sxy ? -q : q); 124 *quo = (sxy ? -q : q);
|
s_remquo.c | 29 * Return the IEEE remainder and set *quo to the last n bits of the 37 remquo(double x, double y, int *quo) 59 *quo = (sxy ? -1 : 1); 123 *quo = (sxy ? -q : q); 158 *quo = (sxy ? -q : q); 165 *quo = 0x80000000;
|
/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/sanitizer_common/ |
sanitizer_common_interceptors.inc | 4833 INTERCEPTOR(double, remquo, double x, double y, int *quo) { 4835 COMMON_INTERCEPTOR_ENTER(ctx, remquo, x, y, quo); 4839 double res = REAL(remquo)(x, y, quo); 4840 if (quo) COMMON_INTERCEPTOR_WRITE_RANGE(ctx, quo, sizeof(*quo)); 4843 INTERCEPTOR(float, remquof, float x, float y, int *quo) { 4845 COMMON_INTERCEPTOR_ENTER(ctx, remquof, x, y, quo); 4849 float res = REAL(remquof)(x, y, quo); 4850 if (quo) COMMON_INTERCEPTOR_WRITE_RANGE(ctx, quo, sizeof(*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);
|