Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/xray/
H A Dxray_utils.cc52 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()
139 auto TotalBytes = std::distance(Begin, End);
140 while (auto Written = write(Fd, Begin, TotalBytes)) {
147 TotalBytes -= Written;
148 if (TotalBytes == 0)
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp942 unsigned TotalBytes = 0; in PrintStats() local
949 TotalBytes += counts[Idx] * sizeof(Name##Type); \ in PrintStats()
954 llvm::errs() << "Total bytes = " << TotalBytes << "\n"; in PrintStats()