HomeSort by relevance Sort by last modified time
    Searched defs:DescValue (Results 1 - 4 of 4) sorted by null

  /external/llvm/lib/MC/
MCAsmStreamer.cpp 145 void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) override;
554 void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
557 OS << ',' << DescValue;
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/MCParser/
DarwinAsmParser.cpp 339 int64_t DescValue;
340 if (getParser().ParseAbsoluteExpression(DescValue))
348 // Set the n_desc field of this Symbol to this DescValue
349 getStreamer().EmitSymbolDesc(Sym, DescValue);
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 454 int64_t DescValue;
455 if (getParser().parseAbsoluteExpression(DescValue))
463 // Set the n_desc field of this Symbol to this DescValue
464 getStreamer().EmitSymbolDesc(Sym, DescValue);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
MCAsmStreamer.cpp 148 virtual void EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue);
443 void MCAsmStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) {
444 OS << ".desc" << ' ' << *Symbol << ',' << DescValue;
    [all...]

Completed in 424 milliseconds