Home | History | Annotate | Download | only in Utils

Lines Matching defs:Pos

888       size_t Pos = S1.find_first_not_of(S2);
889 if (Pos == StringRef::npos) Pos = S1.size();
890 return ConstantInt::get(CI->getType(), Pos);
917 size_t Pos = S1.find_first_of(S2);
918 if (Pos == StringRef::npos) Pos = S1.size();
919 return ConstantInt::get(CI->getType(), Pos);
1554 Value *Pos = B.CreateICmpSGT(Op, Constant::getAllOnesValue(Op->getType()),
1557 return B.CreateSelect(Pos, Op, Neg);