Searched refs:TotalBytes (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/llvm-project/compiler-rt/lib/xray/ |
| H A D | xray_utils.cpp | 52 auto TotalBytes = std::distance(Begin, End); in WriteAll() local 57 if (RoundUpTo(Offset, PageSize) != RoundUpTo(Offset + TotalBytes, PageSize)) { in WriteAll() 59 zx_status_t Status = _zx_vmo_set_size(Vmo, Offset + TotalBytes); in WriteAll() 67 zx_status_t Status = _zx_vmo_write(Vmo, Begin, Offset, TotalBytes); in WriteAll() 72 Offset += TotalBytes; in WriteAll() 143 auto TotalBytes = std::distance(Begin, End); 144 while (auto Written = write(Fd, Begin, TotalBytes)) { 151 TotalBytes -= Written; 152 if (TotalBytes == 0)
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | MemoryProfileInfo.cpp | 190 const uint64_t MaxColdSize, uint64_t &TotalBytes, in createMIBNode() argument 206 TotalBytes += TotalSize; in createMIBNode() 230 assert(TotalBytes > 0); in createMIBNode() 255 uint64_t TotalBytes, uint64_t ColdBytes) { in saveFilteredNewMIBNodes() argument 258 ColdBytes * 100 >= MinCallsiteColdBytePercent * TotalBytes; in saveFilteredNewMIBNodes() 295 const float PercentCold = ColdBytes * 100.0 / TotalBytes; in saveFilteredNewMIBNodes() 383 uint64_t &TotalBytes, uint64_t &ColdBytes) { in buildMIBNodes() argument 391 ContextSizeInfo, MaxColdSize, TotalBytes, ColdBytes)); in buildMIBNodes() 420 TotalBytes += CallerTotalBytes; in buildMIBNodes() 445 ContextSizeInfo, MaxColdSize, TotalBytes, in buildMIBNodes() [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | quarantine.h | 133 uptr TotalBytes = 0; in getStats() local 137 TotalBytes += Batch.Size; in getStats() 147 const uptr TotalQuarantinedBytes = TotalBytes - TotalOverheadBytes; in getStats() 155 BatchCount, TotalBytes, TotalQuarantinedBytes, TotalQuarantineChunks, in getStats()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AVR/ |
| H A D | AVRISelLowering.cpp | 1206 unsigned TotalBytes = VT.getStoreSize(); in analyzeArguments() local 1211 TotalBytes += Args[j].VT.getStoreSize(); in analyzeArguments() 1214 TotalBytes = alignTo(TotalBytes, 2); in analyzeArguments() 1216 if (TotalBytes == 0) in analyzeArguments() 1219 unsigned RegIdx = RegLastIdx + TotalBytes; in analyzeArguments() 1258 unsigned TotalBytes = 0; in getTotalArgumentsSizeInBytes() local 1261 TotalBytes += Arg.VT.getStoreSize(); in getTotalArgumentsSizeInBytes() 1263 return TotalBytes; in getTotalArgumentsSizeInBytes() 1273 unsigned TotalBytes = getTotalArgumentsSizeInBytes(Args); in analyzeReturnValues() local 1276 assert(TotalBytes <= 4 && in analyzeReturnValues() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | MemoryProfileInfo.h | 127 bool CalleeHasAmbiguousCallerContext, uint64_t &TotalBytes,
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | DumpOutputStyle.cpp | 1518 size_t TotalBytes = 0; in dumpTypeRefStats() local 1524 TotalBytes += Type.length(); in dumpTypeRefStats() 1533 P.formatLine("Bytes referenced: {0:N} / {1:N} {2:P}", RefBytes, TotalBytes, in dumpTypeRefStats() 1534 (double)RefBytes / TotalBytes); in dumpTypeRefStats()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 1033 unsigned TotalBytes = 0; in PrintStats() local 1040 TotalBytes += counts[Idx] * sizeof(Name##Type); \ in PrintStats() 1045 llvm::errs() << "Total bytes = " << TotalBytes << "\n"; in PrintStats()
|