Searched refs:threshold (Results 1 - 25 of 59) sorted by relevance

123

/netbsd-6-1-5-RELEASE/sys/arch/i386/stand/
H A DMakefile.inc12 -mllvm -inline-threshold=3 -mllvm -enable-load-pre=false
/netbsd-6-1-5-RELEASE/usr.sbin/mrouted/
H A Drsrr.h101 * The threshold indicates the ttl an outgoing packet needs in order to
110 u_char threshold; /* vif threshold ttl */ member in struct:rsrr_vif
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/
H A Dtuneup.c1 /* Tune various threshold of MPFR
220 static double domeasure (mpfr_prec_t *threshold, argument
240 *threshold = MPFR_PREC_MAX;
247 *threshold = 1;
266 The function doesn't depend on another threshold.
272 tune_simple_func (mpfr_prec_t *threshold, argument
284 d = domeasure (threshold, func, pmin);
289 *threshold = MPFR_PREC_MIN;
294 d = domeasure (threshold, func, pmin);
302 d = domeasure (threshold, fun
[all...]
H A Dhypot.c36 mpfr_prec_t threshold; local
80 threshold = (MAX (N, Nz) + (rnd_mode == MPFR_RNDN ? 1 : 0)) << 1;
86 if (diff_exp > threshold)
138 by the diff_exp > threshold code. */
H A Dspeed.c1 /* Tune various threshold of MPFR
137 static double domeasure (mpfr_prec_t *threshold, argument
168 The function doesn't depend on another threshold.
174 tune_simple_func (mpfr_prec_t *threshold, argument
184 measure = domeasure (threshold, func, p);
206 * Tune all the threshold of MPFR *
253 /* Tune mpfr_mul (threshold is in limbs, but it doesn't matter too much) */
H A Dvasprintf.c1735 where T is the threshold computed below and X is the exponent
1737 int threshold; local
1740 threshold = (spec.prec < 0) ? 6 : (spec.prec == 0) ? 1 : spec.prec;
1741 round_to_10_power (&x, p, threshold - 1, spec.rnd_mode);
1743 if (threshold > x && x >= -4)
1746 spec.prec = threshold - x - 1;
1753 spec.prec = threshold - 1;
/netbsd-6-1-5-RELEASE/usr.sbin/map-mbone/
H A Dmapper.c57 u_char threshold; /* TTL threshold to forward */ member in struct:neighbor
308 u_char metric, threshold, ncount; local
322 threshold = *p++;
358 || nb_i->threshold != nb_n->threshold)
361 "metric/threshold",
402 if (metric != nb->metric || threshold != nb->threshold)
405 "metric/threshold",
443 u_char metric, threshold, ncount, flags; local
[all...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/
H A Dtree-ssa-math-opts.c322 tree def, tree recip_def, int threshold)
330 && occ->num_divisions >= threshold)
369 insert_reciprocals (def_bsi, occ_child, def, recip_def, threshold);
431 int count = 0, threshold; local
446 threshold = targetm.min_divisions_for_recip_mul (TYPE_MODE (TREE_TYPE (def)));
447 if (count >= threshold)
452 insert_reciprocals (def_bsi, occ, def, NULL, threshold);
321 insert_reciprocals(block_stmt_iterator *def_bsi, struct occurrence *occ, tree def, tree recip_def, int threshold) argument
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/tui/
H A Dtui-source.c93 int offset, cur_line_no, cur_line, cur_len, threshold; local
107 /* Determine the threshold for the length of the
110 threshold = (line_width - 1) + offset;
119 (threshold + 1) * sizeof (char));
164 && (++i < threshold))
190 && i < threshold;
217 && i < threshold
H A Dtui-winsource.c656 int i, threshold; local
659 threshold = SCROLL_THRESHOLD;
661 threshold = 0;
663 while (i < win_info->generic.content_size - threshold
687 int i, threshold; local
690 threshold = SCROLL_THRESHOLD;
692 threshold = 0;
694 while (i < win_info->generic.content_size - threshold
/netbsd-6-1-5-RELEASE/gnu/dist/groff/src/roff/troff/
H A Ddictionary.h47 double threshold; member in class:dictionary
H A Ddictionary.cpp43 dictionary::dictionary(int n) : size(n), used(0), threshold(0.5), factor(1.5)
71 if ((double)used/(double)size >= threshold || used + 1 >= size) {
/netbsd-6-1-5-RELEASE/sys/dev/scsipi/
H A Dscsi_scanner.h82 u_int8_t threshold; member in struct:scsi_window_data
/netbsd-6-1-5-RELEASE/sys/arch/macppc/dev/
H A Dpbms.c89 * below a threshold. The raw finger position is computed as a
166 * threshold: Accumulated changes less than this are ignored. A good
187 int threshold; /* Changes less than this are ignored. */ member in struct:pbms_dev
205 .threshold = 5, \
352 sc->sc_theshold = pd->threshold;
695 detect_pos(int *sensors, int n_sensors, int threshold, int fact, argument
707 if (sensors[i] >= threshold) {
708 if (i == 0 || sensors[i - 1] < threshold)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dtree-ssa-math-opts.c300 tree def, tree recip_def, int threshold)
309 && occ->num_divisions >= threshold)
346 insert_reciprocals (def_gsi, occ_child, def, recip_def, threshold);
409 int count = 0, threshold; local
424 threshold = targetm.min_divisions_for_recip_mul (TYPE_MODE (TREE_TYPE (def)));
425 if (count >= threshold)
431 insert_reciprocals (def_gsi, occ, def, NULL, threshold);
299 insert_reciprocals(gimple_stmt_iterator *def_gsi, struct occurrence *occ, tree def, tree recip_def, int threshold) argument
/netbsd-6-1-5-RELEASE/sys/arch/powerpc/oea/
H A Dcpu_subr.c1155 int i, threshold, count; local
1157 threshold = 64; /* Half of the 7-bit sensor range */
1165 SPR_THRM_THRESHOLD(threshold) | SPR_THRM_VALID);
1174 * temperature was above the threshold
1176 threshold += 1 << i;
1178 /* Temperature was below the threshold */
1179 threshold -= 1 << i;
1183 threshold += 2;
1186 edata->value_cur = (threshold * 1000000) + 273150000;
/netbsd-6-1-5-RELEASE/sys/sys/
H A Drnd.h71 uint32_t threshold; member in struct:__anon9594
/netbsd-6-1-5-RELEASE/external/lgpl3/gmp/dist/tune/
H A Dtuneup.c42 method B faster. If the threshold is set making B used where A is faster
44 total badness is the sum of this over all sizes measured. The threshold
50 or faster on balance, then the threshold is set there. The same result
69 threshold is set to "size+1" to avoid karatsuba, or to "size" to use one
77 just a threshold based on comparing two routines (mpn_divrem_1 and
318 /* Return the threshold size based on the data accumulated. */
325 /* If the threshold is set at dat[0].size, any positive values are bad. */
478 one (mp_size_t *threshold, struct param_t *param) argument
499 *threshold = s.size+1;
502 *threshold
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/tcpdump/dist/
H A Dprint-slow.c169 u_int8_t threshold[8]; member in struct:slow_oam_link_event_t
610 EXTRACT_64BITS(&tlv.slow_oam_link_event->threshold),
/netbsd-6-1-5-RELEASE/external/bsd/wpa/dist/wpa_supplicant/
H A Ddriver_i.h476 int threshold, int hysteresis)
480 threshold, hysteresis);
475 wpa_drv_signal_monitor(struct wpa_supplicant *wpa_s, int threshold, int hysteresis) argument
/netbsd-6-1-5-RELEASE/sys/arch/vax/include/
H A Dqduser.h455 unsigned short threshold; /* threshold to trigger acc at */ member in struct:prg_cursor
/netbsd-6-1-5-RELEASE/usr.bin/window/
H A Dcompress.c473 short threshold = thresh(length); local
606 (p->bcount >= threshold
760 int threshold = thresh(length); local
780 if (p->code >= 0 || ccount >= threshold)
/netbsd-6-1-5-RELEASE/sys/kern/
H A Dkern_rndpool.c71 rp->stats.threshold = RND_ENTROPY_THRESHOLD;
/netbsd-6-1-5-RELEASE/sys/dev/qbus/
H A Dqduser.h448 unsigned short threshold; /* threshold to trigger acc at */ member in struct:prg_cursor
/netbsd-6-1-5-RELEASE/sys/external/bsd/drm/dist/shared-core/
H A Dsavage_bci.c41 uint32_t threshold = dev_priv->bci_threshold_hi; local
46 if (n > dev_priv->cob_size + SAVAGE_BCI_FIFO_SIZE - threshold)
54 if ((status & mask) < threshold)
61 DRM_INFO(" status=0x%08x, threshold=0x%08x\n", status, threshold);

Completed in 182 milliseconds

123