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

  /external/v8/src/crankshaft/
compilation-phase.cc 40 base::OS::StrChr(const_cast<char*>(FLAG_trace_phase), name_[0]) !=
  /external/compiler-rt/lib/asan/tests/
asan_str_test.cc 212 // Users may have different definitions of "strchr" and "index", so provide
220 static void RunStrChrTestImpl(StrChrFn *StrChr) {
225 EXPECT_EQ(str, StrChr(str, 'z'));
226 EXPECT_EQ(str + 10, StrChr(str, 'q'));
227 EXPECT_EQ(NULL, StrChr(str, 'a'));
228 // StrChr argument points to not allocated memory.
229 EXPECT_DEATH(Ident(StrChr(str - 1, 'z')), LeftOOBReadMessage(1));
230 EXPECT_DEATH(Ident(StrChr(str + size, 'z')), RightOOBReadMessage(0));
233 EXPECT_DEATH(Ident(StrChr(str, 'a')), RightOOBReadMessage(0));
238 UNUSED static void RunStrChrTest(PointerToStrChr1 StrChr, ...)
    [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.h 241 static char* StrChr(char* str, int c);
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/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...]
SimplifyLibCalls.cpp 204 if (CharC->isZero()) // strchr(p, 0) -> p + strlen(p)
206 "strchr");
215 if (I == StringRef::npos) // Didn't find the char. strchr returns null.
218 // strchr(s+n,c) -> gep(s+n+i,c)
219 return B.CreateGEP(B.getInt8Ty(), SrcStr, B.getInt64(I), "strchr");
232 // strrchr(s, 0) -> strchr(s, 0)
501 // strpbrk(s, "a") -> strchr(s, 'a')
610 // fold strstr(x, "y") -> strchr(x, 'y').
612 Value *StrChr = emitStrChr(CI->getArgOperand(0), ToFindStr[0], B, TLI);
613 return StrChr ? B.CreateBitCast(StrChr, CI->getType()) : nullptr
    [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...]
  /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...]

Completed in 587 milliseconds