Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/device-tree/Bindings/mfd/
H A Daxp20x.txt126 DCDC2 : DC-DC buck : vin2-supply : poly-phase capable
127 DCDC3 : DC-DC buck : vin3-supply : poly-phase capable
129 DCDC5 : DC-DC buck : vin5-supply : poly-phase capable
130 DCDC6 : DC-DC buck : vin6-supply : poly-phase capable
153 DCDCA : DC-DC buck : vina-supply : poly-phase capable
154 DCDCB : DC-DC buck : vinb-supply : poly-phase capable
155 DCDCC : DC-DC buck : vinc-supply : poly-phase capable
156 DCDCD : DC-DC buck : vind-supply : poly-phase capable
157 DCDCE : DC-DC buck : vine-supply : poly-phase capable
202 DCDC2 : DC-DC buck : vin2-supply : poly-phase capable
[all …]
/f-stack/freebsd/contrib/xz-embedded/linux/lib/xz/
H A Dxz_crc64.c23 const uint64_t poly = 0xC96C5795D7870F42; in xz_crc64_init() local
32 r = (r >> 1) ^ (poly & ~((r & 1) - 1)); in xz_crc64_init()
H A 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()
/f-stack/freebsd/contrib/zlib/
H A Dcrc32.c92 z_crc_t poly; /* polynomial exclusive-or pattern */ in make_crc_table() local
104 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()
/f-stack/dpdk/lib/librte_net/
H A Drte_net_crc.c105 crc32_eth_init_lut(uint32_t poly, in crc32_eth_init_lut() argument
115 crc = (crc << 1) ^ poly; in crc32_eth_init_lut()
/f-stack/freebsd/mips/nlm/dev/net/
H A Dnae.c240 nlm_setup_flow_crc_poly(uint64_t nae_base, uint32_t poly) in nlm_setup_flow_crc_poly() argument
242 nlm_write_nae_reg(nae_base, NAE_FLOW_CRC16_POLY_CFG, poly); in nlm_setup_flow_crc_poly()
/f-stack/dpdk/drivers/net/e1000/base/
H A De1000_ich8lan.c2670 u32 poly = 0xEDB88320; /* Polynomial for 802.3 CRC calculation */ in e1000_calc_rx_da_crc() local
2680 crc = (crc >> 1) ^ (poly & mask); in e1000_calc_rx_da_crc()
/f-stack/dpdk/drivers/net/bnxt/
H A Dhsi_struct_def_dpdk.h22931 uint16_t poly; member