Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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)
/llvm-project-15.0.7/libc/benchmarks/
H A DLibcMemoryGoogleBenchmarkMain.cpp53 const size_t TotalBytes = State.iterations() * AvgBytesPerIteration; in ~Runner() local
54 State.SetBytesProcessed(TotalBytes); in ~Runner()
58 TotalBytes / benchmark::CPUInfo::Get().cycles_per_second, in ~Runner()
/llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/
H A Dquarantine.h132 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()
/llvm-project-15.0.7/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp1108 TotalBytes = alignTo(TotalBytes, 2); in analyzeArguments()
1110 if (TotalBytes == 0) in analyzeArguments()
1152 unsigned TotalBytes = 0; in getTotalArgumentsSizeInBytes() local
1155 TotalBytes += Arg.VT.getStoreSize(); in getTotalArgumentsSizeInBytes()
1157 return TotalBytes; in getTotalArgumentsSizeInBytes()
1169 assert(TotalBytes <= 8 && in analyzeReturnValues()
1185 if (TotalBytes > 4) { in analyzeReturnValues()
1186 TotalBytes = 8; in analyzeReturnValues()
1188 TotalBytes = alignTo(TotalBytes, 2); in analyzeReturnValues()
1192 int RegIdx = TotalBytes - 1; in analyzeReturnValues()
[all …]
/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp1517 size_t TotalBytes = 0; in dumpTypeRefStats() local
1522 TotalBytes += Type.length(); in dumpTypeRefStats()
1531 P.formatLine("Bytes referenced: {0:N} / {1:N} {2:P}", RefBytes, TotalBytes, in dumpTypeRefStats()
1532 (double)RefBytes / TotalBytes); in dumpTypeRefStats()
/llvm-project-15.0.7/clang/lib/AST/
H A DASTContext.cpp1065 unsigned TotalBytes = 0; in PrintStats() local
1072 TotalBytes += counts[Idx] * sizeof(Name##Type); \ in PrintStats()
1077 llvm::errs() << "Total bytes = " << TotalBytes << "\n"; in PrintStats()