Lines Matching refs:Offset

33     OS << format("    %d: Offset = 0x%llx, Length = 0x%llx\n", I++, CU.Offset,  in dumpCUList()
44 I++, TU.Offset, TU.TypeOffset, TU.TypeSignature); in dumpTUList()
116 uint64_t Offset = 0; in parseImpl() local
119 Version = Data.getU32(&Offset); in parseImpl()
123 CuListOffset = Data.getU32(&Offset); in parseImpl()
124 TuListOffset = Data.getU32(&Offset); in parseImpl()
125 AddressAreaOffset = Data.getU32(&Offset); in parseImpl()
126 SymbolTableOffset = Data.getU32(&Offset); in parseImpl()
127 ConstantPoolOffset = Data.getU32(&Offset); in parseImpl()
129 if (Offset != CuListOffset) in parseImpl()
135 uint64_t CuOffset = Data.getU64(&Offset); in parseImpl()
136 uint64_t CuLength = Data.getU64(&Offset); in parseImpl()
145 uint64_t CuOffset = Data.getU64(&Offset); in parseImpl()
146 uint64_t TypeOffset = Data.getU64(&Offset); in parseImpl()
147 uint64_t Signature = Data.getU64(&Offset); in parseImpl()
154 uint64_t LowAddress = Data.getU64(&Offset); in parseImpl()
155 uint64_t HighAddress = Data.getU64(&Offset); in parseImpl()
156 uint32_t CuIndex = Data.getU32(&Offset); in parseImpl()
172 uint32_t NameOffset = Data.getU32(&Offset); in parseImpl()
173 uint32_t CuVecOffset = Data.getU32(&Offset); in parseImpl()
183 Offset = ConstantPoolOffset + CUOffset; in parseImpl()
186 Vec.first = Offset - ConstantPoolOffset; in parseImpl()
188 uint32_t Num = Data.getU32(&Offset); in parseImpl()
190 Vec.second.push_back(Data.getU32(&Offset)); in parseImpl()
193 ConstantPoolStrings = Data.getData().drop_front(Offset); in parseImpl()
194 StringPoolOffset = Offset; in parseImpl()