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

  /external/llvm/lib/Target/
Mangler.cpp 41 static void MangleLetter(SmallVectorImpl<char> &OutName, unsigned char C) {
42 OutName.push_back('_');
43 OutName.push_back(HexDigit(C >> 4));
44 OutName.push_back(HexDigit(C & 15));
45 OutName.push_back('_');
70 static void appendMangledName(SmallVectorImpl<char> &OutName, StringRef Str,
75 MangleLetter(OutName, Str[0]);
83 MangleLetter(OutName, Str[i]);
85 OutName.push_back(Str[i]);
93 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 162 SmallString<256> OutName;
163 llvm::raw_svector_ostream Out(OutName);
166 return MetadataCache[Ty] = createTBAAScalarType(OutName, getChar());
279 SmallString<256> OutName;
280 llvm::raw_svector_ostream Out(OutName);
285 MDHelper.createTBAAStructTypeNode(OutName, Fields);
CGVTT.cpp 102 SmallString<256> OutName;
103 llvm::raw_svector_ostream Out(OutName);
106 StringRef Name = OutName.str();
MicrosoftVBTables.cpp 171 SmallString<256> OutName;
172 llvm::raw_svector_ostream Out(OutName);
176 StringRef Name = OutName.str();
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();
516 SmallString<256> OutName;
517 llvm::raw_svector_ostream Out(OutName);
520 StringRef Name = OutName.str();
    [all...]
CGVTables.cpp 643 SmallString<256> OutName;
644 llvm::raw_svector_ostream Out(OutName);
647 StringRef Name = OutName.str();
697 SmallString<256> OutName;
698 llvm::raw_svector_ostream Out(OutName);
703 StringRef Name = OutName.str();
    [all...]

Completed in 172 milliseconds