Searched refs:poly (Results 1 – 8 of 8) sorted by relevance
126 DCDC2 : DC-DC buck : vin2-supply : poly-phase capable127 DCDC3 : DC-DC buck : vin3-supply : poly-phase capable129 DCDC5 : DC-DC buck : vin5-supply : poly-phase capable130 DCDC6 : DC-DC buck : vin6-supply : poly-phase capable153 DCDCA : DC-DC buck : vina-supply : poly-phase capable154 DCDCB : DC-DC buck : vinb-supply : poly-phase capable155 DCDCC : DC-DC buck : vinc-supply : poly-phase capable156 DCDCD : DC-DC buck : vind-supply : poly-phase capable157 DCDCE : DC-DC buck : vine-supply : poly-phase capable202 DCDC2 : DC-DC buck : vin2-supply : poly-phase capable[all …]
23 const uint64_t poly = 0xC96C5795D7870F42; in xz_crc64_init() local32 r = (r >> 1) ^ (poly & ~((r & 1) - 1)); in xz_crc64_init()
32 const uint32_t poly = 0xEDB88320; in xz_crc32_init() local41 r = (r >> 1) ^ (poly & ~((r & 1) - 1)); in xz_crc32_init()
92 z_crc_t poly; /* polynomial exclusive-or pattern */ in make_crc_table() local104 poly = 0; in make_crc_table()106 poly |= (z_crc_t)1 << (31 - p[n]); in make_crc_table()112 c = c & 1 ? poly ^ (c >> 1) : c >> 1; in make_crc_table()
105 crc32_eth_init_lut(uint32_t poly, in crc32_eth_init_lut() argument115 crc = (crc << 1) ^ poly; in crc32_eth_init_lut()
240 nlm_setup_flow_crc_poly(uint64_t nae_base, uint32_t poly) in nlm_setup_flow_crc_poly() argument242 nlm_write_nae_reg(nae_base, NAE_FLOW_CRC16_POLY_CFG, poly); in nlm_setup_flow_crc_poly()
2670 u32 poly = 0xEDB88320; /* Polynomial for 802.3 CRC calculation */ in e1000_calc_rx_da_crc() local2680 crc = (crc >> 1) ^ (poly & mask); in e1000_calc_rx_da_crc()
22931 uint16_t poly; member