Lines Matching refs:s1
953 bcmstricmp(const char *s1, const char *s2) in bcmstricmp() argument
957 while (*s2 && *s1) { in bcmstricmp()
958 dc = xToLower(*s1); in bcmstricmp()
962 s1++; 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()
992 dc = xToLower(*s1); in bcmstrnicmp()
996 s1++; in bcmstrnicmp()
1002 if (*s1 && !*s2) return 1; in bcmstrnicmp()
1003 if (!*s1 && *s2) return -1; in bcmstrnicmp()