reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/IR/IntrinsicInst.cpp
   74   while (CmpEnd < Name.size() && High - Low > 0) {
   75     size_t CmpStart = CmpEnd;
   76     CmpEnd = Name.find('.', CmpStart + 1);
   77     CmpEnd = CmpEnd == StringRef::npos ? Name.size() : CmpEnd;
   77     CmpEnd = CmpEnd == StringRef::npos ? Name.size() : CmpEnd;
   77     CmpEnd = CmpEnd == StringRef::npos ? Name.size() : CmpEnd;
   78     auto Cmp = [CmpStart, CmpEnd](const char *LHS, const char *RHS) {
   79       return strncmp(LHS + CmpStart, RHS + CmpStart, CmpEnd - CmpStart) < 0;