/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/ |
GlobPattern.cpp | 119 Pat.Suffix = S.drop_front(); 140 if (Suffix) 141 return S.endswith(*Suffix);
|
/external/curl/include/curl/ |
system.h | 484 # define __CURL_OFF_T_C_HLPR2(Val,Suffix) Val ## Suffix 486 # define __CURL_OFF_T_C_HLPR2(Val,Suffix) Val/**/Suffix 488 # define __CURL_OFF_T_C_HLPR1(Val,Suffix) __CURL_OFF_T_C_HLPR2(Val,Suffix)
|
/external/swiftshader/third_party/subzero/src/ |
IceTimerTree.cpp | 277 std::string Suffix = ""; 279 if (Suffix.empty()) 280 Suffix = IDs[Nodes[Prefix].Interior]; 282 Suffix = IDs[Nodes[Prefix].Interior] + "." + Suffix; 288 CumulativeMap.insert(std::make_pair(Nodes[i].Time, PrefixStr + Suffix));
|
/external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/ |
BasicBlockUtils.h | 168 /// suffix of 'Suffix'. This function returns the new block. 177 unsigned NumPreds, const char *Suffix, 194 const char *Suffix, const char *Suffix2,
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/ |
MCAsmParser.cpp | 104 bool MCAsmParser::addErrorSuffix(const Twine &Suffix) { 109 Suffix.toVector(PErr.Msg);
|
/external/clang/soong/ |
clang.go | 40 Suffix *string 48 p.Multilib.Lib32.Suffix = proptools.StringPtr("_32")
|
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
ARMTargetStreamer.cpp | 73 void ARMTargetStreamer::emitInst(uint32_t Inst, char Suffix) {}
|
/external/llvm/lib/Target/PowerPC/ |
PPCMCInstLower.cpp | 45 StringRef Suffix; 47 Suffix = "$non_lazy_ptr"; 49 if (!Suffix.empty()) 60 Name += Suffix; 64 // then add the suffix.
|
/external/llvm/lib/Target/ |
TargetLoweringObjectFile.cpp | 104 const GlobalValue *GV, StringRef Suffix, Mangler &Mang, 106 assert(!Suffix.empty()); 111 NameStr.append(Suffix.begin(), Suffix.end());
|
/external/llvm/tools/bugpoint/ |
Miscompilation.cpp | 53 std::vector<std::string> &Suffix, 63 std::vector<std::string> &Suffix, 65 // First, run the program with just the Suffix passes. If it is still broken 67 outs() << "Checking to see if '" << getPassesString(Suffix) 71 if (BD.runPasses(BD.getProgram(), Suffix, BitcodeResult, false/*delete*/, 75 BD.setPassesToRun(Suffix); 87 if (Suffix.empty()) { 129 // Ok, so now we know that the prefix passes work, try running the suffix 141 // Don't check if there are no passes in the suffix. 142 if (Suffix.empty() [all...] |
/external/swiftshader/third_party/LLVM/tools/bugpoint/ |
Miscompilation.cpp | 52 std::vector<std::string> &Suffix,
62 std::vector<std::string> &Suffix,
64 // First, run the program with just the Suffix passes. If it is still broken
66 outs() << "Checking to see if '" << getPassesString(Suffix)
70 if (BD.runPasses(BD.getProgram(), Suffix, BitcodeResult, false/*delete*/,
74 BD.setPassesToRun(Suffix);
86 if (Suffix.empty()) {
128 // Ok, so now we know that the prefix passes work, try running the suffix
140 // Don't check if there are no passes in the suffix.
141 if (Suffix.empty()) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/ |
PPCMCInstLower.cpp | 45 StringRef Suffix; 47 Suffix = "$non_lazy_ptr"; 49 if (!Suffix.empty()) 60 Name += Suffix; 64 // then add the suffix.
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ |
TargetLoweringObjectFile.cpp | 114 const GlobalValue *GV, StringRef Suffix, const TargetMachine &TM) const { 115 assert(!Suffix.empty()); 120 NameStr.append(Suffix.begin(), Suffix.end());
|
/external/clang/lib/Driver/ |
ToolChain.cpp | 97 const char *Suffix; 121 if (ProgName.endswith(DriverSuffixes[i].Suffix)) 142 // E.g. "x86_64-linux-clang" as interpreted as suffix "clang" with target 173 ProgName.rfind('-', ProgName.size() - strlen(DS->Suffix)); 296 const char *Suffix = Shared ? (Triple.isOSWindows() ? ".dll" : ".so") 303 Arch + Env + Suffix); 476 StringRef Suffix = 478 bool IsMProfile = ARM::parseArchProfile(Suffix) == ARM::PK_M; 479 bool ThumbDefault = IsMProfile || (ARM::parseArchVersion(Suffix) == 7 && 498 Triple.setArchName(ArchName + Suffix.str()) [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
StringRef.h | 276 /// Check if this string ends with the given \p Suffix. 279 bool endswith(StringRef Suffix) const { 280 return Length >= Suffix.Length && 281 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; 284 /// Check if this string ends with the given \p Suffix, ignoring case. 286 bool endswith_lower(StringRef Suffix) const; 595 /// suffix (starting with \p Start) will be returned. 686 /// Returns true if this StringRef has the given suffix and removes tha [all...] |
SmallString.h | 134 /// endswith - Check if this string ends with the given \p Suffix. 135 bool endswith(StringRef Suffix) const { 136 return str().endswith(Suffix); 245 /// suffix (starting with \p Start) will be returned. 258 /// number of characters remaining in the string, the string suffix
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
StringRef.h | 273 /// Check if this string ends with the given \p Suffix. 276 bool endswith(StringRef Suffix) const { 277 return Length >= Suffix.Length && 278 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; 281 /// Check if this string ends with the given \p Suffix, ignoring case. 283 bool endswith_lower(StringRef Suffix) const; 584 /// suffix (starting with \p Start) will be returned. 675 /// Returns true if this StringRef has the given suffix and removes tha [all...] |
SmallString.h | 134 /// endswith - Check if this string ends with the given \p Suffix. 135 bool endswith(StringRef Suffix) const { 136 return str().endswith(Suffix); 245 /// suffix (starting with \p Start) will be returned. 258 /// number of characters remaining in the string, the string suffix
|
/external/llvm/include/llvm/ADT/ |
StringRef.h | 240 /// Check if this string ends with the given \p Suffix. 242 bool endswith(StringRef Suffix) const { 243 return Length >= Suffix.Length && 244 compareMemory(end() - Suffix.Length, Suffix.Data, Suffix.Length) == 0; 247 /// Check if this string ends with the given \p Suffix, ignoring case. 248 bool endswith_lower(StringRef Suffix) const; 423 /// suffix (starting with \p Start) will be returned. 454 /// remaining in the string, the string suffix (starting with \p Start [all...] |
SmallString.h | 134 /// endswith - Check if this string ends with the given \p Suffix. 135 bool endswith(StringRef Suffix) const { 136 return str().endswith(Suffix); 245 /// suffix (starting with \p Start) will be returned. 258 /// number of characters remaining in the string, the string suffix
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Orc/ |
CompileOnDemandLayer.cpp | 75 extractAndClone(Module &M, LLVMContext &NewContext, StringRef Suffix, 117 ClonedModule->setModuleIdentifier((M.getName() + Suffix).str()); 158 std::string Suffix; 165 Suffix += "."; 166 Suffix += *Name; 171 extractAndClone(*M, Parent.GetAvailableContext(), Suffix,
|
/external/pdfium/third_party/lcms/src/ |
cmsnamed.c | 532 cmsNAMEDCOLORLIST* CMSEXPORT cmsAllocNamedColorList(cmsContext ContextID, cmsUInt32Number n, cmsUInt32Number ColorantCount, const char* Prefix, const char* Suffix) 550 strncpy(v ->Suffix, Suffix, sizeof(v ->Suffix)-1); 551 v->Prefix[32] = v->Suffix[32] = 0; 572 NewNC= cmsAllocNamedColorList(v ->ContextID, v -> nColors, v ->ColorantCount, v ->Prefix, v ->Suffix); 584 memmove(NewNC ->Suffix, v ->Suffix, sizeof(v ->Suffix)); 636 char* Suffix, [all...] |
/external/llvm/include/llvm/Transforms/Utils/ |
BasicBlockUtils.h | 185 /// given a suffix of 'Suffix'. Returns new basic block to which predecessors 189 /// It will have Suffix+".split_lp". See SplitLandingPadPredecessors for more 198 const char *Suffix, 217 const char *Suffix, const char *Suffix2,
|
/external/lzma/C/ |
Ppmd7.h | 37 CPpmd7_Context_Ref Suffix;
90 p->NS2BSIndx[(size_t)Ppmd7_GetContext(p, p->MinContext->Suffix)->NumStats - 1] + \
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/ |
BasicBlockUtils.h | 191 /// given a suffix of 'Suffix'. Returns new basic block to which predecessors 195 /// It will have Suffix+".split_lp". See SplitLandingPadPredecessors for more 203 const char *Suffix, 221 const char *Suffix, const char *Suffix2,
|