Lines Matching refs:IntPtrT

253 template <class IntPtrT>
254 bool RawInstrProfReader<IntPtrT>::hasFormat(const MemoryBuffer &DataBuffer) { in hasFormat()
259 return RawInstrProf::getMagic<IntPtrT>() == Magic || in hasFormat()
260 sys::getSwappedBytes(RawInstrProf::getMagic<IntPtrT>()) == Magic; in hasFormat()
263 template <class IntPtrT>
264 Error RawInstrProfReader<IntPtrT>::readHeader() { in readHeader()
271 ShouldSwapBytes = Header->Magic != RawInstrProf::getMagic<IntPtrT>(); in readHeader()
275 template <class IntPtrT>
276 Error RawInstrProfReader<IntPtrT>::readNextHeader(const char *CurrentPos) { in readNextHeader()
293 if (Magic != swap(RawInstrProf::getMagic<IntPtrT>())) in readNextHeader()
301 template <class IntPtrT>
302 Error RawInstrProfReader<IntPtrT>::createSymtab(InstrProfSymtab &Symtab) { in createSymtab()
305 for (const RawInstrProf::ProfileData<IntPtrT> *I = Data; I != DataEnd; ++I) { in createSymtab()
306 const IntPtrT FPtr = swap(I->FunctionPointer); in createSymtab()
315 template <class IntPtrT>
316 Error RawInstrProfReader<IntPtrT>::readHeader( in readHeader()
329 auto DataSizeInBytes = DataSize * sizeof(RawInstrProf::ProfileData<IntPtrT>); in readHeader()
341 Data = reinterpret_cast<const RawInstrProf::ProfileData<IntPtrT> *>( in readHeader()
356 template <class IntPtrT>
357 Error RawInstrProfReader<IntPtrT>::readName(InstrProfRecord &Record) { in readName()
362 template <class IntPtrT>
363 Error RawInstrProfReader<IntPtrT>::readFuncHash(InstrProfRecord &Record) { in readFuncHash()
368 template <class IntPtrT>
369 Error RawInstrProfReader<IntPtrT>::readRawCounts( in readRawCounts()
372 IntPtrT CounterPtr = Data->CounterPtr; in readRawCounts()
395 template <class IntPtrT>
396 Error RawInstrProfReader<IntPtrT>::readValueProfilingData( in readValueProfilingData()
425 template <class IntPtrT>
426 Error RawInstrProfReader<IntPtrT>::readNextRecord(InstrProfRecord &Record) { in readNextRecord()