Home
last modified time | relevance | path

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

/linux/crypto/
H A 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/lib/
H A 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 …]
H A 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()
H A Dcrc_kunit.c41 u64 poly; member
73 crc = (crc >> 1) ^ ((crc & 1) ? v->poly : 0); in crc_ref()
78 crc = ((crc << 1) ^ v->poly) & in crc_ref()
264 .poly = 0xa001,
288 .poly = 0x8bb7,
317 .poly = 0xedb88320,
342 .poly = 0x04c11db7,
371 .poly = 0x82f63b78,
396 .poly = 0x42f0e1eba9ea3693,
H A 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/arch/riscv/lib/
H A Dcrc32-riscv.c67 static inline u32 crc32_le_zbc(unsigned long s, u32 poly, unsigned long poly_qt) in crc32_le_zbc() argument
83 "r" ((u64)poly << 32) in crc32_le_zbc()
105 static inline u32 crc32_le_zbc(unsigned long s, u32 poly, unsigned long poly_qt) in crc32_le_zbc() argument
120 "r" (poly) in crc32_le_zbc()
158 size_t len, u32 poly, in crc32_le_unaligned() argument
172 crc = crc32_le_zbc(s, poly, poly_qt); in crc32_le_unaligned()
179 size_t len, u32 poly, in crc32_le_generic() argument
195 crc = crc32_le_unaligned(crc, p, head_len, poly, poly_qt); in crc32_le_generic()
206 crc = crc32_le_zbc(s, poly, poly_qt); in crc32_le_generic()
213 crc = crc32_le_unaligned(crc, p, tail_len, poly, poly_qt); in crc32_le_generic()
/linux/lib/xz/
H A 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/drivers/mtd/nand/raw/atmel/
H A 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/drivers/gpu/drm/
H A Ddrm_panic_qr.rs245 fn poly(&self) -> &'static [u8] { in poly() method
472 poly: &'static [u8], field
486 let poly = version.poly(); in new() localVariable
498 poly, in new()
564 for (u, &v) in tmp[i + 1..].iter_mut().zip(self.poly.iter()) { in error_code_for_blocks()
/linux/include/linux/
H A Dpolynomial.h33 long polynomial_calc(const struct polynomial *poly, long data);
H A Dpstore_ram.h17 int poly; member
/linux/arch/m68k/fpsp040/
H A 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),
H A 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/drivers/net/dsa/sja1105/
H A 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()
H A Dsja1105_static_config.h288 u64 poly; /* E/T only */ member
H A Dsja1105_main.c395 .poly = 0x97, in sja1105_init_l2_lookup_params()
/linux/fs/pstore/
H A 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/drivers/scsi/libsas/
H A 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/drivers/net/ethernet/amd/
H A Dnmclan_cs.c1289 static const int poly[]={ in updateCRC() local
1307 CRC[j] ^= poly[j]; in updateCRC()
/linux/Documentation/ABI/testing/
H A Dsysfs-class-power526 "Unknown", "NiMH", "Li-ion", "Li-poly", "LiFe",
/linux/tools/perf/scripts/python/
H A Dexported-sql-viewer.py1849 poly = view.mapFromScene(scene_rectf)
1850 self.rubber_band.setGeometry(poly.boundingRect())
/linux/arch/m68k/ifpsp060/src/
H A Dfplsp.S7991 # polynomial in u, log(1+u) = poly. #
7995 # by k*log(2) + (log(F) + poly). The values of log(F) are #
8005 # log(1+X) as k*log(2) + log(F) + poly where poly #
H A Dfpsp.S6168 # Step 3. Approximate arctan(u) by a polynomial poly. #
6170 # Step 4. Return arctan(F) + poly, arctan(F) is fetched from a #