Home
last modified time | relevance | path

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

/bionic/libc/upstream-netbsd/lib/libc/regex/
Dregcomp.c134 static bool p_ere_exp(struct parse *p, struct branchc *bc);
136 static int p_branch_eat_delim(struct parse *p, struct branchc *bc);
137 static void p_branch_ins_offset(struct parse *p, struct branchc *bc);
138 static void p_branch_fix_tail(struct parse *p, struct branchc *bc);
139 static bool p_branch_empty(struct parse *p, struct branchc *bc);
140 static bool p_branch_do(struct parse *p, struct branchc *bc);
141 static void p_bre_pre_parse(struct parse *p, struct branchc *bc);
142 static void p_bre_post_parse(struct parse *p, struct branchc *bc);
144 static bool p_simp_re(struct parse *p, struct branchc *bc);
441 p_ere_exp(struct parse *p, struct branchc *bc) in p_ere_exp() argument
[all …]
/bionic/libc/dns/nameser/
Dns_name.c757 int ac, bc; in ns_name_eq() local
759 while (ac = *a, bc = *b, ac != 0 && bc != 0) { in ns_name_eq()
760 if ((ac & NS_CMPRSFLGS) != 0 || (bc & NS_CMPRSFLGS) != 0) { in ns_name_eq()
764 if (a + ac >= ae || b + bc >= be) { in ns_name_eq()
768 if (ac != bc || strncasecmp((const char *) ++a, in ns_name_eq()
772 a += ac, b += bc; in ns_name_eq()
774 return (ac == 0 && bc == 0); in ns_name_eq()