Searched refs:BytesInAddress (Results 1 - 4 of 4) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DTestingSupport.cpp42 auto BytesInAddress = OF->getBytesInAddress(); local
43 if (BytesInAddress != 8) {
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp591 StringRef Coverage, InstrProfSymtab &&ProfileNames, uint8_t BytesInAddress,
595 if (BytesInAddress == 4 && Endian == support::endianness::little) {
601 } else if (BytesInAddress == 4 && Endian == support::endianness::big) {
606 } else if (BytesInAddress == 8 && Endian == support::endianness::little) {
612 } else if (BytesInAddress == 8 && Endian == support::endianness::big) {
624 uint8_t BytesInAddress = 8; local
656 CoverageMapping, std::move(ProfileNames), BytesInAddress, Endian);
700 uint8_t BytesInAddress = OF->getBytesInAddress();
728 CoverageMappingOrErr.get(), std::move(ProfileNames), BytesInAddress,
590 createCoverageReaderFromBuffer( StringRef Coverage, InstrProfSymtab &&ProfileNames, uint8_t BytesInAddress, support::endianness Endian) argument
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.cpp186 uint8_t BytesInAddress = Obj->getBytesInAddress(); local
269 const char *DataPtr = SymContents.drop_front(BytesInAddress).data();
271 if (BytesInAddress == 8)
275 TD.MangledName = SymContents.drop_front(BytesInAddress * 2);
324 for (uint64_t SymOffI = 0; SymOffI < SymSize; SymOffI += BytesInAddress) {
329 SymContents.substr(SymOffI, BytesInAddress).data();
331 if (BytesInAddress == 8)
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/Coverage/
H A DCoverageMappingReader.h213 uint8_t BytesInAddress,

Completed in 179 milliseconds