Home
last modified time | relevance | path

Searched refs:xTera (Results 1 – 4 of 4) sorted by relevance

/dports/net/boinc-client/boinc-client_release-7.8-7.8.6/android/BOINC/app/src/main/java/edu/berkeley/boinc/utils/
H A DBOINCUtils.java65 double xTera = 1099511627776.0; in formatSize() local
71 if (fFileSize >= xTera) { in formatSize()
72 buf = String.format("%.2f/%.2f TB", fBytesSent/xTera, fFileSize/xTera); in formatSize()
83 if (fBytesSent >= xTera) { in formatSize()
84 buf = String.format("%.2f TB", fBytesSent/xTera); in formatSize()
/dports/net/boinc-client/boinc-client_release-7.8-7.8.6/lib/
H A Dstr_util.cpp205 double xTera = (1024.0*1024.0*1024.0*1024.0); in nbytes_to_string() local
211 if (total_bytes >= xTera) { in nbytes_to_string()
212 sprintf(buf, "%0.2f/%0.2f TB", nbytes/xTera, total_bytes/xTera); in nbytes_to_string()
223 if (nbytes >= xTera) { in nbytes_to_string()
224 sprintf(buf, "%0.2f TB", nbytes/xTera); in nbytes_to_string()
/dports/net/boinc-client/boinc-client_release-7.8-7.8.6/clientgui/
H A DViewResources.cpp307 double xTera = 1099511627776.0; in FormatDiskSpace() local
312 if (bytes >= xTera) { in FormatDiskSpace()
313 strBuffer.Printf(wxT("%0.2f TB"), bytes/xTera); in FormatDiskSpace()
H A DViewTransfers.cpp756 double xTera = 1099511627776.0; in FormatSize() local
762 if (fFileSize >= xTera) { in FormatSize()
763 strBuffer.Printf(wxT("%0.2f/%0.2f TB"), fBytesSent/xTera, fFileSize/xTera); in FormatSize()
774 if (fBytesSent >= xTera) { in FormatSize()
775 strBuffer.Printf(wxT("%0.2f TB"), fBytesSent/xTera); in FormatSize()