Home
last modified time | relevance | path

Searched full:threshold (Results 1 – 25 of 1368) sorted by relevance

12345678910>>...55

/freebsd-src/sys/contrib/pcg-c/include/
H A Dpcg_variants.h843 * bound, which we do by dropping output less than a threshold.
845 * threshold would be to do
847 * uint32_t threshold = 0x100000000ull % bound;
852 * uint32_t threshold = (0x100000000ull-bound) % bound;
876 uint8_t threshold = ((uint8_t)(-bound)) % bound; in pcg_oneseq_16_xsh_rs_8_boundedrand_r() local
879 if (r >= threshold) in pcg_oneseq_16_xsh_rs_8_boundedrand_r()
894 uint16_t threshold = ((uint16_t)(-bound)) % bound; in pcg_oneseq_32_xsh_rs_16_boundedrand_r() local
897 if (r >= threshold) in pcg_oneseq_32_xsh_rs_16_boundedrand_r()
912 uint32_t threshold = -bound % bound; in pcg_oneseq_64_xsh_rs_32_boundedrand_r() local
915 if (r >= threshold) in pcg_oneseq_64_xsh_rs_32_boundedrand_r()
[all …]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DInlineCost.h86 /// Objects of this type also provide the adjusted threshold for inlining
89 /// threshold for this cost metric.
96 /// The adjusted threshold against which this cost was computed. variable
97 int Threshold = 0;
109 InlineCost(int Cost, int Threshold, int StaticBonusApplied,
112 : Cost(Cost), Threshold(Threshold), in Cost()
120 static InlineCost get(int Cost, int Threshold, int StaticBonus = 0) {
123 return InlineCost(Cost, Threshold, StaticBonus);
137 explicit operator bool() const { return Cost < Threshold; }
[all...]
/freebsd-src/contrib/ntp/html/
H A Dclock.html17 <li class="inline"><a href="#panic">Panic Threshold</a></li>
27 <h4 id="panic">Panic Threshold</h4>
28threshold, the daemon <tt></tt> assumes something must be terribly wrong, so exits with a message …
30threshold, by default 128 ms, the spike is discarded. However, if offset spikes greater than the…
31threshold and stepout threshold can be changed using the <tt>step</tt> and <tt>stepout</tt> optio…
35 …. At the beginning of the interval the hold timer is set to the stepout threshold and decrements a…
40 …e algorithm and ends when an update is received following the stepout threshold. The clock phase…
44threshold. The interval continues as long as offsets are received that are greater than the step t…
56 …ock discipline until the time since the last update exceeds the stepout threshold. When this happe…
58threshold has occurred. Ignore the update and continue in this state as long as updates greater th…
/freebsd-src/lib/libpmc/pmu-events/arch/powerpc/power8/
H A Dpmc.json83 "BriefDescription": "Threshold counter exceeded a value of 1024",
89 "BriefDescription": "Threshold counter exceeded a value of 128",
95 "BriefDescription": "Threshold counter exceeded a value of 2048",
101 "BriefDescription": "Threshold counter exceed a count of 256",
107 "BriefDescription": "Threshold counter exceeded a value of 32",
113 "BriefDescription": "Threshold counter exceed a count of 4096",
119 "BriefDescription": "Threshold counter exceeded a value of 512",
126 "PublicDescription": "Threshold counter exceeded a value of 64"
131 "BriefDescription": "threshold exceeded",
137 "BriefDescription": "Threshold counter did not meet threshold",
/freebsd-src/sys/contrib/device-tree/Bindings/input/
H A Dadc-keys.yaml25 keyup-threshold-microvolt:
45 press-threshold-microvolt:
48 two values of press-threshold-microvolt may be the same. All values
49 of press-threshold-microvolt must be less than
50 keyup-threshold-microvolt.
54 - press-threshold-microvolt
60 - keyup-threshold-microvolt
83 keyup-threshold-microvolt = <2000000>;
88 press-threshold-microvolt = <1500000>;
94 press-threshold-microvolt = <1000000>;
[all …]
H A Dadc-keys.txt8 - keyup-threshold-microvolt: Voltage above or equal to which all the keys are
21 - press-threshold-microvolt: voltage above or equal to which this key is
24 No two values of press-threshold-microvolt may be the same.
25 All values of press-threshold-microvolt must be less than
26 keyup-threshold-microvolt.
36 keyup-threshold-microvolt = <2000000>;
41 press-threshold-microvolt = <1500000>;
47 press-threshold-microvolt = <1000000>;
53 press-threshold-microvolt = <500000>;
/freebsd-src/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageFilters.h82 /// Matches numbers that pass a certain threshold.
89 T Threshold; variable
91 StatisticThresholdFilter(Operation Op, T Threshold) in StatisticThresholdFilter() argument
92 : Op(Op), Threshold(Threshold) {} in StatisticThresholdFilter()
95 /// or greater than the certain threshold.
99 return Value < Threshold; in PassesThreshold()
101 return Value > Threshold; in PassesThreshold()
112 RegionCoverageFilter(Operation Op, double Threshold) in RegionCoverageFilter() argument
113 : StatisticThresholdFilter(Op, Threshold) {} in RegionCoverageFilter()
124 LineCoverageFilter(Operation Op, double Threshold) in LineCoverageFilter() argument
[all …]
/freebsd-src/sys/contrib/device-tree/Bindings/serial/
H A Dst,stm32-uart.yaml64 rx-threshold:
66 If value is set to 1, RX FIFO threshold is disabled.
70 tx-threshold:
72 If value is set to 1, TX FIFO threshold is disabled.
106 rx-threshold: false
107 tx-threshold: false
128 rx-threshold = <4>;
129 tx-threshold = <4>;
/freebsd-src/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineCost.cpp57 DefaultThreshold("inlinedefault-threshold", cl::Hidden, cl::init(225),
75 "inline-threshold", cl::Hidden, cl::init(225),
79 "inlinehint-threshold", cl::Hidden, cl::init(325),
80 cl::desc("Threshold for inlining functions with inline hint"));
83 ColdCallSiteThreshold("inline-cold-callsite-threshold", cl::Hidden,
85 cl::desc("Threshold for inlining cold callsites"));
111 // We introduce this threshold to help performance of instrumentation based
115 "inlinecold-threshold", cl::Hidden, cl::init(45),
116 cl::desc("Threshold for inlining functions with cold attribute"));
119 HotCallSiteThreshold("hot-callsite-threshold", c
564 int Threshold = 0; global() member in __anon3da3c46d0111::InlineCostCallAnalyzer
958 APInt Threshold(128, PSI->getOrCompHotCountThreshold()); costBenefitAnalysis() local
1163 int Threshold = 5; global() member in __anon3da3c46d0111::InlineCostFeaturesAnalyzer
3153 getInlineParams(int Threshold) getInlineParams() argument
[all...]
/freebsd-src/sys/netinet/
H A Dip_mroute.h149 * measured bandwidth is above or below a threshold.
152 * bandwidth used by some data flow is above or below some threshold.
153 * This interface allows the userland to specify the threshold (in
160 * The threshold is set in packets and/or bytes per_interval.
167 * pass the threshold we deliver an upcall and we are done.
174 * When the timer fires, we compare the value with the threshold,
189 #define BW_UPCALL_UNIT_PACKETS (1 << 0) /* threshold (in packets) */
190 #define BW_UPCALL_UNIT_BYTES (1 << 1) /* threshold (in bytes) */
191 #define BW_UPCALL_GEQ (1 << 2) /* upcall if bw >= threshold */
192 #define BW_UPCALL_LEQ (1 << 3) /* upcall if bw <= threshold */
[all …]
/freebsd-src/contrib/llvm-project/llvm/include/llvm/Remarks/
H A DHotnessThresholdParser.h1 //===- HotnessThresholdParser.h - Parser for hotness threshold --*- C++ -*-===//
11 /// remarks hotness threshold that supports both int and a special 'auto' value.
24 // Parse remarks hotness threshold argument value.
26 // 1. integer: manually specified threshold; or
27 // 2. string 'auto': automatically get threshold from profile summary.
40 // Negative integer effectively means no threshold in parseHotnessThresholdOption()
44 // A simple CL parser for '*-remarks-hotness-threshold='
/freebsd-src/sys/contrib/device-tree/Bindings/usb/
H A Ddwc3.txt47 - snps,lpm-nyet-threshold: LPM NYET threshold
86 - snps,hird-threshold: HIRD threshold
92 - snps,rx-thr-num-pkt-prd: periodic ESS RX packet threshold count - host mode
95 section 1.2.4) to enable periodic ESS RX threshold.
99 enable periodic ESS RX threshold.
100 - snps,tx-thr-num-pkt-prd: periodic ESS TX packet threshold count - host mode
103 section 1.2.3) to enable periodic ESS TX threshold.
107 enable periodic ESS TX threshold.
/freebsd-src/sys/contrib/device-tree/Bindings/sound/
H A Dcs35l36.txt73 - cirrus,classh-weak-fet-thld-millivolt : Weak-FET amplifier drive threshold.
74 Configures the signal threshold at which the PWM output stage enters
77 - cirrus,temp-warn-threshold : Amplifier overtemperature warning threshold.
78 Configures the threshold at which the overtemperature warning condition occurs.
79 When the threshold is met, the overtemperature warning attenuation is applied
110 - cirrus,vpbr-thld : Initial VPBR threshold. Configures the VP brownout
111 threshold voltage
153 cirrus,temp-warn-threshold = <0x01>;
H A Dnau8824.txt29 - nuvoton,sar-threshold-num: Number of buttons supported
30 …- nuvoton,sar-threshold: Impedance threshold for each button. Array that contains up to 8 buttons …
33 Refer datasheet section 10.2 for more information about threshold calculation.
80 nuvoton,sar-threshold-num = <4>;
81 nuvoton,sar-threshold = <0xc 0x1e 0x38 0x60>;
H A Dnau8825.txt33 - nuvoton,sar-threshold-num: Number of buttons supported
34 …- nuvoton,sar-threshold: Impedance threshold for each button. Array that contains up to 8 buttons …
37 Refer datasheet section 10.2 for more information about threshold calculation.
98 nuvoton,sar-threshold-num = <4>;
99 nuvoton,sar-threshold = <0xc 0x1e 0x38 0x60>;
/freebsd-src/sys/arm/nvidia/
H A Dtegra_efuse.c140 struct tegra_sku_info *sku, int *threshold) in tegra124_rev_sku_to_speedo_ids() argument
147 *threshold = TEGRA124_THRESHOLD_INDEX_0; in tegra124_rev_sku_to_speedo_ids()
165 *threshold = TEGRA124_THRESHOLD_INDEX_0; in tegra124_rev_sku_to_speedo_ids()
173 *threshold = TEGRA124_THRESHOLD_INDEX_1; in tegra124_rev_sku_to_speedo_ids()
181 *threshold = TEGRA124_THRESHOLD_INDEX_1; in tegra124_rev_sku_to_speedo_ids()
192 int i, threshold; in tegra124_init() local
207 tegra124_rev_sku_to_speedo_ids(sc, sku, &threshold); in tegra124_init()
211 tegra124_soc_process_speedos[threshold][i]) in tegra124_init()
218 tegra124_cpu_process_speedos[threshold][i]) in tegra124_init()
225 tegra124_gpu_process_speedos[threshold][ in tegra124_init()
297 tegra210_rev_sku_to_speedo_ids(struct tegra_efuse_softc * sc,struct tegra_sku_info * sku,int speedo_rev,int * threshold) tegra210_rev_sku_to_speedo_ids() argument
332 int i, threshold, speedo_rev; tegra210_init() local
[all...]
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/
H A DSpillPlacement.cpp90 /// SumLinkWeights - Cached sum of the weights of all links + ThresHold.
103 // true when the RHS saturates. Note that SumLinkWeights includes Threshold. in mustSpill()
109 void clear(BlockFrequency Threshold) { in clear()
113 SumLinkWeights = Threshold; in clear()
151 bool update(const Node nodes[], BlockFrequency Threshold) { in update()
171 if (SumN >= SumP + Threshold) in update()
173 else if (SumP >= SumN + Threshold) in update()
226 nodes[n].clear(Threshold); in activate()
245 /// Set the threshold for a given entry frequency.
247 /// Set the threshold relativ
[all...]
/freebsd-src/sys/contrib/device-tree/Bindings/power/supply/
H A Dmax17042_battery.txt16 Optional threshold properties :
18 - maxim,cold-temp : Temperature threshold to report battery
20 - maxim,over-heat-temp : Temperature threshold to report battery
22 - maxim,dead-volt : Voltage threshold to report battery
24 - maxim,over-volt : Voltage threshold to report battery
/freebsd-src/lib/msun/man/
H A Dieee.3166 Range: Overflow threshold = 2.0**128 = 3.4e38
167 Underflow threshold = 0.5**126 = 1.2e\-38
201 Range: Overflow threshold = 2.0**1024 = 1.8e308
202 Underflow threshold = 0.5**1022 = 2.2e\-308
232 Range: Overflow threshold = 2.0**16384 = 1.2e4932
233 Underflow threshold = 0.5**16382 = 3.4e\-4932
263 Range: Overflow threshold = 2.0**16384 = 1.2e4932
264 Underflow threshold = 0.5**16382 = 3.4e\-4932
296 underflow threshold, or to test the Underflow
308 underflow threshold, as is almost always the case,
[all …]
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.cpp36 "amdgpu-unroll-threshold-private",
37 cl::desc("Unroll threshold for AMDGPU if private memory used in a loop"),
41 "amdgpu-unroll-threshold-local",
42 cl::desc("Unroll threshold for AMDGPU if local memory used in a loop"),
46 "amdgpu-unroll-threshold-if",
47 cl::desc("Unroll threshold increment for AMDGPU for each if statement inside loop"),
57 cl::desc("Inner loop block size threshold to analyze in unroll for AMDGPU"),
107 UP.Threshold = in getUnrollingPreferences()
108 F.getFnAttributeAsParsedInteger("amdgpu-unroll-threshold", 300); in getUnrollingPreferences()
126 // If this loop has the amdgpu.loop.unroll.threshold metadat in getUnrollingPreferences()
184 unsigned Threshold = 0; getUnrollingPreferences() local
1266 unsigned Threshold = adjustInliningThresholdUsingCallee(CB, TLI, this); adjustInliningThreshold() local
1300 unsigned Threshold = ArgAllocaCost * getInliningThresholdMultiplier(); getCallerAllocaCost() local
[all...]
/freebsd-src/sys/contrib/device-tree/src/arm64/rockchip/
H A Drk3308-evb.dts24 keyup-threshold-microvolt = <1800000>;
29 press-threshold-microvolt = <18000>;
38 keyup-threshold-microvolt = <1800000>;
43 press-threshold-microvolt = <1130000>;
49 press-threshold-microvolt = <901000>;
55 press-threshold-microvolt = <624000>;
61 press-threshold-microvolt = <300000>;
67 press-threshold-microvolt = <18000>;
/freebsd-src/sys/contrib/device-tree/Bindings/regulator/
H A Dvctrl.txt17 - ovp-threshold-percent : overvoltage protection (OVP) threshold of the
27 each step is within the OVP threshold.
31 This value is required when ovp-threshold-percent is
48 ovp-threshold-percent = <16>;
/freebsd-src/sys/contrib/dev/iwlwifi/fw/api/
H A Dpower.h71 /* Radio LP RX Energy Threshold measured in dBm */
208 * @heavy_tx_thld_packets: TX threshold measured in number of packets
209 * @heavy_rx_thld_packets: RX threshold measured in number of packets
210 * @heavy_tx_thld_percentage: TX threshold measured in load's percentage
211 * @heavy_rx_thld_percentage: RX threshold measured in load's percentage
616 * passed beacon is greater than this threshold. Zero value means that
622 * and last passed beacon is greater than this threshold. Zero value
626 * calculated for current beacon is less than the threshold, use
627 * Roaming Energy Delta Threshold, otherwise use normal Energy Delta
628 * Threshold
[all...]
/freebsd-src/sys/contrib/device-tree/src/arm64/amlogic/
H A Dmeson-gxbb-p200.dts35 keyup-threshold-microvolt = <1800000>;
40 press-threshold-microvolt = <900000>; /* 50% */
46 press-threshold-microvolt = <684000>; /* 38% */
52 press-threshold-microvolt = <468000>; /* 26% */
58 press-threshold-microvolt = <252000>; /* 14% */
64 press-threshold-microvolt = <0>; /* 0% */
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopUnrollPass.cpp83 UnrollThreshold("unroll-threshold", cl::Hidden,
84 cl::desc("The cost threshold for loop unrolling"));
88 "unroll-optsize-threshold", cl::init(0), cl::Hidden,
89 cl::desc("The cost threshold for loop unrolling when optimizing for "
93 "unroll-partial-threshold", cl::Hidden,
94 cl::desc("The cost threshold for partial loop unrolling"));
97 "unroll-max-percent-threshold-boost", cl::init(400), cl::Hidden,
99 "to the threshold when aggressively unrolling a loop due to the "
102 "threshold to DefaultThreshold*std::min(MaxPercentThresholdBoost, "
128 "-unroll-threshold loo
1369 LoopUnroll(int OptLevel=2,bool OnlyWhenForced=false,bool ForgetAllSCEV=false,std::optional<unsigned> Threshold=std::nullopt,std::optional<unsigned> Count=std::nullopt,std::optional<bool> AllowPartial=std::nullopt,std::optional<bool> Runtime=std::nullopt,std::optional<bool> UpperBound=std::nullopt,std::optional<bool> AllowPeeling=std::nullopt,std::optional<bool> AllowProfileBasedPeeling=std::nullopt,std::optional<unsigned> ProvidedFullUnrollMaxCount=std::nullopt) LoopUnroll() argument
[all...]

12345678910>>...55