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 58 /// getNameWithPrefix - Fill OutName with the name of the appropriate prefix
61 void getNameWithPrefix(SmallVectorImpl<char> &OutName, const GlobalValue *GV,
64 /// getNameWithPrefix - Fill OutName with the name of the appropriate prefix
67 void getNameWithPrefix(SmallVectorImpl<char> &OutName, const Twine &GVName,
  /external/clang/lib/CodeGen/
CodeGenTBAA.cpp 150 SmallString<256> OutName;
151 llvm::raw_svector_ostream Out(OutName);
154 return MetadataCache[Ty] = MDHelper.createTBAANode(OutName, getChar());
CGRTTI.cpp 116 SmallString<256> OutName;
117 llvm::raw_svector_ostream Out(OutName);
120 StringRef Name = OutName.str();
138 SmallString<256> OutName;
139 llvm::raw_svector_ostream Out(OutName);
142 StringRef Name = OutName.str();
535 SmallString<256> OutName;
536 llvm::raw_svector_ostream Out(OutName);
539 StringRef Name = OutName.str();
555 SmallString<256> OutName;
    [all...]
CGVTT.cpp 102 SmallString<256> OutName;
103 llvm::raw_svector_ostream Out(OutName);
106 StringRef Name = OutName.str();
CGVTables.cpp 623 SmallString<256> OutName;
624 llvm::raw_svector_ostream Out(OutName);
627 StringRef Name = OutName.str();
677 SmallString<256> OutName;
678 llvm::raw_svector_ostream Out(OutName);
683 StringRef Name = OutName.str();

Completed in 54 milliseconds