Searched refs:TotalBytes (Results 1 – 5 of 5) 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/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 | 1253 unsigned TotalBytes = VT.getStoreSize(); in analyzeArguments() local 1258 TotalBytes += Args[j].VT.getStoreSize(); in analyzeArguments() 1261 TotalBytes = alignTo(TotalBytes, 2); in analyzeArguments() 1263 if (TotalBytes == 0) in analyzeArguments() 1266 unsigned RegIdx = RegLastIdx + TotalBytes; in analyzeArguments() 1305 unsigned TotalBytes = 0; in getTotalArgumentsSizeInBytes() local 1308 TotalBytes += Arg.VT.getStoreSize(); in getTotalArgumentsSizeInBytes() 1310 return TotalBytes; in getTotalArgumentsSizeInBytes() 1320 unsigned TotalBytes = getTotalArgumentsSizeInBytes(Args); in analyzeReturnValues() local 1323 assert(TotalBytes <= 4 && in analyzeReturnValues() [all …]
|
/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 | 970 unsigned TotalBytes = 0; in PrintStats() local 977 TotalBytes += counts[Idx] * sizeof(Name##Type); \ in PrintStats() 982 llvm::errs() << "Total bytes = " << TotalBytes << "\n"; in PrintStats()
|