Lines Matching full:dword
33 virtual void emitSLEB128(uint64_t DWord, const Twine &Comment = "") = 0;
34 virtual void emitULEB128(uint64_t DWord, const Twine &Comment = "",
49 void emitSLEB128(uint64_t DWord, const Twine &Comment) override { in emitSLEB128() argument
51 AP.emitSLEB128(DWord); in emitSLEB128()
53 void emitULEB128(uint64_t DWord, const Twine &Comment, in emitULEB128() argument
56 AP.emitULEB128(DWord, nullptr, PadTo); in emitULEB128()
77 void emitSLEB128(uint64_t DWord, const Twine &Comment) override { in emitSLEB128() argument
78 Hash.addSLEB128(DWord); in emitSLEB128()
80 void emitULEB128(uint64_t DWord, const Twine &Comment, in emitULEB128() argument
82 Hash.addULEB128(DWord); in emitULEB128()
110 void emitSLEB128(uint64_t DWord, const Twine &Comment) override { in emitSLEB128() argument
112 unsigned Length = encodeSLEB128(DWord, OSE); in emitSLEB128()
122 void emitULEB128(uint64_t DWord, const Twine &Comment, in emitULEB128() argument
125 unsigned Length = encodeULEB128(DWord, OSE, PadTo); in emitULEB128()