HomeSort by: relevance | last modified time | path
    Searched refs:threshold (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/usr.sbin/mrouted/
rsrr.h 101 * The threshold indicates the ttl an outgoing packet needs in order to
110 u_char threshold; /* vif threshold ttl */ member in struct:rsrr_vif
rsrr.c 238 vif_list[vifi].threshold = v->uv_threshold;
  /src/usr.sbin/map-mbone/
mapper.c 57 u_char threshold; /* TTL threshold to forward */ member in struct:neighbor
310 u_char metric, threshold, ncount; local
324 threshold = *p++;
360 || nb_i->threshold != nb_n->threshold)
363 "metric/threshold",
404 if (metric != nb->metric || threshold != nb->threshold)
407 "metric/threshold",
445 u_char metric, threshold, ncount, flags; local
    [all...]
  /src/sys/arch/arm/nvidia/
tegra124_cpu.c 191 int threshold = 0; local
214 threshold = 1;
222 threshold = 1;
229 return threshold;
  /src/sys/dev/scsipi/
scsi_scanner.h 82 u_int8_t threshold; member in struct:scsi_window_data
  /src/sys/arch/macppc/dev/
pbms.c 89 * 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, \
244 int sc_theshold; /* Threshold value. */
355 sc->sc_theshold = pd->threshold;
698 detect_pos(int *sensors, int n_sensors, int threshold, int fact,
710 if (sensors[i] >= threshold) {
711 if (i == 0 || sensors[i - 1] < threshold)
  /src/sys/external/bsd/drm2/dist/include/drm/
gpu_scheduler.h 210 int threshold)
212 return (s_job && atomic_inc_return(&s_job->karma) > threshold);
  /src/sys/sys/
rndio.h 55 uint32_t threshold; member in struct:__anon7670
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_fbc.c 129 /* Note: fbc.threshold == 1 for i8xx */
223 int threshold = dev_priv->fbc.threshold; local
227 threshold++;
229 switch (threshold) {
288 int threshold = dev_priv->fbc.threshold; local
307 threshold++;
309 switch (threshold) {
492 fbc->threshold = ret
    [all...]
intel_hotplug.c 70 * of interrupts exceeds a certain threshold, the interrupt is disabled for a
140 * @HPD_STORM_DEFAULT_THRESHOLD. Long IRQs count as +10 to this threshold, and
141 * short IRQs count as +1. If this threshold is exceeded, it's considered an
152 * The HPD threshold can be controlled through i915_hpd_storm_ctl in debugfs,
164 const int threshold = hpd->hpd_storm_threshold; local
167 if (!threshold ||
177 if (hpd->stats[pin].count > threshold) {
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/xsm/
flask_op.h 112 uint32_t threshold; member in struct:xen_flask_setavc_threshold
  /src/usr.sbin/diskpart/
diskpart.c 126 int threshold, numcyls[NPARTITIONS], startcyl[NPARTITIONS]; local
188 threshold = howmany(spc, badsecttable);
191 threshold = 0;
213 if (curcyl < dp->d_ncylinders - threshold)
  /src/sys/arch/riscv/dev/
plic.c 183 plic_set_threshold(struct plic_softc *sc, cpuid_t hartid, uint32_t threshold)
187 PLIC_WRITE(sc, addr, threshold);
  /src/sys/arch/powerpc/oea/
cpu_subr.c 1421 int i, threshold, count; local
1423 threshold = 64; /* Half of the 7-bit sensor range */
1431 SPR_THRM_THRESHOLD(threshold) | SPR_THRM_VALID);
1440 * temperature was above the threshold
1442 threshold += 1 << i;
1444 /* Temperature was below the threshold */
1445 threshold -= 1 << i;
1448 threshold += 2;
1451 edata->value_cur = (threshold * 1000000) + 273150000;
  /src/sys/dev/usb/
if_mue.c 279 uint32_t flow, threshold; local
331 threshold = 0x820;
335 threshold = 0x817;
338 threshold = 0x211;
341 threshold = 0;
345 /* Threshold value should be set before enabling flow. */
347 MUE_7500_FCT_FLOW : MUE_7800_FCT_FLOW, threshold);
if_axereg.h 299 int threshold; member in struct:ax88772b_mfb
  /src/sys/arch/vax/include/
qduser.h 455 unsigned short threshold; /* threshold to trigger acc at */ member in struct:prg_cursor
  /src/sys/dev/qbus/
qduser.h 448 unsigned short threshold; /* threshold to trigger acc at */ member in struct:prg_cursor
  /src/sys/external/bsd/drm/dist/shared-core/
savage_bci.c 41 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);
  /src/sys/external/bsd/drm2/dist/drm/savage/
savage_bci.c 55 uint32_t threshold = dev_priv->bci_threshold_hi; local
60 if (n > dev_priv->cob_size + SAVAGE_BCI_FIFO_SIZE - threshold)
68 if ((status & mask) < threshold)
75 DRM_INFO(" status=0x%08x, threshold=0x%08x\n", status, threshold);
  /src/sys/arch/arm/broadcom/
bcm53xx_eth.c 1976 size_t threshold = 5 * rxq->rxq_threshold / 4; local
1977 if (threshold >= rxq->rxq_last - rxq->rxq_first) {
1978 threshold = rxq->rxq_last - rxq->rxq_first - 1;
1984 rxq->rxq_threshold, threshold);
1985 rxq->rxq_threshold = threshold;
  /src/sys/dist/pf/net/
pf.c 647 pf_init_threshold(struct pf_threshold *threshold,
650 threshold->limit = limit * PF_THRESHOLD_MULT;
651 threshold->seconds = seconds;
652 threshold->count = 0;
653 threshold->last = time_second;
657 pf_add_threshold(struct pf_threshold *threshold)
659 u_int32_t t = time_second, diff = t - threshold->last;
661 if (diff >= threshold->seconds)
662 threshold->count = 0;
664 threshold->count -= threshold->count * diff
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/modules/color/
amdgpu_color_gamma.c 193 struct fixed31_32 threshold; local
201 threshold = dc_fixpt_from_fraction(1, 2);
203 if (dc_fixpt_lt(in_x, threshold)) {
224 struct fixed31_32 threshold; local
232 threshold = dc_fixpt_from_fraction(1, 12);
236 if (dc_fixpt_lt(x, threshold)) {
  /src/sys/netinet/
sctp_timer.c 135 struct sctp_nets *net, uint16_t threshold)
147 /* We had a threshold failure */
182 (u_int)threshold,
189 if (stcb->asoc.overall_error_count > threshold) {
757 /* We don't do normal threshold management on window probes */
896 * then increment the resend counter (after all the threshold management
933 /* Ok we found the cookie, threshold management next */
989 /* do threshold management */
1064 /* do threshold management */
1072 * the max_send_times is hit, threshold management wil
    [all...]
  /src/sys/arch/powerpc/booke/dev/
pq3etsec.c 2510 size_t threshold = 5 * rxq->rxq_threshold / 4; local
2511 if (threshold >= rxq->rxq_last - rxq->rxq_first) {
2512 threshold = rxq->rxq_last - rxq->rxq_first - 1;
2518 rxq->rxq_threshold, threshold);
2519 rxq->rxq_threshold = threshold;
2737 SYSCTL_DESCR("RX time threshold (0-65535)"),
2745 SYSCTL_DESCR("RX frame count threshold (0-255)"),
2753 SYSCTL_DESCR("TX time threshold (0-65535)"),
2761 SYSCTL_DESCR("TX frame count threshold (0-255)"),

Completed in 45 milliseconds

1 2