Lines Matching refs:s1
771 bcmstricmp(const char *s1, const char *s2) in bcmstricmp() argument
775 while (*s2 && *s1) { in bcmstricmp()
776 dc = xToLower(*s1); in bcmstricmp()
780 s1++; in bcmstricmp()
784 if (*s1 && !*s2) return 1; in bcmstricmp()
785 if (!*s1 && *s2) return -1; in bcmstricmp()
805 bcmstrnicmp(const char* s1, const char* s2, int cnt) in bcmstrnicmp() argument
809 while (*s2 && *s1 && cnt) { in bcmstrnicmp()
810 dc = xToLower(*s1); in bcmstrnicmp()
814 s1++; in bcmstrnicmp()
820 if (*s1 && !*s2) return 1; in bcmstrnicmp()
821 if (!*s1 && *s2) return -1; in bcmstrnicmp()