Searched refs:OutName (Results 1 - 6 of 6) sorted by relevance

/external/llvm/lib/Target/
H A DMangler.cpp40 static void MangleLetter(SmallVectorImpl<char> &OutName, unsigned char C) { argument
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, argument
74 MangleLetter(OutName, Str[0]);
82 MangleLetter(OutName, Str[i]);
84 OutName.push_back(Str[i]);
92 static void appendMangledQuotedName(SmallVectorImpl<char> &OutName, argument
106 getNameWithPrefix(SmallVectorImpl<char> &OutName, const Twine &GVName, ManglerPrefixTy PrefixTy) argument
159 AddFastCallStdCallSuffix(SmallVectorImpl<char> &OutName, const Function *F, const TargetData &TD) argument
180 getNameWithPrefix(SmallVectorImpl<char> &OutName, const GlobalValue *GV, bool isImplicitlyPrivate) argument
[all...]
/external/llvm/include/llvm/Target/
H A DMangler.h58 /// 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/
H A DCodeGenTBAA.cpp156 SmallString<256> OutName;
157 llvm::raw_svector_ostream Out(OutName);
160 return MetadataCache[Ty] = MDHelper.createTBAANode(OutName, getChar());
H A DCGRTTI.cpp115 SmallString<256> OutName; local
116 llvm::raw_svector_ostream Out(OutName);
119 StringRef Name = OutName.str();
137 SmallString<256> OutName; local
138 llvm::raw_svector_ostream Out(OutName);
141 StringRef Name = OutName.str();
534 SmallString<256> OutName; local
535 llvm::raw_svector_ostream Out(OutName);
538 StringRef Name = OutName.str();
554 SmallString<256> OutName; local
[all...]
H A DCGVTT.cpp102 SmallString<256> OutName; local
103 llvm::raw_svector_ostream Out(OutName);
106 StringRef Name = OutName.str();
H A DCGVTables.cpp626 SmallString<256> OutName; local
627 llvm::raw_svector_ostream Out(OutName);
630 StringRef Name = OutName.str();
680 SmallString<256> OutName; local
681 llvm::raw_svector_ostream Out(OutName);
686 StringRef Name = OutName.str();

Completed in 97 milliseconds