Home
last modified time | relevance | path

Searched refs:as2 (Results 1 – 2 of 2) sorted by relevance

/trueos/contrib/groff/src/preproc/refer/
HDlabel.y1093 const char *as2 = r2.get_sort_field(0, n, 0, &ae2); in same_author_last_name() local
1094 if (!as1 && !as2) return 1; // they are the same in same_author_last_name()
1095 if (!as1 || !as2) return 0; in same_author_last_name()
1096 return ae1 - as1 == ae2 - as2 && memcmp(as1, as2, ae1 - as1) == 0; in same_author_last_name()
1104 const char *as2 = r2.get_sort_field(0, n, -1, &ae2); in same_author_name() local
1105 if (!as1 && !as2) return 1; // they are the same in same_author_name()
1106 if (!as1 || !as2) return 0; in same_author_name()
1107 return ae1 - as1 == ae2 - as2 && memcmp(as1, as2, ae1 - as1) == 0; in same_author_name()
/trueos/usr.bin/mail/
HDlex.c512 isprefix(const char *as1, const char *as2) in isprefix() argument
517 s2 = as2; in isprefix()