Home
last modified time | relevance | path

Searched refs:totalValue (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/base/hiviewdfx/hidumper/frameworks/native/src/executor/memory/
H A Dget_ram_info.cpp42 return totalValue; in GetGroupMapValue()
58 return totalValue; in GetValueMapValue()
64 return totalValue; in GetTotalPss()
70 return totalValue; in GetTotalSwapPss()
76 return totalValue; in GetFreeInfo()
82 return totalValue; in GetKernelUsedInfo()
93 return totalValue > mapped ? totalValue - mapped : 0; in GetCachedInfo()
99 return totalValue; in GetKreclInfo()
105 return totalValue; in GetMappedInfo()
111 return totalValue; in GetSreclInfo()
[all …]
H A Dget_hardware_info.cpp124 uint64_t totalValue = 0; in CalcHardware() local
131 totalValue += value; in CalcHardware()
135 return totalValue; in CalcHardware()
151 bool GetHardwareInfo::GetHardwareUsage(uint64_t &totalValue) in GetHardwareUsage() argument
153 totalValue = 0; in GetHardwareUsage()
181 totalValue += value; in GetHardwareUsage()
183 totalValue = totalValue / MemoryUtil::GetInstance().BYTE_TO_KB_; in GetHardwareUsage()
H A Dget_process_info.cpp35 uint64_t totalValue = 0; in GetProcess() local
41 totalValue += it->second; in GetProcess()
45 return totalValue; in GetProcess()
H A Dget_kernel_info.cpp37 bool GetKernelInfo::GetKernel(const ValueMap &infos, uint64_t &totalValue) in GetKernel() argument
42 totalValue += it->second; in GetKernel()
50 totalValue += vmallocValue / MemoryUtil::GetInstance().BYTE_TO_KB_; in GetKernel()
/ohos5.0/base/hiviewdfx/hidumper/frameworks/native/src/executor/memory/parse/
H A Dparse_vmallocinfo.cpp34 void ParseVmallocinfo::CaclVmalloclValue(const string &str, uint64_t &totalValue) in CaclVmalloclValue() argument
45 totalValue += value; in CaclVmalloclValue()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/data_panel/
H A Ddata_panel_modifier.cpp170 auto totalValuePre = arcData.totalValue; in PaintCircle()
171 arcData.totalValue += values_[i]->Get(); in PaintCircle()
172 if (GreatNotEqual(arcData.totalValue, arcData.maxValue)) { in PaintCircle()
175 arcData.progressValue = arcData.totalValue * date_->Get(); in PaintCircle()
180 arcData.gradientPointBase = totalValuePre / arcData.totalValue; in PaintCircle()
196 arcData.totalValue = 0.0f; in PaintCircle()
204 auto totalValuePre = arcData.totalValue; in PaintCircle()
205 arcData.totalValue += values_[i]->Get(); in PaintCircle()
206 if (GreatNotEqual(arcData.totalValue, arcData.maxValue)) { in PaintCircle()
209 arcData.progressValue = arcData.totalValue * date_->Get(); in PaintCircle()
[all …]
H A Ddata_panel_modifier.h50 double totalValue = 0.0f; member
/ohos5.0/base/hiviewdfx/hidumper/frameworks/native/include/executor/memory/parse/
H A Dparse_vmallocinfo.h30 void CaclVmalloclValue(const std::string &str, uint64_t &totalValue);
/ohos5.0/base/hiviewdfx/hidumper/frameworks/native/include/executor/memory/
H A Dget_kernel_info.h28 bool GetKernel(const ValueMap &info, uint64_t &totalValue);
H A Dget_hardware_info.h26 bool GetHardwareUsage(uint64_t &totalValue);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/data_panel/
H A Drosen_render_data_panel.cpp1021 double totalValue = GetTotalValue(); in Paint() local
1034 if (GreatNotEqual(totalValue, maxValue)) { in Paint()
1035 factor = maxValue / totalValue; in Paint()
1036 proportions = 100 / totalValue; in Paint()
1041 if (useEffect_ && GreatNotEqual(totalValue, 0.0)) { in Paint()
1044 totalValue = totalValue * proportions; in Paint()
1049 arcData.progress = totalValue * animationPercent_; in Paint()
1051 totalValue -= segment.GetValue() * proportions; in Paint()