Home
last modified time | relevance | path

Searched refs:_total (Results 51 – 75 of 461) sorted by relevance

12345678910>>...19

/dports/devel/py-ice37/ice-3.7.2/cpp/test/IceStorm/stress/
H A DSubscriber.cpp28 _communicator(communicator), _total(total), _count(0) in EventI()
45 const int _total; member in EventI
78 if(counter != _count || counter == _total-1) in pub()
104 if(++_count == _total) in pub()
128 if(_count >= _total) in pub()
134 if(++_count == _total) in pub()
165 _count = _total; in pub()
209 _count = _total; in pub()
216 _count = _total - _expected; in pub()
218 else if(++_count == _total) in pub()
[all …]
/dports/java/apache-commons-collections/commons-collections-3.2.2-src/src/java/org/apache/commons/collections/
H A DDefaultMapBag.java50 private int _total = 0; field in DefaultMapBag
94 _total += nCopies; in add()
123 _total = 0; in clear()
263 _total -= nCopies; in remove()
267 _total -= count; in remove()
373 return _total; in size()
383 _total = extractList().size(); in calcTotalSize()
384 return _total; in calcTotalSize()
/dports/graphics/electricsheep/electricsheep-37ba0fd692d6581f8fe009ed11c9650cd8174123/client_generic/MSVC/
H A Dcpu_usage_win32.h29 bool GetCpuUsage(int &_total, int &_es) in GetCpuUsage() argument
76_total = int ( (ker.QuadPart + usr.QuadPart - idl.QuadPart) * 100 / (ker.QuadPart + usr.QuadPart) … in GetCpuUsage()
79 _total = 0; in GetCpuUsage()
80 _total = ::Base::Math::Clamped(_total, 0, 100); in GetCpuUsage()
/dports/graphics/electricsheep/electricsheep-37ba0fd692d6581f8fe009ed11c9650cd8174123/client_generic/Client/
H A Dcpu_usage_linux.h49 bool GetCpuUsage(int &_total, int &_es) in GetCpuUsage() argument
90 _total = (fp8)accInUse * 100. / (fp8)accTotal; in GetCpuUsage()
100 _total = 0; in GetCpuUsage()
104 _total = ::Base::Math::Clamped(_total, 0, 100); in GetCpuUsage()
H A Dcpu_usage_mac.h64 bool GetCpuUsage(int &_total, int &_es) in GetCpuUsage() argument
116 _total = static_cast<int>((fp8)accInUse * 100. / (fp8)accTotal); in GetCpuUsage()
133 _total = 0; in GetCpuUsage()
137 _total = ::Base::Math::Clamped(_total, 0, 100); in GetCpuUsage()
/dports/deskutils/nextcloudclient/desktop-3.4.1/src/libsync/
H A Dprogressdispatcher.cpp197 _fileProgress._total += item._affectedItems; in adjustTotalsForFile()
199 _sizeProgress._total += item._size; in adjustTotalsForFile()
205 return _fileProgress._total; in totalFiles()
220 return _sizeProgress._total; in totalSize()
250 _currentItems[item._file]._progress._total = item._size; in setProgressItem()
261 if (_sizeProgress._total == 0) { in totalProgress()
371 … est.estimatedEta = qRound64(static_cast<double>(_total - _completed) / _progressPerSec) * 1000; in estimates()
385 return _total - _completed; in remaining()
406 _completed = qMin(completed, _total); in setCompleted()
/dports/devel/rudiments/rudiments-1.2.2/src/
H A Dmemorypool.cpp62 size_t _total; member in memorypoolprivate
109 pvt->_total=0; in init()
175 if (incr<(pvt->_total/10)) { in allocate()
176 incr=(pvt->_total/10); in allocate()
189 pvt->_total+=length; in allocate()
192 stdoutput.printf(" total: %d\n",pvt->_total); in allocate()
324 pvt->_average+=pvt->_total/pvt->_clears; in clear()
329 stdoutput.printf(" tot: %d\n",pvt->_total); in clear()
410 pvt->_total=0; in clear()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Dynamic.Runtime/tests/Dynamic.Simple/
H A DOperatorTest.cs11 private int _total = 0; field in SampleDynamicTests.OperatorTest
15 o._total += i; in operator +()
16 return string.Format("The total is {0}", o._total); in operator +()
/dports/net/py-kafka-python/kafka-python-1.4.5/kafka/metrics/stats/
H A Dtotal.py9 self._total = value
12 self._total += value
15 return float(self._total)
/dports/deskutils/egroupware/egroupware/api/js/etemplate/
H A Det2_dataview_controller_selection.ts49 private _total: number; property in et2_dataview_selectionManager
96 this._total = 0;
141 this._total = 0;
153 setTotalCount( _total)
155 this._total = _total;
250 return selected.all || (selected.ids.length === this._total);
281 if(egw.dataKnownUIDs(this._context._dataProvider.dataStorePrefix).length !== this._total &&
282 this._total <= et2_dataview_selectionManager.MAX_SELECTION
285 this._selectRange(0, this._total);
426 var total = self._total || Object.keys(self._indexMap).length;
[all …]
/dports/math/libmesh/libmesh-1.6.2/examples/adjoints/adjoints_ex3/
H A DMakefile.am16_total error.gmv.004.00_non_pressure error.gmv.004.00_convection_diffusion_y error.gmv.004.00_conv…
/dports/misc/usd/USD-21.11/pxr/base/tf/testenv/
H A DmallocTag.cpp45 int _total = 0; variable
53 _total += n; in MyMalloc()
54 if (_total > _maxTotal) { in MyMalloc()
55 _maxTotal = _total; in MyMalloc()
64 _total = 0; in FreeAll()
118 int64_t m = _total, in MemCheck()
/dports/security/ossec-hids-server/ossec-hids-3.6.0/src/rootcheck/
H A Dcheck_rc_pids.c18 static void loop_all_pids(const char *ps, pid_t max_pid, int *_errors, int *_total);
89 static void loop_all_pids(const char *ps, pid_t max_pid, int *_errors, int *_total) in loop_all_pids() argument
114 (*_total)++; in loop_all_pids()
284 int _total = 0; in check_rc_pids() local
310 loop_all_pids(ps, max_pid, &_errors, &_total); in check_rc_pids()
316 "Analyzed %d processes.", ps, _total); in check_rc_pids()
/dports/security/ossec-hids-local/ossec-hids-3.6.0/src/rootcheck/
H A Dcheck_rc_pids.c18 static void loop_all_pids(const char *ps, pid_t max_pid, int *_errors, int *_total);
89 static void loop_all_pids(const char *ps, pid_t max_pid, int *_errors, int *_total) in loop_all_pids() argument
114 (*_total)++; in loop_all_pids()
284 int _total = 0; in check_rc_pids() local
310 loop_all_pids(ps, max_pid, &_errors, &_total); in check_rc_pids()
316 "Analyzed %d processes.", ps, _total); in check_rc_pids()
/dports/security/ossec-hids-agent/ossec-hids-3.6.0/src/rootcheck/
H A Dcheck_rc_pids.c18 static void loop_all_pids(const char *ps, pid_t max_pid, int *_errors, int *_total);
89 static void loop_all_pids(const char *ps, pid_t max_pid, int *_errors, int *_total) in loop_all_pids() argument
114 (*_total)++; in loop_all_pids()
284 int _total = 0; in check_rc_pids() local
310 loop_all_pids(ps, max_pid, &_errors, &_total); in check_rc_pids()
316 "Analyzed %d processes.", ps, _total); in check_rc_pids()
/dports/games/libretro-desmume2015/desmume2015-d6128e6/desmume/src/utils/AsmJit/core/
H A Dzonememory.cpp26 _total = 0; in ZoneMemory()
62 _total += size; in alloc()
105 _total = 0; in clear()
113 _total = 0; in reset()
/dports/math/yacas/yacas-1.9.1/scripts/examples/
H A Dfindsum.ys27 FindSum(_total, l_IsList) <--
36 10 # FindSum(_total, _l, _current, _total, _result) <-- DestructiveAppend(result, current);
39 20 # FindSum(_total, {}, _current, _sum, _result) <-- True;
42 30 # FindSum(_total, _l, _current, _sum, _result) <--
/dports/devel/py-pygithub/PyGithub-1.54/github/
H A DCommitStats.py59 return self._total.value
64 self._total = github.GithubObject.NotSet
72 self._total = self._makeIntAttribute(attributes["total"])
H A DStatsCommitActivity.py49 return self._total.value
60 self._total = github.GithubObject.NotSet
67 self._total = self._makeIntAttribute(attributes["total"])
/dports/www/tikiwiki/tiki-21.2/lib/wiki/
H A Dhistlib.php472 private $_total; variable in Document
767 $this->_total = [
816 $this->_total[$prefix . 'whitespaces']++;
819 $this->_total[$prefix . 'words']++;
823 $this->_total[$prefix . 'characters'] += $l;
826 $this->_total[$prefix . 'printables'] += $l;
831 …uthor['deleted_words_percent'] = ($this->_total['deleted_words'] != 0 ? $author['deleted_words'] /…
833 …ed_whitespaces_percent'] = ($this->_total['deleted_whitespaces'] != 0 ? $author['deleted_whitespac…
835 …eted_characters_percent'] = ($this->_total['deleted_characters'] != 0 ? $author['deleted_character…
837 …eted_printables_percent'] = ($this->_total['deleted_printables'] != 0 ? $author['deleted_printable…
[all …]
/dports/print/limereport/LimeReport-1.5.35/3rdparty/easyprofiler/profiler_gui/
H A Dcommon_functions.h175 inline double percentReal(::profiler::timestamp_t _partial, ::profiler::timestamp_t _total) { in percentReal() argument
176 return _total != 0 ? 100. * static_cast<double>(_partial) / static_cast<double>(_total) : 0.; in percentReal()
179 inline int percent(::profiler::timestamp_t _partial, ::profiler::timestamp_t _total) { in percent() argument
180 return static_cast<int>(0.5 + percentReal(_partial, _total)); in percent()
/dports/sysutils/android-file-transfer/android-file-transfer-linux-4.2/cli/
H A DPosixStreams.h39 mtp::u64 _current, _total; variable
42 BaseObjectStream(): _current(0), _total(0) { } in BaseObjectStream()
49 { _current = 0; _total = total; } in SetTotal()
57 _progressReporter(_current, _total); in Report()
/dports/sysutils/android-file-transfer-qt5/android-file-transfer-linux-4.2/cli/
H A DPosixStreams.h39 mtp::u64 _current, _total; variable
42 BaseObjectStream(): _current(0), _total(0) { } in BaseObjectStream()
49 { _current = 0; _total = total; } in SetTotal()
57 _progressReporter(_current, _total); in Report()
/dports/www/firefox-legacy/firefox-52.8.0esr/other-licenses/7zstub/src/7zip/FileManager/Resource/ProgressDialog/
H A DProgressDialog.h17 UINT64 _total; variable
20 CProgressSynch(): _stopped(false), _paused(false), _total(1), _completed(0) {} in CProgressSynch()
45 _total = total; in SetProgress()
56 total = _total; in GetProgress()
/dports/multimedia/zoneminder/zoneminder-1.36.5/web/api/lib/Cake/TestSuite/Coverage/
H A DHtmlCoverageReport.php33 protected $_total = 0; variable in HtmlCoverageReport
65 if ($this->_total > 0) {
66 $percentCovered = round(100 * $this->_covered / $this->_total, 2);
91 $this->_total += $total;

12345678910>>...19