Home
last modified time | relevance | path

Searched refs:polynomial (Results 1 – 25 of 30) sorted by relevance

12

/openbmc/linux/lib/
H A Dcrc8.c29 void crc8_populate_msb(u8 table[CRC8_TABLE_SIZE], u8 polynomial) in crc8_populate_msb() argument
38 t = (t << 1) ^ (t & msbit ? polynomial : 0); in crc8_populate_msb()
51 void crc8_populate_lsb(u8 table[CRC8_TABLE_SIZE], u8 polynomial) in crc8_populate_lsb() argument
59 t = (t >> 1) ^ (t & 1 ? polynomial : 0); in crc8_populate_lsb()
H A Dcrc32.c148 u32 polynomial) argument
155 crc = (crc >> 1) ^ ((crc & 1) ? polynomial : 0);
243 u32 polynomial) argument
245 u32 power = polynomial; /* CRC of x^32 */
250 crc = (crc >> 1) ^ (crc & 1 ? polynomial : 0);
259 crc = gf2_multiply(crc, power, polynomial);
266 power = gf2_multiply(power, power, polynomial);
295 u32 polynomial) argument
303 (crc << 1) ^ ((crc & 0x80000000) ? polynomial :
H A Dgen_crc32table.c37 static void crc32init_le_generic(const uint32_t polynomial, in crc32init_le_generic() argument
46 crc = (crc >> 1) ^ ((crc & 1) ? polynomial : 0); in crc32init_le_generic()
H A Dpolynomial.c79 long polynomial_calc(const struct polynomial *poly, long data) in polynomial_calc()
H A DMakefile279 obj-$(CONFIG_POLYNOMIAL) += polynomial.o
/openbmc/linux/include/linux/
H A Dpolynomial.h28 struct polynomial { struct
33 long polynomial_calc(const struct polynomial *poly, long data); argument
H A Dcrc8.h55 void crc8_populate_lsb(u8 table[CRC8_TABLE_SIZE], u8 polynomial);
73 void crc8_populate_msb(u8 table[CRC8_TABLE_SIZE], u8 polynomial);
/openbmc/linux/Documentation/ABI/testing/
H A Dsysfs-bus-iio-isl2950127 a second order error polynomial.
33 polynomial has to be generated from the data. The
/openbmc/linux/Documentation/staging/
H A Dcrc32.rst7 CRC polynomial. To check the CRC, you can either check that the
21 To produce a 32-bit CRC, the divisor is actually a 33-bit CRC polynomial.
43 the polynomial from the remainder and we're back to where we started,
82 The most significant coefficient of the remainder polynomial is stored
124 and the correct multiple of the polynomial to subtract is found using
179 of a polynomial produces a larger multiple of that polynomial. Thus,
/openbmc/linux/Documentation/core-api/
H A Dlibrs.rst34 correction with the given polynomial. It either uses an existing
45 * Primitive polynomial is x^10+x^3+1
48 * generator polynomial degree (number of roots) = 6
/openbmc/linux/arch/m68k/fpsp040/
H A Dsatan.S30 | Step 3. Approximate arctan(u) by a polynomial poly.
37 | Step 6. Approximate arctan(X) by an odd polynomial in X. Exit.
39 | Step 7. Define X' = -1/X. Approximate arctan(X') by an odd polynomial in X'.
H A Dslogn.S27 | Step 1. If |X-1| < 1/16, approximate log(X) by an odd polynomial in
34 | Step 3. Define u = (Y-F)/F. Approximate log(1+u) by a polynomial in u,
42 | Step 1: If |X| < 1/16, approximate log(1+X) by an odd polynomial in
H A Dssin.S41 | where cos(r) is approximated by an even polynomial in r,
46 | where sin(r) is approximated by an odd polynomial in r
H A Dsetox.S127 | Step 4. Approximate exp(R)-1 by a polynomial
799 |--Step 9 exp(X)-1 by a simple polynomial
/openbmc/linux/drivers/hwmon/
H A Dbt1-pvt.c69 static const struct polynomial __maybe_unused poly_temp_to_N = {
80 static const struct polynomial poly_N_to_temp = {
101 static const struct polynomial __maybe_unused poly_volt_to_N = {
109 static const struct polynomial poly_N_to_volt = {
H A Dlan966x-hwmon.c35 static const struct polynomial poly_N_to_temp = {
/openbmc/linux/Documentation/devicetree/bindings/thermal/
H A Dti,j72xx-thermal.yaml19 The following polynomial equation can then be used to convert
/openbmc/linux/arch/sparc/crypto/
H A DKconfig25 CRC32c CRC algorithm with the iSCSI polynomial (RFC 3385 and RFC 3720)
/openbmc/linux/arch/arm/crypto/
H A DKconfig33 that uses the 64x64 to 128 bit polynomial multiplication (vmull.p64)
225 CRC32c CRC algorithm with the iSCSI polynomial (RFC 3385 and RFC 3720)
/openbmc/linux/arch/powerpc/crypto/
H A DKconfig11 CRC32c CRC algorithm with the iSCSI polynomial (RFC 3385 and RFC 3720)
/openbmc/linux/Documentation/networking/
H A Dgeneric-hdlc.rst90 crc16-itu (CRC16 with ITU-T polynomial) / crc16-itu-pr0 - sets parity
/openbmc/linux/Documentation/networking/device_drivers/hamradio/
H A Dbaycom.rst60 implementation of the HDLC protocol and the scrambler polynomial to
/openbmc/linux/drivers/net/phy/
H A Dmxl-gpy.c150 static const struct polynomial poly_N_to_temp = {
/openbmc/libmctp/docs/bindings/
H A Dvendor-ibm-astlpc.md237 1. The polynomial
241 polynomial representation `0xEDB88320`
/openbmc/linux/arch/x86/crypto/
H A DKconfig495 CRC32c CRC algorithm with the iSCSI polynomial (RFC 3385 and RFC 3720)

12