Lines Matching full: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) in strcmp() argument
234 : "+d" (ret), "+d" (r0), "+a" (s1), "+a" (s2) in strcmp()
262 const char *s2, unsigned long l2) in clcle() argument
266 register unsigned long r4 asm("4") = (unsigned long) s2; in clcle()
282 * @s2: The string to search for
285 char *strstr(const char *s1, const char *s2) in strstr() argument
289 l2 = __strend(s2) - s2; in strstr()
296 cc = clcle(s1, l2, s2, l2); in strstr()
335 * @s2: Another area of memory
339 int memcmp(const void *s1, const void *s2, size_t n) in memcmp() argument
343 ret = clcle(s1, n, s2, n); in memcmp()