Searched refs:c2 (Results 1 – 2 of 2) sorted by relevance
/lib/ |
D | string.c | 46 unsigned char c1, c2; in strncasecmp() local 53 c2 = *s2++; in strncasecmp() 54 if (!c1 || !c2) in strncasecmp() 56 if (c1 == c2) in strncasecmp() 59 c2 = tolower(c2); in strncasecmp() 60 if (c1 != c2) in strncasecmp() 63 return (int)c1 - (int)c2; in strncasecmp() 71 int c1, c2; in strcasecmp() local 75 c2 = tolower(*s2++); in strcasecmp() 76 } while (c1 == c2 && c1 != 0); in strcasecmp() [all …]
|
D | bch.c | 616 unsigned int a, b, c, a2, b2, c2, e3, tmp[4]; in find_poly_deg3_roots() local 621 c2 = gf_div(bch, poly->c[0], e3); in find_poly_deg3_roots() 626 c = gf_mul(bch, a2, c2); /* c = a2c2 */ in find_poly_deg3_roots() 627 b = gf_mul(bch, a2, b2)^c2; /* b = a2b2 + c2 */ in find_poly_deg3_roots() 649 unsigned int a, b, c, d, e = 0, f, a2, b2, c2, e4; in find_poly_deg4_roots() local 685 c2 = gf_inv(bch, d); in find_poly_deg4_roots() 690 c2 = d; in find_poly_deg4_roots() 695 if (find_affine4_roots(bch, a2, b2, c2, roots) == 4) { in find_poly_deg4_roots()
|