Lines Matching refs:DWord
33 virtual void emitSLEB128(uint64_t DWord, const Twine &Comment = "") = 0;
34 virtual void emitULEB128(uint64_t DWord, const Twine &Comment = "",
48 void emitSLEB128(uint64_t DWord, const Twine &Comment) override { in emitSLEB128() argument
50 AP.emitSLEB128(DWord); in emitSLEB128()
52 void emitULEB128(uint64_t DWord, const Twine &Comment, in emitULEB128() argument
55 AP.emitULEB128(DWord, nullptr, PadTo); in emitULEB128()
67 void emitSLEB128(uint64_t DWord, const Twine &Comment) override { in emitSLEB128() argument
68 Hash.addSLEB128(DWord); in emitSLEB128()
70 void emitULEB128(uint64_t DWord, const Twine &Comment, in emitULEB128() argument
72 Hash.addULEB128(DWord); in emitULEB128()
96 void emitSLEB128(uint64_t DWord, const Twine &Comment) override { in emitSLEB128() argument
98 unsigned Length = encodeSLEB128(DWord, OSE); in emitSLEB128()
108 void emitULEB128(uint64_t DWord, const Twine &Comment, in emitULEB128() argument
111 unsigned Length = encodeULEB128(DWord, OSE, PadTo); in emitULEB128()