/external/llvm/include/llvm/MC/ |
MCObjectStreamer.h | 144 void emitFill(uint64_t NumBytes, uint8_t FillValue) override; 145 void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
|
MCStreamer.h | 586 /// \brief Emit NumBytes bytes worth of the value specified by FillValue. 588 virtual void emitFill(uint64_t NumBytes, uint8_t FillValue); 590 /// \brief Emit \p Size bytes worth of the value specified by \p FillValue. 595 /// \param FillValue - The value to use when filling bytes. 597 virtual void emitFill(const MCExpr &NumBytes, uint64_t FillValue, [all...] |
/external/swiftshader/third_party/LLVM/lib/Target/PTX/ |
PTXMCAsmStreamer.cpp | 154 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue, 409 /// FillValue. This implements directives such as '.space'. 410 void PTXMCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue, 417 if (FillValue != 0) 418 OS << ',' << (int)FillValue; 424 MCStreamer::EmitFill(NumBytes, FillValue, AddrSpace);
|
/external/swiftshader/third_party/LLVM/lib/MC/ |
MCLoggingStreamer.cpp | 180 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue, 183 return Child->EmitFill(NumBytes, FillValue, AddrSpace);
|
MCAsmStreamer.cpp | 185 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue, 663 /// FillValue. This implements directives such as '.space'. 664 void MCAsmStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue, 671 if (FillValue != 0) 672 OS << ',' << (int)FillValue; 678 MCStreamer::EmitFill(NumBytes, FillValue, AddrSpace); [all...] |
MCStreamer.cpp | 136 /// FillValue. This implements directives such as '.space'. 137 void MCStreamer::EmitFill(uint64_t NumBytes, uint8_t FillValue, 139 const MCExpr *E = MCConstantExpr::Create(FillValue, getContext());
|
/external/tensorflow/tensorflow/core/lib/gtl/ |
flatmap.h | 135 FillValue(); 164 void FillValue() { new (space_) value_type(b_->key(i_), b_->val(i_)); } 173 FillValue();
|
/external/llvm/lib/MC/ |
MCObjectStreamer.cpp | 493 void MCObjectStreamer::emitFill(uint64_t NumBytes, uint8_t FillValue) { 497 insert(new MCFillFragment(FillValue, NumBytes)); 500 void MCObjectStreamer::emitFill(const MCExpr &NumBytes, uint64_t FillValue, 516 emitFill(IntNumBytes, FillValue);
|
MCAsmStreamer.cpp | 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); [all...] |
MCStreamer.cpp | 138 /// Emit NumBytes bytes worth of the value specified by FillValue. 140 void MCStreamer::emitFill(uint64_t NumBytes, uint8_t FillValue) { 142 EmitIntValue(FillValue, 1);
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/ |
MCObjectStreamer.h | 167 void emitFill(const MCExpr &NumBytes, uint64_t FillValue,
|
MCStreamer.h | 679 /// Emit NumBytes bytes worth of the value specified by FillValue. 681 void emitFill(uint64_t NumBytes, uint8_t FillValue); 683 /// Emit \p Size bytes worth of the value specified by \p FillValue. 688 /// \param FillValue - The value to use when filling bytes. 690 virtual void emitFill(const MCExpr &NumBytes, uint64_t FillValue, [all...] |
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
MCStreamer.h | 442 /// FillValue. This implements directives such as '.space'. 443 virtual void EmitFill(uint64_t NumBytes, uint8_t FillValue,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/ |
MCAsmStreamer.cpp | 209 void emitFill(const MCExpr &NumBytes, uint64_t FillValue, [all...] |
MCObjectStreamer.cpp | 620 void MCObjectStreamer::emitFill(const MCExpr &NumBytes, uint64_t FillValue, 626 insert(new MCFillFragment(FillValue, 1, NumBytes, Loc));
|
MCStreamer.cpp | 182 /// Emit NumBytes bytes worth of the value specified by FillValue. 184 void MCStreamer::emitFill(uint64_t NumBytes, uint8_t FillValue) { 185 emitFill(*MCConstantExpr::create(NumBytes, getContext()), FillValue); [all...] |
/external/llvm/lib/Transforms/Utils/ |
SimplifyLibCalls.cpp | 803 auto *FillValue = dyn_cast<ConstantInt>(Memset->getArgOperand(1)); 804 if (!FillValue || FillValue->getZExtValue() != 0) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
SimplifyLibCalls.cpp | 866 auto *FillValue = dyn_cast<ConstantInt>(Memset->getArgOperand(1)); 867 if (!FillValue || FillValue->getZExtValue() != 0) [all...] |