Home
last modified time | relevance | path

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

12

/linux-6.12.1/crypto/
Dchacha20poly1305.c21 struct crypto_ahash_spawn poly; member
27 struct crypto_ahash *poly; member
65 struct poly_req poly; member
174 struct poly_req *preq = &rctx->u.poly; in poly_tail()
183 ahash_request_set_tfm(&preq->req, ctx->poly); in poly_tail()
203 struct poly_req *preq = &rctx->u.poly; in poly_cipherpad()
213 ahash_request_set_tfm(&preq->req, ctx->poly); in poly_cipherpad()
232 struct poly_req *preq = &rctx->u.poly; in poly_cipher()
243 ahash_request_set_tfm(&preq->req, ctx->poly); in poly_cipher()
262 struct poly_req *preq = &rctx->u.poly; in poly_adpad()
[all …]
/linux-6.12.1/arch/riscv/lib/
Dcrc32.c66 static inline u32 crc32_le_zbc(unsigned long s, u32 poly, unsigned long poly_qt) in crc32_le_zbc() argument
82 "r" ((u64)poly << 32) in crc32_le_zbc()
104 static inline u32 crc32_le_zbc(unsigned long s, u32 poly, unsigned long poly_qt) in crc32_le_zbc() argument
119 "r" (poly) in crc32_le_zbc()
157 size_t len, u32 poly, in crc32_le_unaligned() argument
171 crc = crc32_le_zbc(s, poly, poly_qt); in crc32_le_unaligned()
178 size_t len, u32 poly, in crc32_le_generic() argument
194 crc = crc32_le_unaligned(crc, p, head_len, poly, poly_qt); in crc32_le_generic()
205 crc = crc32_le_zbc(s, poly, poly_qt); in crc32_le_generic()
212 crc = crc32_le_unaligned(crc, p, tail_len, poly, poly_qt); in crc32_le_generic()
/linux-6.12.1/lib/
Dbch.c114 struct gf_poly poly; member
308 static inline int deg(unsigned int poly) in deg() argument
311 return fls(poly)-1; in deg()
375 uint32_t poly; in compute_syndromes() local
388 poly = *ecc++; in compute_syndromes()
390 while (poly) { in compute_syndromes()
391 i = deg(poly); in compute_syndromes()
395 poly ^= (1 << i); in compute_syndromes()
575 static int find_poly_deg1_roots(struct bch_control *bch, struct gf_poly *poly, in find_poly_deg1_roots() argument
580 if (poly->c[0]) in find_poly_deg1_roots()
[all …]
Dgen_crc64table.c25 static void generate_reflected_crc64_table(uint64_t table[256], uint64_t poly) in generate_reflected_crc64_table() argument
35 crc = (crc >> 1) ^ poly; in generate_reflected_crc64_table()
43 static void generate_crc64_table(uint64_t table[256], uint64_t poly) in generate_crc64_table() argument
53 crc = (crc << 1) ^ poly; in generate_crc64_table()
Dpolynomial.c79 long polynomial_calc(const struct polynomial *poly, long data) in polynomial_calc() argument
81 const struct polynomial_term *term = poly->terms; in polynomial_calc()
82 long total_divider = poly->total_divider ?: 1; in polynomial_calc()
/linux-6.12.1/drivers/crypto/stm32/
Dstm32-crc32.c65 u32 poly; member
77 mctx->poly = CRC32_POLY_LE; in stm32_crc32_cra_init()
86 mctx->poly = CRC32C_POLY_LE; in stm32_crc32c_cra_init()
132 writel_relaxed(bitrev32(mctx->poly), crc->regs + CRC_POL); in stm32_crc_init()
162 if (mctx->poly == CRC32_POLY_LE) in burst_update()
177 writel_relaxed(bitrev32(mctx->poly), crc->regs + CRC_POL); in burst_update()
248 put_unaligned_le32(mctx->poly == CRC32C_POLY_LE ? in stm32_crc_final()
/linux-6.12.1/lib/xz/
Dxz_crc32.c31 const uint32_t poly = 0xEDB88320; in xz_crc32_init() local
40 r = (r >> 1) ^ (poly & ~((r & 1) - 1)); in xz_crc32_init()
/linux-6.12.1/drivers/mtd/nand/raw/atmel/
Dpmecc.c186 static inline int deg(unsigned int poly) in deg() argument
189 return fls(poly) - 1; in deg()
192 static int atmel_pmecc_build_gf_tables(int mm, unsigned int poly, in atmel_pmecc_build_gf_tables() argument
196 const unsigned int k = BIT(deg(poly)); in atmel_pmecc_build_gf_tables()
211 x ^= poly; in atmel_pmecc_build_gf_tables()
223 unsigned int poly, degree, table_size; in atmel_pmecc_create_gf_tables() local
228 poly = PMECC_GF_13_PRIMITIVE_POLY; in atmel_pmecc_create_gf_tables()
232 poly = PMECC_GF_14_PRIMITIVE_POLY; in atmel_pmecc_create_gf_tables()
245 ret = atmel_pmecc_build_gf_tables(degree, poly, gf_tables); in atmel_pmecc_create_gf_tables()
/linux-6.12.1/include/linux/
Dpolynomial.h33 long polynomial_calc(const struct polynomial *poly, long data);
Dpstore_ram.h17 int poly; member
/linux-6.12.1/drivers/gpu/drm/
Ddrm_panic_qr.rs248 fn poly(&self) -> &'static [u8] { in poly() method
475 poly: &'static [u8], field
489 let poly = version.poly(); in new() localVariable
501 poly, in new()
567 for (u, &v) in tmp[i + 1..].iter_mut().zip(self.poly.iter()) { in error_code_for_blocks()
/linux-6.12.1/arch/m68k/fpsp040/
Dslogn.S35 | log(1+u) = poly.
38 | by k*log(2) + (log(F) + poly). The values of log(F) are calculated
47 | k*log(2) + log(F) + poly where poly approximates log(1+u),
Dsatan.S30 | Step 3. Approximate arctan(u) by a polynomial poly.
32 | Step 4. Return arctan(F) + poly, arctan(F) is fetched from a table of values
/linux-6.12.1/drivers/net/dsa/sja1105/
Dsja1105_dynamic_config.c660 sja1105_packing(buf, &entry->poly, 7, 0, in sja1105et_l2_lookup_params_entry_packing()
1372 static u8 sja1105_crc8_add(u8 crc, u8 byte, u8 poly) in sja1105_crc8_add() argument
1379 crc ^= poly; in sja1105_crc8_add()
1398 u64 input, poly_koopman = l2_lookup_params->poly; in sja1105et_fdb_hash()
1400 u8 poly = (u8)(1 + (poly_koopman << 1)); in sja1105et_fdb_hash() local
1410 crc = sja1105_crc8_add(crc, byte, poly); in sja1105et_fdb_hash()
Dsja1105_static_config.h288 u64 poly; /* E/T only */ member
Dsja1105_static_config.c295 sja1105_packing(buf, &entry->poly, 13, 6, size, op); in sja1105et_l2_lookup_params_entry_packing()
Dsja1105_main.c396 .poly = 0x97, in sja1105_init_l2_lookup_params()
/linux-6.12.1/fs/pstore/
Dram_core.c202 prz->ecc_info.poly = ecc_info->poly ?: 0x11d; in persistent_ram_init_ecc()
224 prz->rs_decoder = init_rs(prz->ecc_info.symsize, prz->ecc_info.poly, in persistent_ram_init_ecc()
/linux-6.12.1/drivers/scsi/libsas/
Dsas_init.c70 const u32 poly = 0x00DB2777; in sas_hash_addr() local
81 r ^= poly; in sas_hash_addr()
83 r ^= poly; in sas_hash_addr()
/linux-6.12.1/drivers/char/hw_random/
Dn2-drv.c486 static u64 advance_polynomial(u64 poly, u64 val, int count) in advance_polynomial() argument
495 val ^= poly; in advance_polynomial()
/linux-6.12.1/drivers/net/ethernet/amd/
Dnmclan_cs.c1289 static const int poly[]={ in updateCRC() local
1307 CRC[j] ^= poly[j]; in updateCRC()
/linux-6.12.1/Documentation/hwmon/
Dltc2978.rst214 - LTC3880, LTC3882, LTC3886, and LTC3887 are dual output poly-phase step-down
/linux-6.12.1/Documentation/ABI/testing/
Dsysfs-class-power506 "Unknown", "NiMH", "Li-ion", "Li-poly", "LiFe",
/linux-6.12.1/tools/perf/scripts/python/
Dexported-sql-viewer.py1849 poly = view.mapFromScene(scene_rectf)
1850 self.rubber_band.setGeometry(poly.boundingRect())
/linux-6.12.1/drivers/dma/ppc4xx/
Dadma.c4396 static DRIVER_ATTR_RW(poly);

12