Home
last modified time | relevance | path

Searched refs:thresholdHigh (Results 1 – 8 of 8) sorted by relevance

/dports/net/olsrd/olsrd-0.9.8/lib/info.java/org.olsr.v1.info.api/src/org/olsr/v1/info/api/dto/
H A DJsonInfoConfigHysteresis.java16 private double thresholdHigh = 0.0; field in JsonInfoConfigHysteresis
67 return this.thresholdHigh; in getThresholdHigh()
74 public void setThresholdHigh(final double thresholdHigh) { in setThresholdHigh() argument
75 this.thresholdHigh = thresholdHigh; in setThresholdHigh()
88 temp = Double.doubleToLongBits(this.thresholdHigh); in hashCode()
131 result = Double.compare(this.thresholdHigh, other.thresholdHigh); in compareTo()
149 builder.append(this.thresholdHigh); in toString()
/dports/games/libretro-mame2003_plus/mame2003-plus-libretro-17e9889/src/sound/
H A Ddisc_dev.c46 double thresholdHigh; // rising threshold member
673 if (vCnext >= context->thresholdHigh) in dsd_566_step()
675 if (vCnext > context->thresholdHigh) in dsd_566_step()
678 dt = DSD_566_C * (vCnext - context->thresholdHigh) / i; in dsd_566_step()
680 vC = context->thresholdHigh; in dsd_566_step()
740 context->thresholdHigh = context->vDiff / 2 + info->vNeg; in dsd_566_reset()
741 context->thresholdLow = context->thresholdHigh - (0.2 * context->vDiff); in dsd_566_reset()
743 context->vSqrLow = context->thresholdHigh; in dsd_566_reset()
750 context->triOffset = context->thresholdHigh - (0.1 * context->vDiff); in dsd_566_reset()
H A Ddisc_wav.c68 double thresholdHigh; // rising threshold member
507 if (vCnext >= context->thresholdHigh) in dss_op_amp_osc_step()
509 if (vCnext > context->thresholdHigh) in dss_op_amp_osc_step()
512 dt = info->c * (vCnext - context->thresholdHigh) / context->iCharge[1]; in dss_op_amp_osc_step()
514 vC = context->thresholdHigh; in dss_op_amp_osc_step()
592 context->thresholdHigh = (i1 + i2) * info->r3 + OP_AMP_NORTON_VBE; in dss_op_amp_osc_reset()
615 context->thresholdHigh = i1 * info->r3 + OP_AMP_NORTON_VBE; in dss_op_amp_osc_reset()
629 context->thresholdHigh = (context->temp1 + context->temp2) * context->temp3; in dss_op_amp_osc_reset()
641 …->type,context->iCharge[0],context->iCharge[1],context->thresholdLow,context->thresholdHigh,i1,i2); in dss_op_amp_osc_reset()
/dports/graphics/svgalib/svgalib-1.4.3/src/
H A Dsis.c981 sis_CPUthreshold(int dotClock,int bpp,int *thresholdLow,int *thresholdHigh) in sis_CPUthreshold() argument
1008 *thresholdHigh = 0x1F; in sis_CPUthreshold()
1029 *thresholdHigh = ((bpp*dotClock) / mclk)+gap+safetymargin; in sis_CPUthreshold()
1039 if ( *thresholdHigh > (bpp < 24 ? 0x10:0x0f) ) { in sis_CPUthreshold()
1040 *thresholdHigh = (bpp < 24 ? 0x10:0x0f); in sis_CPUthreshold()
/dports/astro/marble/marble-21.12.3/src/lib/marble/
H A DAutoNavigation.cpp281 qreal thresholdHigh = 120; in adjustZoom() local
287 else if ( remainingTime > thresholdHigh ) { in adjustZoom()
/dports/misc/orange3/orange3-3.29.1/Orange/widgets/utils/tests/
H A Dtest_colorgradientselection.py51 self.assertEqual(w.thresholdHigh(), 0.1)
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/jnisrc/fast_jai/
H A DblendFunctions.cpp236 …public :BandBlendMode(ushort thresholdLow, ushort transitionLow, ushort thresholdHigh, ushort tran… in BandBlendMode() argument
237 shadows(thresholdHigh, transitionHigh), in BandBlendMode()
/dports/misc/orange3/orange3-3.29.1/Orange/widgets/utils/
H A Dcolorgradientselection.py135 def thresholdHigh(self) -> float: member in ColorGradientSelection