| /src/lib/libm/src/ |
| e_remainderl.c | 37 int quo; local 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:__anon7907 95 int quo; local 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/crypto/external/bsd/openssl.old/dist/crypto/rsa/ |
| rsa_gen.c | 69 int i = 0, quo = 0, rmd = 0, adj = 0, retries = 0; local 99 quo = bits / primes; 103 bitsr[i] = (i < rmd) ? quo + 1 : quo;
|
| /src/crypto/external/bsd/openssl/dist/crypto/rsa/ |
| rsa_gen.c | 80 int i = 0, quo = 0, rmd = 0, adj = 0, retries = 0; local 117 quo = bits / primes; 121 bitsr[i] = (i < rmd) ? quo + 1 : quo;
|
| /src/crypto/external/apache2/openssl/dist/crypto/rsa/ |
| rsa_gen.c | 270 int i = 0, quo = 0, rmd = 0, adj = 0, retries = 0; local 323 quo = bits / primes; 327 bitsr[i] = (i < rmd) ? quo + 1 : quo;
|
| /src/external/gpl3/gcc/dist/gcc/ |
| double-int.cc | 359 HOST_WIDE_INT den[4], quo[4]; local 407 memset (quo, 0, sizeof quo); 422 quo[i] = work / lden; 521 quo[i] = quo_est; 525 decode (quo, lquo, hquo); 532 /* Compute trial remainder: rem = num - (quo * den) */ 548 /* quo = quo - 1; */ 591 /* quo = quo - 1; * [all...] |
| fold-const.cc | 261 widest_int quo; 264 SIGNED, &quo)) 265 return wide_int_to_tree (TREE_TYPE (arg1), quo); 260 widest_int quo; local
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| double-int.cc | 359 HOST_WIDE_INT den[4], quo[4]; local 407 memset (quo, 0, sizeof quo); 422 quo[i] = work / lden; 521 quo[i] = quo_est; 525 decode (quo, lquo, hquo); 532 /* Compute trial remainder: rem = num - (quo * den) */ 548 /* quo = quo - 1; */ 591 /* quo = quo - 1; * [all...] |
| fold-const.cc | 191 widest_int quo; 194 SIGNED, &quo)) 195 return wide_int_to_tree (TREE_TYPE (arg1), quo); 190 widest_int quo; local
|
| /src/external/gpl3/gcc/dist/libdecnumber/ |
| decBasic.c | 183 uInt quo[DIVOPLEN+1]; /* quotient in base-billion .. */ local 185 uInt *msua, *msud, *msuq; /* -> msu of acc, div, and quo */ 188 uInt *lsua, *lsuq; /* -> current acc and quo lsus */ 289 msuq=quo+DIVOPLEN; 298 lsuq=msuq; /* and of quo */ 525 lsuq++; /* set -> true lsu of quo */ 528 /* quo now holds the (unrounded) quotient in base-billion; one */
|
| /src/external/gpl3/gcc.old/dist/libdecnumber/ |
| decBasic.c | 183 uInt quo[DIVOPLEN+1]; /* quotient in base-billion .. */ local 185 uInt *msua, *msud, *msuq; /* -> msu of acc, div, and quo */ 188 uInt *lsua, *lsuq; /* -> current acc and quo lsus */ 289 msuq=quo+DIVOPLEN; 298 lsuq=msuq; /* and of quo */ 525 lsuq++; /* set -> true lsu of quo */ 528 /* quo now holds the (unrounded) quotient in base-billion; one */
|
| /src/external/gpl3/gdb/dist/libdecnumber/ |
| decBasic.c | 183 uInt quo[DIVOPLEN+1]; /* quotient in base-billion .. */ local 185 uInt *msua, *msud, *msuq; /* -> msu of acc, div, and quo */ 188 uInt *lsua, *lsuq; /* -> current acc and quo lsus */ 289 msuq=quo+DIVOPLEN; 298 lsuq=msuq; /* and of quo */ 525 lsuq++; /* set -> true lsu of quo */ 528 /* quo now holds the (unrounded) quotient in base-billion; one */
|
| /src/external/gpl3/gdb.old/dist/libdecnumber/ |
| decBasic.c | 183 uInt quo[DIVOPLEN+1]; /* quotient in base-billion .. */ local 185 uInt *msua, *msud, *msuq; /* -> msu of acc, div, and quo */ 188 uInt *lsua, *lsuq; /* -> current acc and quo lsus */ 289 msuq=quo+DIVOPLEN; 298 lsuq=msuq; /* and of quo */ 525 lsuq++; /* set -> true lsu of quo */ 528 /* quo now holds the (unrounded) quotient in base-billion; one */
|
| /src/sys/external/bsd/compiler_rt/dist/lib/msan/tests/ |
| msan_test.cc | 1924 int quo; local 1925 double res = remquo(29.0, 3.0, &quo); 1927 EXPECT_NOT_POISONED(quo); 1931 int quo; local 1932 float res = remquof(29.0, 3.0, &quo); 1934 EXPECT_NOT_POISONED(quo); 1939 int quo; local 1940 long double res = remquof(29.0, 3.0, &quo); 1942 EXPECT_NOT_POISONED(quo);
|