Home | History | Annotate | Download | only in MC

Lines Matching defs:NumBytes

197   virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue);
732 /// EmitFill - Emit NumBytes bytes worth of the value specified by
734 void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue) {
735 if (NumBytes == 0) return;
738 OS << ZeroDirective << NumBytes;
746 MCStreamer::EmitFill(NumBytes, FillValue);