HomeSort by: relevance | last modified time | path
    Searched defs:compared (Results 1 - 9 of 9) sorted by relevancy

  /src/external/lgpl3/mpfr/dist/src/
asin.c 29 int compared, inexact; local
66 compared = mpfr_cmp_ui (xp, 1);
70 if (MPFR_UNLIKELY (compared >= 0))
73 if (compared > 0) /* asin(x) = NaN for |x| > 1 */
acos.c 32 int sign, compared, inexact; local
66 compared = mpfr_cmp_ui (xp, 1);
68 if (MPFR_UNLIKELY (compared >= 0))
71 if (compared > 0) /* acos(x) = NaN for x > 1 */
acosu.c 34 int compared, inexact; local
60 compared = mpfr_cmpabs_ui (x, 1);
61 if (compared > 0)
75 if (compared == 0)
101 the contribution of x*s(x) is smaller compared to the last bit of u. */
asinu.c 33 int compared, inexact; local
62 compared = mpfr_cmpabs_ui (x, 1);
63 if (compared > 0)
77 if (compared == 0)
compound.c 57 int inexact, compared, k, nloop; local
104 compared = mpfr_cmp_si (x, -1);
105 if (compared < 0)
115 if (compared == 0)
gamma.c 118 int compared, is_integer; local
256 compared = mpfr_cmp_ui (x, 1);
257 if (compared == 0)
289 if (compared > 0)
322 /* now compared < 0 */
lngamma.c 175 int compared, inexact; local
186 compared = mpfr_cmp_ui (z0, 1);
191 if (compared == 0 || (compared > 0 && mpfr_cmp_ui (z0, 2) == 0))
201 if (compared > 0 && MPFR_GET_EXP (z0) >= (mpfr_exp_t) MPFR_PREC(y) + 2)
322 if (compared < 0)
428 MPFR_ASSERTD (compared > 0);
  /src/external/mpl/bind/dist/lib/dns/
rbt.c 401 dns_namereln_t compared; local
484 compared = dns_name_fullcompare(add_name, &current_name, &order,
487 if (compared == dns_namereln_equal) {
493 if (compared == dns_namereln_none) {
514 if (compared == dns_namereln_subdomain) {
548 INSIST(compared ==
550 compared == dns_namereln_contains);
704 dns_namereln_t compared; local
738 compared = dns_namereln_none;
761 compared = dns_name_fullcompare(search_name, &current_name
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/
rbt.c 1199 dns_namereln_t compared; local
1286 compared = dns_name_fullcompare(add_name, &current_name, &order,
1289 if (compared == dns_namereln_equal) {
1295 if (compared == dns_namereln_none) {
1316 if (compared == dns_namereln_subdomain) {
1350 INSIST(compared ==
1352 compared == dns_namereln_contains);
1546 dns_namereln_t compared; local
1579 compared = dns_namereln_none;
1603 compared = dns_name_fullcompare(search_name, &current_name
    [all...]

Completed in 28 milliseconds