Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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)
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp1207 unsigned TotalBytes = VT.getStoreSize(); in analyzeArguments() local
1212 TotalBytes += Args[j].VT.getStoreSize(); in analyzeArguments()
1215 TotalBytes = alignTo(TotalBytes, 2); in analyzeArguments()
1217 if (TotalBytes == 0) in analyzeArguments()
1220 unsigned RegIdx = RegLastIdx + TotalBytes; in analyzeArguments()
1259 unsigned TotalBytes = 0; in getTotalArgumentsSizeInBytes() local
1262 TotalBytes += Arg.VT.getStoreSize(); in getTotalArgumentsSizeInBytes()
1264 return TotalBytes; in getTotalArgumentsSizeInBytes()
1274 unsigned TotalBytes = getTotalArgumentsSizeInBytes(Args); in analyzeReturnValues() local
1277 assert(TotalBytes <= 4 && in analyzeReturnValues()
[all …]
/openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp1518 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()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DASTContext.cpp1039 unsigned TotalBytes = 0; in PrintStats() local
1046 TotalBytes += counts[Idx] * sizeof(Name##Type); \ in PrintStats()
1051 llvm::errs() << "Total bytes = " << TotalBytes << "\n"; in PrintStats()