Lines Matching full:numbytes
180 void EmitFill(uint64_t NumBytes, uint8_t FillValue) override;
783 /// EmitFill - Emit NumBytes bytes worth of the value specified by
785 void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue) {
786 if (NumBytes == 0) return;
789 OS << ZeroDirective << NumBytes;
797 MCStreamer::EmitFill(NumBytes, FillValue);