Lines Matching refs:s1
54 STRNCMP(register char *s1, register char *s2, register int len) in STRNCMP() argument
58 if (*s2 - makelower(*s1)) in STRNCMP()
59 return (*s2 - makelower(*s1)); in STRNCMP()
62 s1++; in STRNCMP()
67 if (*s2 - *s1) in STRNCMP()
68 return (*s2 - *s1); in STRNCMP()
71 s1++; in STRNCMP()
339 register char *ptr,*s1; /* temporary pointer */ in expmatch() local
429 s1 = s; in expmatch()
431 ptr = expmatch(s1, MNEXT(cs), mstring); in expmatch()
432 if (ptr != NULL && s1 != s) { in expmatch()
435 strncpy (mstring, s, s1 - s); in expmatch()
436 mstring[s1 - s] = '\0'; in expmatch()
447 if (!(isalnum(*s1) || *s1 == '_' || in expmatch()
449 *s1 == '~' || in expmatch()
451 (strlen(s1) > 1 && *s1 == ':' && s1[1] == ':' && in expmatch()
452 (s1++, true)))) in expmatch()
454 if (*s1 == '\\') in expmatch()
458 } while (*s1++); in expmatch()
468 s1 = s; in expmatch()
470 ptr = expmatch(s1, MNEXT(cs), mstring); in expmatch()
471 if (ptr != NULL && s1 != s) { in expmatch()
484 if (*s1 == '\\') in expmatch()
488 } while (*s1++); in expmatch()