Home
last modified time | relevance | path

Searched refs:exact (Results 1 – 25 of 128) sorted by relevance

123456

/dragonfly/contrib/mpfr/src/
H A Dstrtofr.c453 int count, exact; in parsed_string_to_mpfr() local
524 exact = real_ysize <= ysize; in parsed_string_to_mpfr()
607 exact = exact && (err == -1); in parsed_string_to_mpfr()
648 exact = exact && (mpn_scan1 (result, 0) in parsed_string_to_mpfr()
687 exact = exact && (err == -1); in parsed_string_to_mpfr()
711 exact = exact && (mpn_popcount (result, ysize) == 0); in parsed_string_to_mpfr()
718 exact = exact && ((*r & MPFR_LIMB_ONE) == 0); in parsed_string_to_mpfr()
738 exact = exact && (pstr_size == pstr->prec); in parsed_string_to_mpfr()
745 if (exact || mpfr_can_round_raw (result, ysize, in parsed_string_to_mpfr()
770 exact = exact && (pstr_size == pstr->prec); in parsed_string_to_mpfr()
[all …]
H A Dhypot.c32 int inexact, exact; in mpfr_hypot() local
153 exact = mpfr_mul_2si (te, x, sh, MPFR_RNDZ); in mpfr_hypot()
154 exact |= mpfr_mul_2si (ti, y, sh, MPFR_RNDZ); in mpfr_hypot()
155 exact |= mpfr_sqr (te, te, MPFR_RNDZ); in mpfr_hypot()
157 exact |= mpfr_fma (t, ti, ti, te, MPFR_RNDZ); in mpfr_hypot()
158 exact |= mpfr_sqrt (t, t, MPFR_RNDZ); in mpfr_hypot()
161 if (MPFR_LIKELY (exact == 0 in mpfr_hypot()
173 MPFR_ASSERTD (exact == 0 || inexact != 0); in mpfr_hypot()
H A Dget_str.c87 int exact = (e < 0); in mpfr_get_str_aux() local
2405 exact = 1; in mpfr_get_str()
2417 exact = 1; in mpfr_get_str()
2432 err = !exact; in mpfr_get_str()
2443 exact = (err == -1); in mpfr_get_str()
2451 exact = (exact && in mpfr_get_str()
2463 exact = 0; in mpfr_get_str()
2481 exact = (err == -1); in mpfr_get_str()
2492 exact = 0; in mpfr_get_str()
2499 if (exact) in mpfr_get_str()
[all …]
/dragonfly/contrib/gcc-4.7/gcc/
H A Dvec.c170 calculate_allocation (const struct vec_prefix *pfx, int reserve, bool exact) in calculate_allocation() argument
190 if (exact) in calculate_allocation()
220 bool exact MEM_STAT_DECL) in vec_gc_o_reserve_1()
223 unsigned alloc = calculate_allocation (pfx, reserve, exact); in vec_gc_o_reserve_1()
307 size_t elt_size, bool exact MEM_STAT_DECL) in vec_heap_o_reserve_1()
310 unsigned alloc = calculate_allocation (pfx, reserve, exact); in vec_heap_o_reserve_1()
418 size_t elt_size, bool exact MEM_STAT_DECL) in vec_stack_o_reserve_1()
439 exact PASS_MEM_STAT); in vec_stack_o_reserve_1()
445 exact PASS_MEM_STAT); in vec_stack_o_reserve_1()
/dragonfly/lib/libc/db/btree/
H A Dbt_get.c62 int exact, status; in __bt_get() local
78 if ((e = __bt_search(t, key, &exact)) == NULL) in __bt_get()
80 if (!exact) { in __bt_get()
H A Dbt_put.c71 int dflags, exact, status; in __bt_put() local
157 if (t->bt_order == NOT || (e = bt_fast(t, key, data, &exact)) == NULL) in __bt_put()
158 if ((e = __bt_search(t, key, &exact)) == NULL) in __bt_put()
171 if (!exact) in __bt_put()
176 if (!exact || !F_ISSET(t, B_NODUPS)) in __bt_put()
H A Dbt_seq.c148 int exact; in __bt_seqset() local
165 return (__bt_first(t, key, ep, &exact)); in __bt_seqset()
234 int exact; in __bt_seqadv() local
251 return (__bt_first(t, &c->key, ep, &exact)); in __bt_seqadv()
H A Dbt_delete.c145 int exact, level; in __bt_stkacq() local
153 if ((e = __bt_search(t, &c->key, &exact)) == NULL) in __bt_stkacq()
212 if ((e = __bt_search(t, &c->key, &exact)) == NULL) in __bt_stkacq()
284 int deleted, exact, redo; in __bt_bdelete() local
289 loop: if ((e = __bt_search(t, key, &exact)) == NULL) in __bt_bdelete()
291 if (!exact) { in __bt_bdelete()
/dragonfly/contrib/tcsh-6/
H A Dtw.comp.c247 tw_match(const Char *str, const Char *pat, int exact) in tw_match() argument
250 int rv = exact ? Gmatch(estr = str, pat) : Gnmatch(str, pat, &estr); in tw_match()
252 xprintf("G%smatch(%s, ", exact ? "" : "n", short2str(str)); in tw_match()
525 int exact; in tw_complete() local
600 exact = 0; in tw_complete()
616 exact = 1; in tw_complete()
623 if ((n = tw_match(pos, ran, exact)) < 0) { in tw_complete()
/dragonfly/contrib/binutils-2.34/libiberty/
H A Dgetopt.c646 int exact = 0; in _getopt_internal() local
665 exact = 1; in _getopt_internal()
679 if (ambig && !exact) in _getopt_internal()
804 int exact = 0; in _getopt_internal() local
853 exact = 1; in _getopt_internal()
866 if (ambig && !exact) in _getopt_internal()
/dragonfly/contrib/binutils-2.27/libiberty/
H A Dgetopt.c647 int exact = 0; in _getopt_internal() local
666 exact = 1; in _getopt_internal()
680 if (ambig && !exact) in _getopt_internal()
805 int exact = 0; in _getopt_internal() local
854 exact = 1; in _getopt_internal()
867 if (ambig && !exact) in _getopt_internal()
/dragonfly/contrib/gdb-7/libiberty/
H A Dgetopt.c647 int exact = 0; in _getopt_internal() local
666 exact = 1; in _getopt_internal()
680 if (ambig && !exact) in _getopt_internal()
805 int exact = 0; in _getopt_internal() local
854 exact = 1; in _getopt_internal()
867 if (ambig && !exact) in _getopt_internal()
/dragonfly/contrib/gcc-4.7/libiberty/
H A Dgetopt.c647 int exact = 0; in _getopt_internal() local
666 exact = 1; in _getopt_internal()
680 if (ambig && !exact) in _getopt_internal()
805 int exact = 0; in _getopt_internal() local
854 exact = 1; in _getopt_internal()
867 if (ambig && !exact) in _getopt_internal()
/dragonfly/contrib/gcc-8.0/libiberty/
H A Dgetopt.c646 int exact = 0; in _getopt_internal() local
665 exact = 1; in _getopt_internal()
679 if (ambig && !exact) in _getopt_internal()
804 int exact = 0; in _getopt_internal() local
853 exact = 1; in _getopt_internal()
866 if (ambig && !exact) in _getopt_internal()
/dragonfly/sys/netproto/smb/
H A Dsmb_conn.c129 int exact = 1; in smb_sm_lookupint() local
150 exact = 0; in smb_sm_lookupint()
155 exact = 0; in smb_sm_lookupint()
158 if (!exact || in smb_sm_lookupint()
610 int exact = 1; in smb_vc_cmpshare() local
618 exact = 0; in smb_vc_cmpshare()
623 exact = 0; in smb_vc_cmpshare()
626 if (!exact) in smb_vc_cmpshare()
/dragonfly/contrib/gcc-8.0/gcc/
H A Dvec.h226 bool exact) in calculate_allocation() argument
228 if (exact) in calculate_allocation()
276 va_heap::reserve (vec<T, va_heap, vl_embed> *&v, unsigned reserve, bool exact in reserve()
280 = vec_prefix::calculate_allocation (v ? &v->m_vecpfx : 0, reserve, exact); in reserve()
351 va_gc::reserve (vec<T, A, vl_embed> *&v, unsigned reserve, bool exact in reserve()
355 = vec_prefix::calculate_allocation (v ? &v->m_vecpfx : 0, reserve, exact); in reserve()
668 vec_safe_reserve (vec<T, A, vl_embed> *&v, unsigned nelems, bool exact = false
673 A::reserve (v, nelems, exact PASS_MEM_STAT);
1547 vec<T, va_heap, vl_ptr>::reserve (unsigned nelems, bool exact MEM_STAT_DECL)
1565 va_heap::reserve (m_vec, nelems, exact PASS_MEM_STAT);
/dragonfly/contrib/cvs-1.12/lib/
H A Dgetopt.c508 int exact = 0; in _getopt_internal_r() local
527 exact = 1; in _getopt_internal_r()
544 if (ambig && !exact) in _getopt_internal_r()
841 int exact = 0; in _getopt_internal_r() local
915 exact = 1; in _getopt_internal_r()
928 if (ambig && !exact) in _getopt_internal_r()
/dragonfly/contrib/gdtoa/
H A Dstrtodg.c174 (d, fpi, exp, bits, exact, rd, irv) in rvOK() argument
175 U *d; FPI *fpi; Long *exp; ULong *bits; int exact, rd, *irv; in rvOK()
177 (U *d, FPI *fpi, Long *exp, ULong *bits, int exact, int rd, int *irv)
189 if (exact)
196 exact &&
217 if (!exact)
261 if (!lostbits && !exact)
/dragonfly/sbin/jscan/
H A Dsubs.c219 stringout(FILE *fp, char c, int exact) in stringout() argument
228 } else if (exact == 0) { in stringout()
/dragonfly/contrib/tre/lib/
H A DREADME56 bounds are the same as for the parallel exact matcher, but
57 in general this matcher is slower than the exact matcher.
/dragonfly/contrib/grep/lib/
H A Ddfa.h31 bool exact; member
/dragonfly/tools/regression/bin/sh/builtins/
H A Dcd8.03 # The exact wording of the error message is not standardized, but giving
/dragonfly/contrib/mpc/
H A DREADME9 GNU MPC is a complex floating-point library with exact rounding.
/dragonfly/contrib/mpfr/
H A DBUGS28 CPU) or the exact result is close to an overflow/underflow threshold.
59 the exact result is an exactly representable number or the middle of
/dragonfly/contrib/less/
H A Dopttbl.c797 int exact = 0; in findopt_name() local
824 if (!exact && len == maxlen) in findopt_name()
841 exact = (len == (int)strlen(oname->oname)); in findopt_name()

123456