Lines Matching refs:IntPtrT

292 template <class IntPtrT>
293 bool RawInstrProfReader<IntPtrT>::hasFormat(const MemoryBuffer &DataBuffer) { in hasFormat()
298 return RawInstrProf::getMagic<IntPtrT>() == Magic || in hasFormat()
299 sys::getSwappedBytes(RawInstrProf::getMagic<IntPtrT>()) == Magic; in hasFormat()
302 template <class IntPtrT>
303 Error RawInstrProfReader<IntPtrT>::readHeader() { in readHeader()
310 ShouldSwapBytes = Header->Magic != RawInstrProf::getMagic<IntPtrT>(); in readHeader()
314 template <class IntPtrT>
315 Error RawInstrProfReader<IntPtrT>::readNextHeader(const char *CurrentPos) { in readNextHeader()
332 if (Magic != swap(RawInstrProf::getMagic<IntPtrT>())) in readNextHeader()
340 template <class IntPtrT>
341 Error RawInstrProfReader<IntPtrT>::createSymtab(InstrProfSymtab &Symtab) { in createSymtab()
344 for (const RawInstrProf::ProfileData<IntPtrT> *I = Data; I != DataEnd; ++I) { in createSymtab()
345 const IntPtrT FPtr = swap(I->FunctionPointer); in createSymtab()
353 template <class IntPtrT>
354 Error RawInstrProfReader<IntPtrT>::readHeader( in readHeader()
367 auto DataSizeInBytes = DataSize * sizeof(RawInstrProf::ProfileData<IntPtrT>); in readHeader()
379 Data = reinterpret_cast<const RawInstrProf::ProfileData<IntPtrT> *>( in readHeader()
394 template <class IntPtrT>
395 Error RawInstrProfReader<IntPtrT>::readName(NamedInstrProfRecord &Record) { in readName()
400 template <class IntPtrT>
401 Error RawInstrProfReader<IntPtrT>::readFuncHash(NamedInstrProfRecord &Record) { in readFuncHash()
406 template <class IntPtrT>
407 Error RawInstrProfReader<IntPtrT>::readRawCounts( in readRawCounts()
410 IntPtrT CounterPtr = Data->CounterPtr; in readRawCounts()
433 template <class IntPtrT>
434 Error RawInstrProfReader<IntPtrT>::readValueProfilingData( in readValueProfilingData()
462 template <class IntPtrT>
463 Error RawInstrProfReader<IntPtrT>::readNextRecord(NamedInstrProfRecord &Record) { in readNextRecord()