Lines Matching refs:Vector
40 template<typename Vector>
43 const DebugFrameOpCodeWriter<Vector>& opcodes, in WriteCIE()
45 static_assert(std::is_same<typename Vector::value_type, uint8_t>::value, "Invalid value type"); in WriteCIE()
53 writer.PushUleb128(DebugFrameOpCodeWriter<Vector>::kCodeAlignmentFactor); in WriteCIE()
54 writer.PushSleb128(DebugFrameOpCodeWriter<Vector>::kDataAlignmentFactor); in WriteCIE()
94 template<typename Vector>
96 const DebugInfoEntryWriter<Vector>& entries, in WriteDebugInfoCU()
98 static_assert(std::is_same<typename Vector::value_type, uint8_t>::value, "Invalid value type"); in WriteDebugInfoCU()
107 DCHECK_EQ(entries_offset, DebugInfoEntryWriter<Vector>::kCompilationUnitHeaderSize); in WriteDebugInfoCU()
120 template<typename Vector>
123 const DebugLineOpCodeWriter<Vector>& opcodes, in WriteDebugLineTable()
125 static_assert(std::is_same<typename Vector::value_type, uint8_t>::value, "Invalid value type"); in WriteDebugLineTable()
134 writer.PushUint8(DebugLineOpCodeWriter<Vector>::kDefaultIsStmt ? 1 : 0); in WriteDebugLineTable()
135 writer.PushInt8(DebugLineOpCodeWriter<Vector>::kLineBase); in WriteDebugLineTable()
136 writer.PushUint8(DebugLineOpCodeWriter<Vector>::kLineRange); in WriteDebugLineTable()
137 writer.PushUint8(DebugLineOpCodeWriter<Vector>::kOpcodeBase); in WriteDebugLineTable()
138 static const int opcode_lengths[DebugLineOpCodeWriter<Vector>::kOpcodeBase] = { in WriteDebugLineTable()
140 for (int i = 1; i < DebugLineOpCodeWriter<Vector>::kOpcodeBase; i++) { in WriteDebugLineTable()