Lines Matching refs:IntPtrT
232 template <class IntPtrT>
233 bool RawInstrProfReader<IntPtrT>::hasFormat(const MemoryBuffer &DataBuffer) { in hasFormat()
238 return RawInstrProf::getMagic<IntPtrT>() == Magic || in hasFormat()
239 sys::getSwappedBytes(RawInstrProf::getMagic<IntPtrT>()) == Magic; in hasFormat()
242 template <class IntPtrT>
243 std::error_code RawInstrProfReader<IntPtrT>::readHeader() { in readHeader()
250 ShouldSwapBytes = Header->Magic != RawInstrProf::getMagic<IntPtrT>(); in readHeader()
254 template <class IntPtrT>
256 RawInstrProfReader<IntPtrT>::readNextHeader(const char *CurrentPos) { in readNextHeader()
273 if (Magic != swap(RawInstrProf::getMagic<IntPtrT>())) in readNextHeader()
281 template <class IntPtrT>
282 void RawInstrProfReader<IntPtrT>::createSymtab(InstrProfSymtab &Symtab) { in createSymtab()
283 for (const RawInstrProf::ProfileData<IntPtrT> *I = Data; I != DataEnd; ++I) { in createSymtab()
286 const IntPtrT FPtr = swap(I->FunctionPointer); in createSymtab()
294 template <class IntPtrT>
296 RawInstrProfReader<IntPtrT>::readHeader(const RawInstrProf::Header &Header) { in readHeader()
308 auto DataSizeInBytes = DataSize * sizeof(RawInstrProf::ProfileData<IntPtrT>); in readHeader()
321 Data = reinterpret_cast<const RawInstrProf::ProfileData<IntPtrT> *>( in readHeader()
335 template <class IntPtrT>
336 std::error_code RawInstrProfReader<IntPtrT>::readName(InstrProfRecord &Record) { in readName()
345 template <class IntPtrT>
346 std::error_code RawInstrProfReader<IntPtrT>::readFuncHash( in readFuncHash()
352 template <class IntPtrT>
353 std::error_code RawInstrProfReader<IntPtrT>::readRawCounts( in readRawCounts()
356 IntPtrT CounterPtr = Data->CounterPtr; in readRawCounts()
379 template <class IntPtrT>
381 RawInstrProfReader<IntPtrT>::readValueProfilingData(InstrProfRecord &Record) { in readValueProfilingData()
406 template <class IntPtrT>
408 RawInstrProfReader<IntPtrT>::readNextRecord(InstrProfRecord &Record) { in readNextRecord()