Home
last modified time | relevance | path

Searched refs:bandwidth (Results 126 – 150 of 14226) sorted by relevance

12345678910>>...570

/dports/devel/spark/spark-2.1.1/mllib/src/main/scala/org/apache/spark/mllib/stat/
H A DKernelDensity.scala46 private var bandwidth: Double = 1.0
55 def setBandwidth(bandwidth: Double): this.type = {
56 require(bandwidth > 0, s"Bandwidth must be positive, but got $bandwidth.")
57 this.bandwidth = bandwidth
85 val bandwidth = this.bandwidth constant
91 val logStandardDeviationPlusHalfLog2Pi = math.log(bandwidth) + 0.5 * math.log(2 * math.Pi)
96 x._1(i) += normPdf(y, bandwidth, logStandardDeviationPlusHalfLog2Pi, points(i))
/dports/audio/mixxx/mixxx-2.3.0/src/effects/builtin/
H A Dreverbeffect.cpp38 EffectManifestParameterPointer bandwidth = pManifest->addParameter(); in getManifest() local
39 bandwidth->setId("bandwidth"); in getManifest()
40 bandwidth->setName(QObject::tr("Bandwidth")); in getManifest()
41 bandwidth->setShortName(QObject::tr("BW")); in getManifest()
42 bandwidth->setDescription(QObject::tr( in getManifest()
45 bandwidth->setControlHint(EffectManifestParameter::ControlHint::KNOB_LINEAR); in getManifest()
46 bandwidth->setSemanticHint(EffectManifestParameter::SemanticHint::UNKNOWN); in getManifest()
47 bandwidth->setUnitsHint(EffectManifestParameter::UnitsHint::UNKNOWN); in getManifest()
48 bandwidth->setMinimum(0); in getManifest()
49 bandwidth->setDefault(1); in getManifest()
[all …]
/dports/net-mgmt/py-pyeapi/pyeapi-0.8.4/test/fixtures/
H A Drunning_config.vrf105 no bandwidth percent
111 no bandwidth percent
117 no bandwidth percent
123 no bandwidth percent
129 no bandwidth percent
135 no bandwidth percent
141 no bandwidth percent
147 no bandwidth percent
153 no bandwidth percent
159 no bandwidth percent
[all …]
/dports/devel/libvirt/libvirt-7.10.0/src/esx/
H A Desx_network_driver.c222 if (!bandwidth->in || !bandwidth->out || in esxBandwidthToShapingPolicy()
223 bandwidth->in->average != bandwidth->out->average || in esxBandwidthToShapingPolicy()
224 bandwidth->in->peak != bandwidth->out->peak || in esxBandwidthToShapingPolicy()
225 bandwidth->in->burst != bandwidth->out->burst) { in esxBandwidthToShapingPolicy()
231 if (bandwidth->in->average == 0 && bandwidth->in->peak == 0 && in esxBandwidthToShapingPolicy()
232 bandwidth->in->burst == 0) { in esxBandwidthToShapingPolicy()
241 if (bandwidth->in->average > 0) { in esxBandwidthToShapingPolicy()
249 if (bandwidth->in->peak > 0) { in esxBandwidthToShapingPolicy()
257 if (bandwidth->in->burst > 0) { in esxBandwidthToShapingPolicy()
426 if (def->bandwidth) { in esxNetworkDefineXMLFlags()
[all …]
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bbas/bsta/
H A Dbsta_parzen_sphere.h45 bsta_parzen_sphere(typename bsta_parzen<T,n>::sample_vector const& samples, T bandwidth = T(1)) :
46 bsta_parzen<T,n>(samples), bandwidth_(bandwidth),
52 T bandwidth() const {return bandwidth_;} in bandwidth() function
54 void set_bandwidth(T bandwidth) { bandwidth_ = bandwidth; } in set_bandwidth() argument
94 T bandwidth = T(1)): bsta_parzen<T,1>(samples),
95 bandwidth_(bandwidth), bandwidth_adapted_(false){}
100 T bandwidth() const {return bandwidth_;} in bandwidth() function
102 void set_bandwidth(T bandwidth) { bandwidth_ = bandwidth; } in set_bandwidth() argument
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/
H A DReplicationThrottler.java31 private final double bandwidth; field in ReplicationThrottler
40 public ReplicationThrottler(final double bandwidth) { in ReplicationThrottler() argument
41 this.bandwidth = bandwidth; in ReplicationThrottler()
42 this.enabled = this.bandwidth > 0; in ReplicationThrottler()
74 if ((double)this.cyclePushSize > bandwidth) { in getNextSleepInterval()
75 double cycles = Math.ceil((double)this.cyclePushSize / bandwidth); in getNextSleepInterval()
91 (double)(this.cyclePushSize + size) >= bandwidth) { in getNextSleepInterval()
/dports/net/storj/storj-1.45.3/web/multinode/src/app/components/bandwidth/
H A DBandwidthChart.vue6 <p class="bandwidth-chart__data-dimension">{{ chartDataDimension }}</p>
8 id="bandwidth-chart"
26 import { BandwidthRollup } from '@/bandwidth';
30 * stores bandwidth data for bandwidth chart's tooltip
40 public constructor(bandwidth: BandwidthRollup) {
45 this.auditEgress = Size.toBase10String(bandwidth.egress.audit);
46 this.date = bandwidth.intervalStart.toUTCString().slice(0, 16);
84 … const tooltipParams = new TooltipParams(tooltipModel, 'bandwidth-chart', 'bandwidth-tooltip',
131 .bandwidth-chart {
142 #bandwidth-tooltip {
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/net/third_party/quiche/src/quic/core/
H A Dquic_sustained_bandwidth_recorder_test.cc25 QuicBandwidth bandwidth = in TEST_F() local
32 recorder.RecordEstimate(in_recovery, in_slow_start, bandwidth, estimate_time, in TEST_F()
39 recorder.RecordEstimate(in_recovery, in_slow_start, bandwidth, estimate_time, in TEST_F()
46 recorder.RecordEstimate(in_recovery, in_slow_start, bandwidth, estimate_time, in TEST_F()
49 EXPECT_EQ(recorder.BandwidthEstimate(), bandwidth); in TEST_F()
58 recorder.RecordEstimate(in_recovery, in_slow_start, bandwidth, estimate_time, in TEST_F()
61 recorder.RecordEstimate(in_recovery, in_slow_start, bandwidth, estimate_time, in TEST_F()
63 EXPECT_EQ(recorder.BandwidthEstimate(), bandwidth); in TEST_F()
105 QuicBandwidth bandwidth = in TEST_F() local
112 recorder.RecordEstimate(in_recovery, in_slow_start, bandwidth, estimate_time, in TEST_F()
[all …]
/dports/net/ns3/ns-allinone-3.35/ns-3.35/src/spectrum/test/
H A Dtv-spectrum-transmitter-test.cc169 for (double bandwidth = 100; bandwidth < 1e15; bandwidth *= 10) in TvSpectrumTransmitterTestSuite() local
174 bandwidth, in TvSpectrumTransmitterTestSuite()
183 for (double bandwidth = 100; bandwidth < 1e15; bandwidth *= 10) in TvSpectrumTransmitterTestSuite() local
188 bandwidth, in TvSpectrumTransmitterTestSuite()
197 for (double bandwidth = 100; bandwidth < 1e15; bandwidth *= 10) in TvSpectrumTransmitterTestSuite() local
202 bandwidth, in TvSpectrumTransmitterTestSuite()
/dports/www/chromium-legacy/chromium-88.0.4324.182/net/third_party/quiche/src/quic/core/
H A Dquic_sustained_bandwidth_recorder_test.cc25 QuicBandwidth bandwidth = in TEST_F() local
32 recorder.RecordEstimate(in_recovery, in_slow_start, bandwidth, estimate_time, in TEST_F()
39 recorder.RecordEstimate(in_recovery, in_slow_start, bandwidth, estimate_time, in TEST_F()
46 recorder.RecordEstimate(in_recovery, in_slow_start, bandwidth, estimate_time, in TEST_F()
49 EXPECT_EQ(recorder.BandwidthEstimate(), bandwidth); in TEST_F()
58 recorder.RecordEstimate(in_recovery, in_slow_start, bandwidth, estimate_time, in TEST_F()
61 recorder.RecordEstimate(in_recovery, in_slow_start, bandwidth, estimate_time, in TEST_F()
63 EXPECT_EQ(recorder.BandwidthEstimate(), bandwidth); in TEST_F()
105 QuicBandwidth bandwidth = in TEST_F() local
112 recorder.RecordEstimate(in_recovery, in_slow_start, bandwidth, estimate_time, in TEST_F()
[all …]
/dports/math/openturns/openturns-1.18/python/src/
H A DHistogramFactory_doc.i.in12 See the `computeBandwidth` method for the bandwidth selection.
29 Create an histogram from a bandwidth:
33 >>> bandwidth = 0.5
34 >>> histogram = ot.HistogramFactory().build(sample, bandwidth)
45 Compute bandwidth with default robust estimator:
54 Compute bandwidth with optimal estimator:
82 build(*sample*, *bandwidth*)
92 bandwidth : float
107 "Compute the bandwidth.
174 bandwidth : float
[all …]
/dports/science/afni/afni-AFNI_21.3.16/src/mpegtoppm_dir/test/
H A Dtests19 tcela/tcela-8-fp-dp # OK - field pictures, DMV MC bandwidth
26 ibm/ibm-bw-v3 # OK - DMV, decoder bandwidth, skipped MB
29 nokia/nokia6-60 # OK - DMV, MC bandwidth
30 nokia/nokia6 # OK - DMV, MC bandwidth
31 nokia/nokia_7 # OK - DMV, MC bandwidth
33 toshiba/toshiba_DPall-0 # OK - DMV, MC bandwidth
34 gi/gi4 # OK - intra dc precision, MC bandwidth
35 gi/gi6 # OK - intra dc precision, MC bandwidth
36 gi/gi7 # OK - intra dc precision, MC bandwidth
37 gi/gi_9 # OK - intra dc precision, MC bandwidth
[all …]
/dports/sysutils/cpu-x/CPU-X-4.0.1/src/bandwidth/
H A DREADME.md1 # Bandwidth: a memory bandwidth benchmark
3 …of the [GNU GPL v2](https://raw.githubusercontent.com/X0rg/CPU-X/master/src/bandwidth/COPYING.txt).
9 You can find the official web page of this project here: https://zsmith.co/bandwidth.html
10 This is based on bandwidth [1.5.1](https://zsmith.co/archives/bandwidth-1.5.1.tar.gz).
19 You can reproduce the output of `bandwidth` command by using `cpu-x --bandwidth`.
20 It will produce a graph named `bandwidth.bmp` in the current working directory.
/dports/math/R-cran-prodlim/prodlim/R/
H A Dneighborhood.R34 "neighborhood" <- function(x,bandwidth=NULL,kernel="box"){ argument
46 if (!length(bandwidth)){ ## need a bandwidth (dpik is from KernSmooth)
48 bandwidth <- KernSmooth::dpik(cumtabx/N,kernel="box")
51 if (bandwidth=="smooth") bandwidth <- N^{-1/4}
52 radius <- floor(bandwidth*N)
77 bandwidth=bandwidth, nameattr
/dports/net/py-sbws/sbws-25aa5b232ca26729e1bf30a7c5a54fd22f5c3eeb/docs/source/
H A Dgenerator.rst13 #. Write the bandwidth file
19 Filtering the bandwidth measurements
22 Each relay bandwidth measurements are selected in the following way:
24 #. At least two bandwidth measurements (``Result`` s) MUST have been obtained
41 .. _scaling-the-bandwidth-measurements:
43 Scaling the bandwidth measurements
46 Consensus bandwidth obtained by new implementations MUST be comparable to the
47 consensus bandwidth, therefore they MUST implement torflow_scaling_.
57 Writing the bandwidth file
60 The bandwidth file format is defined in the bandwidth_file_spec_.
[all …]
/dports/devel/hadoop/hadoop-1.2.1/src/hdfs/org/apache/hadoop/hdfs/server/protocol/
H A DBalancerBandwidthCommand.java48 private long bandwidth; field in BalancerBandwidthCommand
63 public BalancerBandwidthCommand(long bandwidth) { in BalancerBandwidthCommand() argument
65 this.bandwidth = bandwidth; in BalancerBandwidthCommand()
83 return this.bandwidth; in getBalancerBandwidthValue()
105 out.writeLong(this.bandwidth); in write()
116 this.bandwidth = in.readLong(); in readFields()
/dports/devel/p5-Sys-Virt/Sys-Virt-1.1.1/lib/Sys/Virt/
H A DDomain.pm925 my $bandwidth = shift;
932 $params->{&Sys::Virt::Domain::MIGRATE_PARAM_BANDWIDTH} = $bandwidth
933 if defined $bandwidth;
954 my $bandwidth = shift;
963 $params->{&Sys::Virt::Domain::MIGRATE_PARAM_BANDWIDTH} = $bandwidth
964 if defined $bandwidth;
1001 my $bandwidth = shift;
1008 $params->{&Sys::Virt::Domain::MIGRATE_PARAM_BANDWIDTH} = $bandwidth
1009 if defined $bandwidth;
1030 my $bandwidth = shift;
[all …]
/dports/math/mlpack/mlpack-3.4.2/src/mlpack/core/kernels/
H A Dcauchy_kernel.hpp50 CauchyKernel(double bandwidth = 1.0) : bandwidth(bandwidth) in CauchyKernel() argument
68 std::pow(metric::EuclideanDistance::Evaluate(a, b) / bandwidth, 2))); in Evaluate()
77 ar & BOOST_SERIALIZATION_NVP(bandwidth); in serialize()
82 double bandwidth; member in mlpack::kernel::CauchyKernel
/dports/net/freeswitch/freeswitch-1.10.3.-release/src/mod/codecs/mod_isac/
H A Dencode_lpc_swb.c50 WebRtc_Word16 bandwidth) in WebRtcIsac_RemoveLarMean() argument
56 switch(bandwidth) in WebRtcIsac_RemoveLarMean()
105 WebRtc_Word16 bandwidth) in WebRtcIsac_DecorrelateIntraVec() argument
114 switch(bandwidth) in WebRtcIsac_DecorrelateIntraVec()
179 WebRtc_Word16 bandwidth) in WebRtcIsac_DecorrelateInterVec() argument
187 switch(bandwidth) in WebRtcIsac_DecorrelateInterVec()
256 switch(bandwidth) in WebRtcIsac_QuantizeUncorrLar()
325 switch(bandwidth) in WebRtcIsac_DequantizeLpcParam()
383 switch(bandwidth) in WebRtcIsac_CorrelateIntraVec()
446 switch(bandwidth) in WebRtcIsac_CorrelateInterVec()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dencode_lpc_swb.c48 int16_t bandwidth) in WebRtcIsac_RemoveLarMean() argument
54 switch(bandwidth) in WebRtcIsac_RemoveLarMean()
103 int16_t bandwidth) in WebRtcIsac_DecorrelateIntraVec() argument
112 switch(bandwidth) in WebRtcIsac_DecorrelateIntraVec()
177 int16_t bandwidth) in WebRtcIsac_DecorrelateInterVec() argument
185 switch(bandwidth) in WebRtcIsac_DecorrelateInterVec()
254 switch(bandwidth) in WebRtcIsac_QuantizeUncorrLar()
323 switch(bandwidth) in WebRtcIsac_DequantizeLpcParam()
381 switch(bandwidth) in WebRtcIsac_CorrelateIntraVec()
444 switch(bandwidth) in WebRtcIsac_CorrelateInterVec()
[all …]
/dports/net/sems/sems-f89581a/core/plug-in/isac/libisac/
H A Dencode_lpc_swb.c50 WebRtc_Word16 bandwidth)
56 switch(bandwidth)
105 WebRtc_Word16 bandwidth) in WebRtcIsac_RateAllocation()
114 switch(bandwidth) in WebRtcIsac_RateAllocation()
179 WebRtc_Word16 bandwidth)
187 switch(bandwidth)
256 switch(bandwidth)
325 switch(bandwidth)
383 switch(bandwidth)
446 switch(bandwidth)
[all …]
/dports/net-im/tg_owt/tg_owt-d578c76/src/modules/audio_coding/codecs/isac/main/source/
H A Dencode_lpc_swb.c48 int16_t bandwidth) in WebRtcIsac_RemoveLarMean() argument
54 switch(bandwidth) in WebRtcIsac_RemoveLarMean()
103 int16_t bandwidth) in WebRtcIsac_DecorrelateIntraVec() argument
112 switch(bandwidth) in WebRtcIsac_DecorrelateIntraVec()
177 int16_t bandwidth) in WebRtcIsac_DecorrelateInterVec() argument
185 switch(bandwidth) in WebRtcIsac_DecorrelateInterVec()
254 switch(bandwidth) in WebRtcIsac_QuantizeUncorrLar()
323 switch(bandwidth) in WebRtcIsac_DequantizeLpcParam()
381 switch(bandwidth) in WebRtcIsac_CorrelateIntraVec()
444 switch(bandwidth) in WebRtcIsac_CorrelateInterVec()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dencode_lpc_swb.c50 int16_t bandwidth) in WebRtcIsac_RemoveLarMean() argument
56 switch(bandwidth) in WebRtcIsac_RemoveLarMean()
105 int16_t bandwidth) in WebRtcIsac_DecorrelateIntraVec() argument
114 switch(bandwidth) in WebRtcIsac_DecorrelateIntraVec()
179 int16_t bandwidth) in WebRtcIsac_DecorrelateInterVec() argument
187 switch(bandwidth) in WebRtcIsac_DecorrelateInterVec()
256 switch(bandwidth) in WebRtcIsac_QuantizeUncorrLar()
325 switch(bandwidth) in WebRtcIsac_DequantizeLpcParam()
383 switch(bandwidth) in WebRtcIsac_CorrelateIntraVec()
446 switch(bandwidth) in WebRtcIsac_CorrelateInterVec()
[all …]
/dports/net/yate/yate-6.4.0-1/libs/miniwebrtc/audio/coding_isac/main/
H A Dencode_lpc_swb.c50 WebRtc_Word16 bandwidth) in WebRtcIsac_RemoveLarMean() argument
56 switch(bandwidth) in WebRtcIsac_RemoveLarMean()
105 WebRtc_Word16 bandwidth) in WebRtcIsac_DecorrelateIntraVec() argument
114 switch(bandwidth) in WebRtcIsac_DecorrelateIntraVec()
179 WebRtc_Word16 bandwidth) in WebRtcIsac_DecorrelateInterVec() argument
187 switch(bandwidth) in WebRtcIsac_DecorrelateInterVec()
256 switch(bandwidth) in WebRtcIsac_QuantizeUncorrLar()
325 switch(bandwidth) in WebRtcIsac_DequantizeLpcParam()
383 switch(bandwidth) in WebRtcIsac_CorrelateIntraVec()
446 switch(bandwidth) in WebRtcIsac_CorrelateInterVec()
[all …]
/dports/www/firefox/firefox-99.0/third_party/libwebrtc/modules/audio_coding/codecs/isac/main/source/
H A Dencode_lpc_swb.c48 int16_t bandwidth) in WebRtcIsac_RemoveLarMean() argument
54 switch(bandwidth) in WebRtcIsac_RemoveLarMean()
103 int16_t bandwidth) in WebRtcIsac_DecorrelateIntraVec() argument
112 switch(bandwidth) in WebRtcIsac_DecorrelateIntraVec()
177 int16_t bandwidth) in WebRtcIsac_DecorrelateInterVec() argument
185 switch(bandwidth) in WebRtcIsac_DecorrelateInterVec()
254 switch(bandwidth) in WebRtcIsac_QuantizeUncorrLar()
323 switch(bandwidth) in WebRtcIsac_DequantizeLpcParam()
381 switch(bandwidth) in WebRtcIsac_CorrelateIntraVec()
444 switch(bandwidth) in WebRtcIsac_CorrelateInterVec()
[all …]

12345678910>>...570