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

  /external/llvm/lib/Transforms/Utils/
BuildLibCalls.cpp 121 case LibFunc::strchr:
736 if (!TLI->has(LibFunc::strchr))
742 Constant *StrChr =
743 M->getOrInsertFunction("strchr", I8Ptr, I8Ptr, I32Ty, nullptr);
744 inferLibFuncAttributes(*M->getFunction("strchr"), *TLI);
746 StrChr, {castToCStr(Ptr, B), ConstantInt::get(I32Ty, C)}, "strchr");
747 if (const Function *F = dyn_cast<Function>(StrChr->stripPointerCasts()))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
BuildLibCalls.cpp 52 /// EmitStrChr - Emit a call to the strchr function to the builder, for the
63 Constant *StrChr = M->getOrInsertFunction("strchr", AttrListPtr::get(&AWI, 1),
65 CallInst *CI = B.CreateCall2(StrChr, CastToCStr(Ptr, B),
66 ConstantInt::get(I32Ty, C), "strchr");
67 if (const Function *F = dyn_cast<Function>(StrChr->stripPointerCasts()))
  /external/v8/src/base/platform/
platform-posix.cc 532 char* OS::StrChr(char* str, int c) {
533 return strchr(str, c);
697 char* period_pos = strchr(buffer, '.');
platform-win32.cc 669 char* OS::StrChr(char* str, int c) {
670 return const_cast<char*>(strchr(str, c));
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
SimplifyLibCalls.cpp 230 // 'strchr' Optimizations
234 // Verify the "strchr" function prototype.
266 // strchr can find the nul character.
271 if (I == std::string::npos) // Didn't find the char. strchr returns null.
274 // strchr(s+n,c) -> gep(s+n+i,c)
275 return B.CreateGEP(SrcStr, B.getInt64(I), "strchr");
301 // strrchr(s, 0) -> strchr(s, 0)
570 // strpbrk(s, "a") -> strchr(s, 'a')
716 // fold strstr(x, "y") -> strchr(x, 'y').
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
shlwapi.h 142 #define StrChr __MINGW_NAME_AW(StrChr)
    [all...]

Completed in 374 milliseconds