Home
last modified time | relevance | path

Searched refs:probeCount (Results 1 – 21 of 21) sorted by relevance

/dports/net-mgmt/librenms/librenms-21.5.1/app/Console/Commands/
H A DSmokepingGenerateCommand.php151 * @param int $probeCount Number of processes to create
155 public function assembleProbes($probeCount) argument
157 if ($probeCount < 1) {
174 * @param int $probeCount Number of processes to create
178 public function buildProbes($module, $defaultProbe, $probe, $binary, $probeCount) argument
187 for ($i = 0; $i < $probeCount; $i++) {
230 public function buildTargets($smokelist, $probeCount, $singleProcess) argument
315 private function buildDevices($devices, $probeCount, $singleProcess) argument
376 private function balanceProbes($transport, $probeCount) argument
379 if ($probeCount === $this->ip4count) {
[all …]
/dports/net-mgmt/aircrack-ng/aircrack-ng-1.5.2/scripts/airgraph-ng/
H A Dairgraph-ng81 probeCount = 0
90 probeCount += lpc
97 …erated by Airgraph-ng\\n%s Probes and \\n%s Clients are shown";\n}' % (probeCount,len(clientCount.…
/dports/science/rdkit/rdkit-Release_2021_03_5/Code/DataStructs/
H A DFPBReader.cpp435 boost::uint64_t probeCount = in tanimotoNeighbors() local
447 static_cast<boost::uint32_t>(floor(threshold * probeCount)); in tanimotoNeighbors()
450 ? static_cast<boost::uint32_t>(ceil(probeCount / threshold)) in tanimotoNeighbors()
490 boost::uint64_t probeCount = in tverskyNeighbors() local
502 (threshold * probeCount * ca) / (1. - threshold + threshold * ca))); in tverskyNeighbors()
506 ceil(probeCount * (1 - threshold + threshold * cb) / in tverskyNeighbors()
541 boost::uint64_t probeCount = in containingNeighbors() local
546 startScan = dp_impl->popCountOffsets[probeCount]; in containingNeighbors()
/dports/www/kf5-kjs/kjs-5.89.0/src/wtf/
H A DHashTable.h606 int probeCount = 0;
631 ++probeCount;
632 HashTableStats::recordCollisionAtCount(probeCount);
656 int probeCount = 0;
689 ++probeCount;
690 HashTableStats::recordCollisionAtCount(probeCount);
714 int probeCount = 0;
747 ++probeCount;
748 HashTableStats::recordCollisionAtCount(probeCount);
781 int probeCount = 0;
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/JavaScriptCore/wtf/
H A DHashTable.h494 int probeCount = 0;
515 ++probeCount;
516 HashTableStats::recordCollisionAtCount(probeCount);
539 int probeCount = 0;
567 ++probeCount;
568 HashTableStats::recordCollisionAtCount(probeCount);
591 int probeCount = 0;
619 ++probeCount;
620 HashTableStats::recordCollisionAtCount(probeCount);
651 int probeCount = 0;
[all …]
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/javascriptcore/JavaScriptCore/wtf/
H A DHashTable.h482 int probeCount = 0;
503 ++probeCount;
504 HashTableStats::recordCollisionAtCount(probeCount);
527 int probeCount = 0;
555 ++probeCount;
556 HashTableStats::recordCollisionAtCount(probeCount);
579 int probeCount = 0;
607 ++probeCount;
608 HashTableStats::recordCollisionAtCount(probeCount);
639 int probeCount = 0;
[all …]
/dports/devel/qt5-scripttools/kde-qtscript-5.15.2p4/src/3rdparty/javascriptcore/JavaScriptCore/wtf/
H A DHashTable.h483 int probeCount = 0;
504 ++probeCount;
505 HashTableStats::recordCollisionAtCount(probeCount);
528 int probeCount = 0;
556 ++probeCount;
557 HashTableStats::recordCollisionAtCount(probeCount);
580 int probeCount = 0;
608 ++probeCount;
609 HashTableStats::recordCollisionAtCount(probeCount);
640 int probeCount = 0;
[all …]
/dports/devel/qt5-script/kde-qtscript-5.15.2p4/src/3rdparty/javascriptcore/JavaScriptCore/wtf/
H A DHashTable.h483 int probeCount = 0;
504 ++probeCount;
505 HashTableStats::recordCollisionAtCount(probeCount);
528 int probeCount = 0;
556 ++probeCount;
557 HashTableStats::recordCollisionAtCount(probeCount);
580 int probeCount = 0;
608 ++probeCount;
609 HashTableStats::recordCollisionAtCount(probeCount);
640 int probeCount = 0;
[all …]
/dports/biology/py-xenaPython/xenaPython-1.0.14/xenaPython/queries/
H A DprobeCount.xq1 ;probeCount
/dports/net/norm/norm-1.5r6/src/common/
H A DnormSimAgent.cpp216 unsigned int probeCount = (unsigned int)atoi(val); in ProcessCommand() local
217 if (0 == probeCount) in ProcessCommand()
222 probe_count = probeCount; in ProcessCommand()
223 if (session) session->SetProbeCount(probeCount); in ProcessCommand()
H A DnormSession.cpp4839 … unsigned int probeCount = (unsigned int)(0.25 * tx_rate * probeInterval / (double)segment_size); in GetProbeInterval() local
4840 if (probeCount < 1) probeCount = 1; in GetProbeInterval()
4843 if (probeCount > 3) probeCount = 3; in GetProbeInterval()
4847 if (probeCount > 2) probeCount = 2; in GetProbeInterval()
4851 probeCount = 1; in GetProbeInterval()
4853 if (1 != probe_count) probeCount = probe_count; in GetProbeInterval()
4856 return (cc_slow_start ? probeInterval : (probeInterval / (double)probeCount)); in GetProbeInterval()
/dports/www/firefox-legacy/firefox-52.8.0esr/netwerk/protocol/http/
H A DnsHttpConnection.cpp2081 int32_t probeCount = -1; in StartShortLivedTCPKeepalives() local
2082 rv = gSocketTransportService->GetKeepaliveProbeCount(&probeCount); in StartShortLivedTCPKeepalives()
2086 if (NS_WARN_IF(probeCount <= 0)) { in StartShortLivedTCPKeepalives()
2090 time += ((probeCount) * retryIntervalS) - (time % idleTimeS) + 2; in StartShortLivedTCPKeepalives()
/dports/net/norm/norm-1.5r6/include/
H A DnormSession.h562 void SetProbeCount(unsigned probeCount) {probe_count = probeCount;} in SetProbeCount() argument
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/platform/wtf/
H A Dhash_table.h58 ++probeCount; \
59 HashTableStats::instance().recordCollisionAtCount(probeCount); \
65 int probeCount = 0; \
70 ++probeCount; \
71 HashTableStats::instance().recordCollisionAtCount(probeCount)
75 int probeCount = 0
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/platform/wtf/
H A Dhash_table.h58 ++probeCount; \
59 HashTableStats::instance().recordCollisionAtCount(probeCount); \
65 int probeCount = 0; \
70 ++probeCount; \
71 HashTableStats::instance().recordCollisionAtCount(probeCount)
75 int probeCount = 0
/dports/lang/spidermonkey60/firefox-60.9.0/netwerk/protocol/http/
H A DnsHttpConnection.cpp2136 int32_t probeCount = -1; in StartShortLivedTCPKeepalives() local
2137 rv = gSocketTransportService->GetKeepaliveProbeCount(&probeCount); in StartShortLivedTCPKeepalives()
2141 if (NS_WARN_IF(probeCount <= 0)) { in StartShortLivedTCPKeepalives()
2145 time += ((probeCount)*retryIntervalS) - (time % idleTimeS) + 2; in StartShortLivedTCPKeepalives()
/dports/www/firefox-esr/firefox-91.8.0/netwerk/protocol/http/
H A DnsHttpConnection.cpp2275 int32_t probeCount = -1; in StartShortLivedTCPKeepalives() local
2276 rv = gSocketTransportService->GetKeepaliveProbeCount(&probeCount); in StartShortLivedTCPKeepalives()
2280 if (NS_WARN_IF(probeCount <= 0)) { in StartShortLivedTCPKeepalives()
2284 time += ((probeCount)*retryIntervalS) - (time % idleTimeS) + 2; in StartShortLivedTCPKeepalives()
/dports/www/firefox/firefox-99.0/netwerk/protocol/http/
H A DnsHttpConnection.cpp2212 int32_t probeCount = -1; in StartShortLivedTCPKeepalives() local
2213 rv = gSocketTransportService->GetKeepaliveProbeCount(&probeCount); in StartShortLivedTCPKeepalives()
2217 if (NS_WARN_IF(probeCount <= 0)) { in StartShortLivedTCPKeepalives()
2221 time += ((probeCount)*retryIntervalS) - (time % idleTimeS) + 2; in StartShortLivedTCPKeepalives()
/dports/mail/thunderbird/thunderbird-91.8.0/netwerk/protocol/http/
H A DnsHttpConnection.cpp2275 int32_t probeCount = -1; in StartShortLivedTCPKeepalives() local
2276 rv = gSocketTransportService->GetKeepaliveProbeCount(&probeCount); in StartShortLivedTCPKeepalives()
2280 if (NS_WARN_IF(probeCount <= 0)) { in StartShortLivedTCPKeepalives()
2284 time += ((probeCount)*retryIntervalS) - (time % idleTimeS) + 2; in StartShortLivedTCPKeepalives()
/dports/lang/spidermonkey78/firefox-78.9.0/netwerk/protocol/http/
H A DnsHttpConnection.cpp2365 int32_t probeCount = -1; in StartShortLivedTCPKeepalives() local
2366 rv = gSocketTransportService->GetKeepaliveProbeCount(&probeCount); in StartShortLivedTCPKeepalives()
2370 if (NS_WARN_IF(probeCount <= 0)) { in StartShortLivedTCPKeepalives()
2374 time += ((probeCount)*retryIntervalS) - (time % idleTimeS) + 2; in StartShortLivedTCPKeepalives()
/dports/net/mDNSResponder/mDNSResponder-1310.140.1/Clients/dnssdutil/
H A Ddnssdutil.c28686 unsigned int probeCount; // Count of probe queries received for collider's record. member
29285 ++me->probeCount; in _MDNSColliderReadHandler()
29286 action = _MDNSColliderGetProbeAction( me->probeActionMap, me->probeCount ); in _MDNSColliderReadHandler()
29396 me->probeCount = 0; in _MDNSColliderExecuteProgram()