Lines Matching refs:s2
215 * @s2: Another string
217 * returns 0 if @s1 and @s2 are equal,
218 * < 0 if @s1 is less than @s2
219 * > 0 if @s1 is greater than @s2
222 int strcmp(const char *s1, const char *s2)
234 : "+d" (ret), "+d" (r0), "+a" (s1), "+a" (s2)
261 const char *s2, unsigned long l2)
265 register unsigned long r4 asm("4") = (unsigned long) s2;
281 * @s2: The string to search for
284 char *strstr(const char *s1, const char *s2)
288 l2 = __strend(s2) - s2;
295 cc = clcle(s1, l2, s2, l2);
334 * @s2: Another area of memory
338 int memcmp(const void *s1, const void *s2, size_t n)
342 ret = clcle(s1, n, s2, n);