Lines Matching defs:s2
341 * @s2: Another string
343 * returns 0 if @s1 and @s2 are equal,
344 * < 0 if @s1 is less than @s2
345 * > 0 if @s1 is greater than @s2
348 int strcmp(const char *s1, const char *s2)
354 "0: clst %[s1],%[s2]\n"
358 " ic 0,0(%[s2])\n"
361 : [ret] "+&d" (ret), [s1] "+&a" (s1), [s2] "+&a" (s2)
370 const char *s2, unsigned long l2)
373 union register_pair r3 = { .even = (unsigned long)s2, .odd = l2, };
389 * @s2: The string to search for
392 char *strstr(const char *s1, const char *s2)
396 l2 = __strend(s2) - s2;
403 cc = clcle(s1, l2, s2, l2);
445 * @s2: Another area of memory
449 int memcmp(const void *s1, const void *s2, size_t n)
453 ret = clcle(s1, n, s2, n);