Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/lld/MachO/
DInputFiles.cpp340 auto splitRecords = [&](size_t recordSize) -> void { in parseSections() argument
344 subsections.reserve(data.size() / recordSize); in parseSections()
345 for (uint64_t off = 0; off < data.size(); off += recordSize) { in parseSections()
347 section, data.slice(off, std::min(data.size(), recordSize)), align); in parseSections()
370 } else if (auto recordSize = getRecordSize(segname, name)) { in parseSections() local
371 splitRecords(*recordSize); in parseSections()