Home | History | Annotate | Download | only in AsmPrinter

Lines Matching refs:DWord

34   virtual void EmitSLEB128(uint64_t DWord, const Twine &Comment = "") = 0;
35 virtual void EmitULEB128(uint64_t DWord, const Twine &Comment = "") = 0;
48 void EmitSLEB128(uint64_t DWord, const Twine &Comment) override {
50 AP.EmitSLEB128(DWord);
52 void EmitULEB128(uint64_t DWord, const Twine &Comment) override {
54 AP.EmitULEB128(DWord);
66 void EmitSLEB128(uint64_t DWord, const Twine &Comment) override {
67 Hash.addSLEB128(DWord);
69 void EmitULEB128(uint64_t DWord, const Twine &Comment) override {
70 Hash.addULEB128(DWord);
94 void EmitSLEB128(uint64_t DWord, const Twine &Comment) override {
96 encodeSLEB128(DWord, OSE);
100 void EmitULEB128(uint64_t DWord, const Twine &Comment) override {
102 encodeULEB128(DWord, OSE);