Home | History | Annotate | Download | only in Utils

Lines Matching refs:strpbrk

591   // strpbrk(s, "") -> nullptr
592 // strpbrk("", s) -> nullptr
602 return B.CreateGEP(B.getInt8Ty(), CI->getArgOperand(0), B.getInt64(I), "strpbrk");
605 // strpbrk(s, "a") -> strchr(s, 'a')
2132 case LibFunc::strpbrk: