Lines Matching refs:FillValue
188 void emitFill(uint64_t NumBytes, uint8_t FillValue) override;
190 void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
873 /// FillValue. This implements directives such as '.space'.
874 void MCAsmStreamer::emitFill(uint64_t NumBytes, uint8_t FillValue) {
878 emitFill(*E, FillValue);
881 void MCAsmStreamer::emitFill(const MCExpr &NumBytes, uint64_t FillValue,
887 if (FillValue != 0)
888 OS << ',' << (int)FillValue;
893 MCStreamer::emitFill(NumBytes, FillValue);