HomeSort by: relevance | last modified time | path
    Searched refs:TotalBytes (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_utils.cc 52 auto TotalBytes = std::distance(Begin, End);
57 if (RoundUpTo(Offset, PageSize) != RoundUpTo(Offset + TotalBytes, PageSize)) {
59 zx_status_t Status = _zx_vmo_set_size(Vmo, Offset + TotalBytes);
67 zx_status_t Status = _zx_vmo_write(Vmo, Begin, Offset, TotalBytes);
72 Offset += TotalBytes;
139 auto TotalBytes = std::distance(Begin, End);
140 while (auto Written = write(Fd, Begin, TotalBytes)) {
147 TotalBytes -= Written;
148 if (TotalBytes == 0)
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/
AVRISelLowering.cpp 1027 unsigned TotalBytes = VT.getStoreSize();
1032 TotalBytes += Args[j].VT.getStoreSize();
1035 TotalBytes = alignTo(TotalBytes, 2);
1037 if (TotalBytes == 0)
1040 unsigned RegIdx = RegLastIdx + TotalBytes;
1078 unsigned TotalBytes = 0;
1081 TotalBytes += Arg.VT.getStoreSize();
1083 return TotalBytes;
1093 unsigned TotalBytes = getTotalArgumentsSizeInBytes(Args)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
DumpOutputStyle.cpp 1614 size_t TotalBytes = 0;
1619 TotalBytes += Type.length();
1628 P.formatLine("Bytes referenced: {0:N} / {1:N} {2:P}", RefBytes, TotalBytes,
1629 (double)RefBytes / TotalBytes);
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 1053 unsigned TotalBytes = 0;
1060 TotalBytes += counts[Idx] * sizeof(Name##Type); \
1065 llvm::errs() << "Total bytes = " << TotalBytes << "\n";

Completed in 50 milliseconds