Home
last modified time | relevance | path

Searched refs:TotalBytes (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_utils.cpp52 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-14.2/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dquarantine.h133 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-14.2/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp1277 TotalBytes = alignTo(TotalBytes, 2); in analyzeArguments()
1279 if (TotalBytes == 0) in analyzeArguments()
1321 unsigned TotalBytes = 0; in getTotalArgumentsSizeInBytes() local
1324 TotalBytes += Arg.VT.getStoreSize(); in getTotalArgumentsSizeInBytes()
1326 return TotalBytes; in getTotalArgumentsSizeInBytes()
1339 assert(TotalBytes <= 4 && in analyzeReturnValues()
1342 assert(TotalBytes <= 8 && in analyzeReturnValues()
1358 if (TotalBytes > 4) { in analyzeReturnValues()
1359 TotalBytes = 8; in analyzeReturnValues()
1361 TotalBytes = alignTo(TotalBytes, 2); in analyzeReturnValues()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp1519 size_t TotalBytes = 0; in dumpTypeRefStats() local
1525 TotalBytes += Type.length(); in dumpTypeRefStats()
1534 P.formatLine("Bytes referenced: {0:N} / {1:N} {2:P}", RefBytes, TotalBytes, in dumpTypeRefStats()
1535 (double)RefBytes / TotalBytes); in dumpTypeRefStats()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp966 unsigned TotalBytes = 0; in PrintStats() local
973 TotalBytes += counts[Idx] * sizeof(Name##Type); \ in PrintStats()
978 llvm::errs() << "Total bytes = " << TotalBytes << "\n"; in PrintStats()