Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProfReader.h557 static bool hasFormat(const MemoryBuffer &Buffer);
645 static bool hasFormat(const MemoryBuffer &Buffer);
765 static bool hasFormat(const MemoryBuffer &Buffer);
790 static bool hasFormat(const MemoryBuffer &Buffer);
831 static bool hasFormat(const MemoryBuffer &Buffer);
H A DInstrProfReader.h178 static bool hasFormat(const MemoryBuffer &Buffer);
237 static bool hasFormat(const MemoryBuffer &DataBuffer);
502 static bool hasFormat(const MemoryBuffer &DataBuffer);
/freebsd-13.1/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfReader.cpp74 if (IndexedInstrProfReader::hasFormat(*Buffer)) in create()
76 else if (RawInstrProfReader64::hasFormat(*Buffer)) in create()
78 else if (RawInstrProfReader32::hasFormat(*Buffer)) in create()
80 else if (TextInstrProfReader::hasFormat(*Buffer)) in create()
121 if (!IndexedInstrProfReader::hasFormat(*Buffer)) in create()
141 bool TextInstrProfReader::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in TextInstrProfReader
302 bool RawInstrProfReader<IntPtrT>::hasFormat(const MemoryBuffer &DataBuffer) { in hasFormat() function in RawInstrProfReader
313 if (!hasFormat(*DataBuffer)) in readHeader()
776 bool IndexedInstrProfReader::hasFormat(const MemoryBuffer &DataBuffer) { in hasFormat() function in IndexedInstrProfReader
H A DSampleProfReader.cpp369 bool SampleProfileReaderText::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in SampleProfileReaderText
1302 bool SampleProfileReaderRawBinary::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in SampleProfileReaderRawBinary
1309 bool SampleProfileReaderExtBinary::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in SampleProfileReaderExtBinary
1316 bool SampleProfileReaderCompactBinary::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in SampleProfileReaderCompactBinary
1562 bool SampleProfileReaderGCC::hasFormat(const MemoryBuffer &Buffer) { in hasFormat() function in SampleProfileReaderGCC
1703 if (SampleProfileReaderRawBinary::hasFormat(*B)) in create()
1705 else if (SampleProfileReaderExtBinary::hasFormat(*B)) in create()
1707 else if (SampleProfileReaderCompactBinary::hasFormat(*B)) in create()
1709 else if (SampleProfileReaderGCC::hasFormat(*B)) in create()
1711 else if (SampleProfileReaderText::hasFormat(*B)) in create()