Home
last modified time | relevance | path

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

/lib/
Dbch.c107 struct gf_poly poly; member
275 static inline int deg(unsigned int poly) in deg() argument
278 return fls(poly)-1; in deg()
342 uint32_t poly; in compute_syndromes() local
355 poly = *ecc++; in compute_syndromes()
357 while (poly) { in compute_syndromes()
358 i = deg(poly); in compute_syndromes()
362 poly ^= (1 << i); in compute_syndromes()
545 static int find_poly_deg1_roots(struct bch_control *bch, struct gf_poly *poly, in find_poly_deg1_roots() argument
550 if (poly->c[0]) in find_poly_deg1_roots()
[all …]
/lib/xz/
Dxz_crc32.c32 const uint32_t poly = 0xEDB88320; in xz_crc32_init() local
41 r = (r >> 1) ^ (poly & ~((r & 1) - 1)); in xz_crc32_init()