Home
last modified time | relevance | path

Searched refs:Str2 (Results 1 – 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DStringRef.cpp435 StringRef Str2 = Str; in consumeUnsignedInteger() local
437 while (!Str2.empty()) { in consumeUnsignedInteger()
439 if (Str2[0] >= '0' && Str2[0] <= '9') in consumeUnsignedInteger()
440 CharVal = Str2[0] - '0'; in consumeUnsignedInteger()
441 else if (Str2[0] >= 'a' && Str2[0] <= 'z') in consumeUnsignedInteger()
442 CharVal = Str2[0] - 'a' + 10; in consumeUnsignedInteger()
443 else if (Str2[0] >= 'A' && Str2[0] <= 'Z') in consumeUnsignedInteger()
444 CharVal = Str2[0] - 'A' + 10; in consumeUnsignedInteger()
461 Str2 = Str2.substr(1); in consumeUnsignedInteger()
466 if (Str.size() == Str2.size()) in consumeUnsignedInteger()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DStringRef.cpp426 StringRef Str2 = Str; in consumeUnsignedInteger() local
428 while (!Str2.empty()) { in consumeUnsignedInteger()
430 if (Str2[0] >= '0' && Str2[0] <= '9') in consumeUnsignedInteger()
431 CharVal = Str2[0] - '0'; in consumeUnsignedInteger()
432 else if (Str2[0] >= 'a' && Str2[0] <= 'z') in consumeUnsignedInteger()
433 CharVal = Str2[0] - 'a' + 10; in consumeUnsignedInteger()
434 else if (Str2[0] >= 'A' && Str2[0] <= 'Z') in consumeUnsignedInteger()
435 CharVal = Str2[0] - 'A' + 10; in consumeUnsignedInteger()
452 Str2 = Str2.substr(1); in consumeUnsignedInteger()
457 if (Str.size() == Str2.size()) in consumeUnsignedInteger()
[all …]
/third_party/boost/libs/interprocess/test/
Dstring_test.cpp40 template<class Str1, class Str2>
41 bool operator ()(const Str1 &string1, const Str2 &string2) const in operator ()()
/third_party/boost/libs/container/test/
Dstring_test.cpp35 template<class Str1, class Str2>
36 bool operator ()(const Str1 &string1, const Str2 &string2) const in operator ()()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp418 StringRef Str1, Str2; in optimizeStrCmp() local
420 bool HasStr2 = getConstantStringInfo(Str2P, Str2); in optimizeStrCmp()
424 return ConstantInt::get(CI->getType(), Str1.compare(Str2)); in optimizeStrCmp()
430 if (HasStr2 && Str2.empty()) // strcmp(x,"") -> *x in optimizeStrCmp()
490 StringRef Str1, Str2; in optimizeStrNCmp() local
492 bool HasStr2 = getConstantStringInfo(Str2P, Str2); in optimizeStrNCmp()
497 StringRef SubStr2 = Str2.substr(0, Length); in optimizeStrNCmp()
505 if (HasStr2 && Str2.empty()) // strncmp(x, "", n) -> *x in optimizeStrNCmp()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXAsmPrinter.cpp813 SmallString<128> Str2; in emitGlobals() local
814 raw_svector_ostream OS2(Str2); in emitGlobals()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
DAsmParser.cpp5108 StringRef Str2 = parseStringToEndOfStatement(); in parseDirectiveIfc() local
5114 TheCondState.CondMet = ExpectEqual == (Str1.trim() == Str2.trim()); in parseDirectiveIfc()