Searched refs:MapleFileProf (Results 1 – 2 of 2) sorted by relevance
116 const MapleFileProf *funcProf = nullptr; in ParseFunc()120 funcProf = reinterpret_cast<const MapleFileProf *>(data + offset); in ParseFunc()126 … funcItem = reinterpret_cast<const FunctionItem *>(data + offset + sizeof(MapleFileProf)); in ParseFunc()140 offset += sizeof(MapleFileProf) + funcProf->size; in ParseFunc()146 const MapleFileProf *methodSigProf = nullptr; in ParseMethodSignature()150 methodSigProf = reinterpret_cast<const MapleFileProf *>(data + offset); in ParseMethodSignature()156 …thodSigItem = reinterpret_cast<const MethodSignatureItem *>(data + offset + sizeof(MapleFileProf)); in ParseMethodSignature()163 offset += sizeof(MapleFileProf) + methodSigProf->size; in ParseMethodSignature()169 const MapleFileProf *funcProf = nullptr; in ParseIRFuncDesc()173 funcProf = reinterpret_cast<const MapleFileProf *>(data + offset); in ParseIRFuncDesc()[all …]
108 struct MapleFileProf { struct112 MapleFileProf(uint32_t idx, uint32_t num, uint32_t size) : idx(idx), num(num), size(size) {} in MapleFileProf() function