Home | History | Annotate | Download | only in AsmPrinter

Lines Matching full:dword

35   virtual void EmitSLEB128(uint64_t DWord, const Twine &Comment = "") = 0;
36 virtual void EmitULEB128(uint64_t DWord, const Twine &Comment = "") = 0;
49 void EmitSLEB128(uint64_t DWord, const Twine &Comment) override {
51 AP.EmitSLEB128(DWord);
53 void EmitULEB128(uint64_t DWord, const Twine &Comment) override {
55 AP.EmitULEB128(DWord);
67 void EmitSLEB128(uint64_t DWord, const Twine &Comment) override {
68 Hash.addSLEB128(DWord);
70 void EmitULEB128(uint64_t DWord, const Twine &Comment) override {
71 Hash.addULEB128(DWord);
95 void EmitSLEB128(uint64_t DWord, const Twine &Comment) override {
97 encodeSLEB128(DWord, OSE);
101 void EmitULEB128(uint64_t DWord, const Twine &Comment) override {
103 encodeULEB128(DWord, OSE);