Home | History | Annotate | Download | only in Scalar

Lines Matching refs:StrNCat

182 // 'strncat' Optimizations
186 // Verify the "strncat" function prototype.
212 // strncat(x, "", c) -> x
213 // strncat(x, c, 0) -> x
222 // strncat(x, s, c) -> strcat(x, s)
1454 StrCatOpt StrCat; StrNCatOpt StrNCat; StrChrOpt StrChr; StrRChrOpt StrRChr;
1510 Optimizations["strncat"] = &StrNCat;
1721 Name == "strncat" ||