Lines Matching refs:s2
953 bcmstricmp(const char *s1, const char *s2) in bcmstricmp() argument
957 while (*s2 && *s1) { in bcmstricmp()
959 sc = xToLower(*s2); in bcmstricmp()
963 s2++; in bcmstricmp()
966 if (*s1 && !*s2) return 1; in bcmstricmp()
967 if (!*s1 && *s2) return -1; in bcmstricmp()
987 bcmstrnicmp(const char* s1, const char* s2, int cnt) in bcmstrnicmp() argument
991 while (*s2 && *s1 && cnt) { in bcmstrnicmp()
993 sc = xToLower(*s2); in bcmstrnicmp()
997 s2++; in bcmstrnicmp()
1002 if (*s1 && !*s2) return 1; in bcmstrnicmp()
1003 if (!*s1 && *s2) return -1; in bcmstrnicmp()