Home
last modified time | relevance | path

Searched refs:system_total (Results 1 – 7 of 7) sorted by relevance

/dports/devel/py-pympler/Pympler-0.4.2/pympler/templates/
H A Dtracker.tpl86 %if sn.system_total.available:
99 <td class="num">{{pp(sn.system_total.vsz)}}</td>
103 <td class="num">{{pp(sn.system_total.rss)}}</td>
107 <td class="num">{{sn.system_total.pagefaults}}</td>
109 %for key, value in sn.system_total.os_specific:
/dports/devel/py-pympler/Pympler-0.4.2/pympler/
H A Dweb.py131 if stats.snapshots[0].system_total.data_segment:
133 series = [s.system_total.data_segment - s.tracked_total - s.overhead
136 series = [s.system_total.code_segment for s in stats.snapshots]
138 series = [s.system_total.stack_segment for s in stats.snapshots]
140 series = [s.system_total.shared_segment for s in stats.snapshots]
H A Dclasstracker.py227 self.system_total = None
237 if self.system_total.available:
238 return self.system_total.vsz
568 snapshot.system_total = pympler.process.ProcessMemoryInfo()
H A Dclasstracker_stats.py578 data['sys'] = pp(snapshot.system_total.vsz)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/devil/devil/android/
H A Dbattery_utils.py269 system_total = None
295 assert system_total is None
296 system_total = float(entry[_PWS_POWER_CONSUMPTION_INDEX])
305 return {'system_total': system_total, 'per_package': per_package}
/dports/chinese/libpinyin/libpinyin-2.3.0/src/storage/
H A Dngram.cpp302 guint32 system_total, user_total; in merge_single_gram() local
303 assert(system->get_total_freq(system_total)); in merge_single_gram()
305 const guint32 merged_total = system_total + user_total; in merge_single_gram()
/dports/devel/py-pympler/Pympler-0.4.2/test/tracker/
H A Dtest_classtracker.py191 procmem = fp.system_total
198 self.assert_(fp_with_total.system_total.vsz > fp_with_total.asizeof_total)