HomeSort by relevance Sort by last modified time
    Searched refs:OutName (Results 1 - 6 of 6) sorted by null

  /external/llvm/lib/Target/
Mangler.cpp 40 static void MangleLetter(SmallVectorImpl<char> &OutName, unsigned char C) {
41 OutName.push_back('_');
42 OutName.push_back(HexDigit(C >> 4));
43 OutName.push_back(HexDigit(C & 15));
44 OutName.push_back('_');
69 static void appendMangledName(SmallVectorImpl<char> &OutName, StringRef Str,
74 MangleLetter(OutName, Str[0]);
82 MangleLetter(OutName, Str[i]);
84 OutName.push_back(Str[i]);
92 static void appendMangledQuotedName(SmallVectorImpl<char> &OutName,
    [all...]
  /external/llvm/include/llvm/Target/
Mangler.h 57 /// getNameWithPrefix - Fill OutName with the name of the appropriate prefix
60 void getNameWithPrefix(SmallVectorImpl<char> &OutName, const GlobalValue *GV,
63 /// getNameWithPrefix - Fill OutName with the name of the appropriate prefix
66 void getNameWithPrefix(SmallVectorImpl<char> &OutName, const Twine &GVName,
  /external/clang/lib/CodeGen/
CGRTTI.cpp 115 SmallString<256> OutName;
116 llvm::raw_svector_ostream Out(OutName);
119 StringRef Name = OutName.str();
137 SmallString<256> OutName;
138 llvm::raw_svector_ostream Out(OutName);
141 StringRef Name = OutName.str();
546 SmallString<256> OutName;
547 llvm::raw_svector_ostream Out(OutName);
550 StringRef Name = OutName.str();
566 SmallString<256> OutName;
    [all...]
CGVTT.cpp 102 SmallString<256> OutName;
103 llvm::raw_svector_ostream Out(OutName);
106 StringRef Name = OutName.str();
CodeGenTBAA.cpp 158 SmallString<256> OutName;
159 llvm::raw_svector_ostream Out(OutName);
162 return MetadataCache[Ty] = MDHelper.createTBAANode(OutName, getChar());
CGVTables.cpp 624 SmallString<256> OutName;
625 llvm::raw_svector_ostream Out(OutName);
628 StringRef Name = OutName.str();
678 SmallString<256> OutName;
679 llvm::raw_svector_ostream Out(OutName);
684 StringRef Name = OutName.str();
    [all...]

Completed in 289 milliseconds