Home
last modified time | relevance | path

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

/lib/
Dstring.c44 unsigned char c1, c2; in strncasecmp() local
51 c2 = *s2++; in strncasecmp()
52 if (!c1 || !c2) in strncasecmp()
54 if (c1 == c2) in strncasecmp()
57 c2 = tolower(c2); in strncasecmp()
58 if (c1 != c2) in strncasecmp()
61 return (int)c1 - (int)c2; in strncasecmp()
77 int c1, c2; in strcasecmp() local
81 c2 = tolower(*s2++); in strcasecmp()
82 } while (c1 == c2 && c1 != 0); in strcasecmp()
[all …]
Dbch.c606 unsigned int a, b, c, a2, b2, c2, e3, tmp[4]; in find_poly_deg3_roots() local
611 c2 = gf_div(bch, poly->c[0], e3); in find_poly_deg3_roots()
616 c = gf_mul(bch, a2, c2); /* c = a2c2 */ in find_poly_deg3_roots()
617 b = gf_mul(bch, a2, b2)^c2; /* b = a2b2 + c2 */ in find_poly_deg3_roots()
639 unsigned int a, b, c, d, e = 0, f, a2, b2, c2, e4; in find_poly_deg4_roots() local
675 c2 = gf_inv(bch, d); in find_poly_deg4_roots()
680 c2 = d; in find_poly_deg4_roots()
685 if (find_affine4_roots(bch, a2, b2, c2, roots) == 4) { in find_poly_deg4_roots()