Home
last modified time | relevance | path

Searched refs:totalBytes (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/flang/runtime/
H A Ddescriptor-io.h343 auto Transfer{[=](CharType &x, std::size_t totalBytes, in UnformattedDescriptorIO()
346 return externalUnf ? externalUnf->Emit(&x, totalBytes, elementBytes) in UnformattedDescriptorIO()
347 : childUnf ? childUnf->Emit(&x, totalBytes, elementBytes) in UnformattedDescriptorIO()
348 : inq->Emit(&x, totalBytes, elementBytes); in UnformattedDescriptorIO()
350 return externalUnf ? externalUnf->Receive(&x, totalBytes, elementBytes) in UnformattedDescriptorIO()
351 : childUnf->Receive(&x, totalBytes, elementBytes); in UnformattedDescriptorIO()
H A Dunit.cpp132 auto totalBytes{knownSize()}; in OpenUnit() local
142 } else if (totalBytes && (*totalBytes % *openRecl != 0)) { in OpenUnit()
147 static_cast<std::intmax_t>(*totalBytes)); in OpenUnit()
153 if (totalBytes && access == Access::Direct && openRecl.value_or(0) > 0) { in OpenUnit()
154 endfileRecordNumber = 1 + (*totalBytes / *openRecl); in OpenUnit()
157 if (totalBytes) { in OpenUnit()
158 frameOffsetInFile_ = *totalBytes; in OpenUnit()
/llvm-project-15.0.7/clang/lib/AST/
H A DDeclBase.cpp178 int totalBytes = 0; in PrintStats() local
181 totalBytes += (int)(n##DERIVED##s * sizeof(DERIVED##Decl)); \ in PrintStats()
190 llvm::errs() << "Total bytes = " << totalBytes << "\n"; in PrintStats()
/llvm-project-15.0.7/flang/lib/Optimizer/Builder/
H A DCharacter.cpp332 auto totalBytes = in createCopy() local
340 loc, memmv, mlir::ValueRange{toPtr, fromPtr, totalBytes, notVolatile}); in createCopy()