Searched refs:TotalBytes (Results 1 – 5 of 5) sorted by relevance
| /freebsd-13.1/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-13.1/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | quarantine.h | 132 uptr TotalBytes = 0; in getStats() local 136 TotalBytes += Batch.Size; in getStats() 146 const uptr TotalQuarantinedBytes = TotalBytes - TotalOverheadBytes; in getStats() 154 BatchCount, TotalBytes, TotalQuarantinedBytes, TotalQuarantineChunks, in getStats()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AVR/ |
| H A D | AVRISelLowering.cpp | 1037 unsigned TotalBytes = VT.getStoreSize(); in analyzeArguments() local 1045 TotalBytes = alignTo(TotalBytes, 2); in analyzeArguments() 1047 if (TotalBytes == 0) in analyzeArguments() 1088 unsigned TotalBytes = 0; in getTotalArgumentsSizeInBytes() local 1091 TotalBytes += Arg.VT.getStoreSize(); in getTotalArgumentsSizeInBytes() 1093 return TotalBytes; in getTotalArgumentsSizeInBytes() 1109 if (TotalBytes > 4) { in analyzeReturnValues() 1110 TotalBytes = 8; in analyzeReturnValues() 1112 TotalBytes = alignTo(TotalBytes, 2); in analyzeReturnValues() 1116 int RegIdx = TotalBytes - 1; in analyzeReturnValues() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | DumpOutputStyle.cpp | 1614 size_t TotalBytes = 0; in dumpTypeRefStats() local 1619 TotalBytes += Type.length(); in dumpTypeRefStats() 1628 P.formatLine("Bytes referenced: {0:N} / {1:N} {2:P}", RefBytes, TotalBytes, in dumpTypeRefStats() 1629 (double)RefBytes / TotalBytes); in dumpTypeRefStats()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | ASTContext.cpp | 1052 unsigned TotalBytes = 0; in PrintStats() local 1059 TotalBytes += counts[Idx] * sizeof(Name##Type); \ in PrintStats() 1064 llvm::errs() << "Total bytes = " << TotalBytes << "\n"; in PrintStats()
|