Searched defs:bc (Results 1 - 1 of 1) sorted by relevance

/bionic/libc/dns/nameser/
H A Dns_name.c763 int ac, bc; local
765 while (ac = *a, bc = *b, ac != 0 && bc != 0) {
766 if ((ac & NS_CMPRSFLGS) != 0 || (bc & NS_CMPRSFLGS) != 0) {
770 if (a + ac >= ae || b + bc >= be) {
774 if (ac != bc || strncasecmp((const char *) ++a,
778 a += ac, b += bc;
780 return (ac == 0 && bc == 0);

Completed in 136 milliseconds