| /freebsd-12.1/crypto/openssl/crypto/ec/ |
| H A D | ec2_smpl.c | 57 group->poly[0] = 0; in ec_GF2m_simple_group_clear_finish() 58 group->poly[1] = 0; in ec_GF2m_simple_group_clear_finish() 59 group->poly[2] = 0; in ec_GF2m_simple_group_clear_finish() 60 group->poly[3] = 0; in ec_GF2m_simple_group_clear_finish() 61 group->poly[4] = 0; in ec_GF2m_simple_group_clear_finish() 77 dest->poly[0] = src->poly[0]; in ec_GF2m_simple_group_copy() 78 dest->poly[1] = src->poly[1]; in ec_GF2m_simple_group_copy() 79 dest->poly[2] = src->poly[2]; in ec_GF2m_simple_group_copy() 80 dest->poly[3] = src->poly[3]; in ec_GF2m_simple_group_copy() 81 dest->poly[4] = src->poly[4]; in ec_GF2m_simple_group_copy() [all …]
|
| H A D | ec_asn1.c | 28 i < (int)OSSL_NELEM(group->poly) && group->poly[i] != 0; in EC_GROUP_get_basis_type() 49 || !((group->poly[0] != 0) && (group->poly[1] != 0) in EC_GROUP_get_trinomial_basis() 50 && (group->poly[2] == 0))) { in EC_GROUP_get_trinomial_basis() 57 *k = group->poly[1]; in EC_GROUP_get_trinomial_basis() 70 || !((group->poly[0] != 0) && (group->poly[1] != 0) in EC_GROUP_get_pentanomial_basis() 71 && (group->poly[2] != 0) && (group->poly[3] != 0) in EC_GROUP_get_pentanomial_basis() 72 && (group->poly[4] == 0))) { in EC_GROUP_get_pentanomial_basis() 79 *k1 = group->poly[3]; in EC_GROUP_get_pentanomial_basis() 81 *k2 = group->poly[2]; in EC_GROUP_get_pentanomial_basis() 83 *k3 = group->poly[1]; in EC_GROUP_get_pentanomial_basis()
|
| H A D | ec2_oct.c | 61 if (!BN_GF2m_mod_arr(x, x_, group->poly)) in ec_GF2m_simple_set_compressed_coordinates() 64 if (!BN_GF2m_mod_sqrt_arr(y, group->b, group->poly, ctx)) in ec_GF2m_simple_set_compressed_coordinates() 75 if (!BN_GF2m_mod_solve_quad_arr(z, tmp, group->poly, ctx)) { in ec_GF2m_simple_set_compressed_coordinates()
|
| H A D | ec_lcl.h | 233 int poly[6]; member
|
| /freebsd-12.1/crypto/heimdal/lib/krb5/ |
| H A D | crc.c | 44 unsigned long crc, poly; in _krb5_crc_init_table() local 48 poly = CRC_GEN; in _krb5_crc_init_table() 53 crc = (crc >> 1) ^ poly; in _krb5_crc_init_table()
|
| /freebsd-12.1/contrib/gcc/ |
| H A D | tree-chrec.c | 59 tree poly, in chrec_fold_poly_cst() argument 62 gcc_assert (poly); in chrec_fold_poly_cst() 64 gcc_assert (TREE_CODE (poly) == POLYNOMIAL_CHREC); in chrec_fold_poly_cst() 66 gcc_assert (type == chrec_type (poly)); in chrec_fold_poly_cst() 72 (CHREC_VARIABLE (poly), in chrec_fold_poly_cst() 73 chrec_fold_plus (type, CHREC_LEFT (poly), cst), in chrec_fold_poly_cst() 74 CHREC_RIGHT (poly)); in chrec_fold_poly_cst() 78 (CHREC_VARIABLE (poly), in chrec_fold_poly_cst() 79 chrec_fold_minus (type, CHREC_LEFT (poly), cst), in chrec_fold_poly_cst() 80 CHREC_RIGHT (poly)); in chrec_fold_poly_cst() [all …]
|
| /freebsd-12.1/sys/contrib/xz-embedded/linux/lib/xz/ |
| H A D | xz_crc64.c | 23 const uint64_t poly = 0xC96C5795D7870F42; in xz_crc64_init() local 32 r = (r >> 1) ^ (poly & ~((r & 1) - 1)); in xz_crc64_init()
|
| H A D | xz_crc32.c | 32 const uint32_t poly = 0xEDB88320; in xz_crc32_init() local 41 r = (r >> 1) ^ (poly & ~((r & 1) - 1)); in xz_crc32_init()
|
| /freebsd-12.1/contrib/ofed/opensm/opensm/ |
| H A D | osm_mesh.c | 65 int poly[MAX_DEGREE+1]; /* polynomial */ member 274 return memcmp(p, s->node->poly, n*sizeof(int)); in poly_diff() 398 int ***matrix, int **poly) in sub_determinant() argument 451 *poly = p; in sub_determinant() 580 *poly = p; in char_poly() 683 if (!s->node->poly) in classify_switch() 718 if (!s->node->poly) in classify_mesh_type() 722 if (poly_diff(t->degree, t->poly, s)) in classify_mesh_type() 1513 if (node->poly) in osm_mesh_node_delete() 1514 free(node->poly); in osm_mesh_node_delete() [all …]
|
| /freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/zmod/ |
| H A D | opensolaris_crc32.c | 115 unsigned long poly; /* polynomial exclusive-or pattern */ in make_crc_table() local 127 poly = 0UL; in make_crc_table() 129 poly |= 1UL << (31 - p[n]); in make_crc_table() 135 c = c & 1 ? poly ^ (c >> 1) : c >> 1; in make_crc_table()
|
| /freebsd-12.1/sys/contrib/zlib/ |
| H A D | crc32.c | 92 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()
|
| /freebsd-12.1/contrib/ofed/opensm/include/opensm/ |
| H A D | osm_mesh.h | 64 int *poly; /* characteristic polynomial of matrix */ member
|
| /freebsd-12.1/contrib/openbsm/bin/auditd/ |
| H A D | auditd_darwin.c | 287 mach_msg_type_name_t poly; in mach_setup() local 340 MACH_MSG_TYPE_MAKE_SEND, &control_port, &poly); in mach_setup()
|
| /freebsd-12.1/sys/mips/nlm/dev/net/ |
| H A D | nae.c | 240 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()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | arm_neon_incl.td | 231 // t: best-fit integer (int/poly args)
|
| /freebsd-12.1/sys/dev/e1000/ |
| H A D | e1000_ich8lan.c | 2737 u32 poly = 0xEDB88320; /* Polynomial for 802.3 CRC calculation */ in e1000_calc_rx_da_crc() local 2747 crc = (crc >> 1) ^ (poly & mask); in e1000_calc_rx_da_crc()
|
| /freebsd-12.1/share/dict/ |
| H A D | web2a | 25787 grass poly 41535 poly-mountain 47971 roly-poly 47972 roly-poly grass
|
| H A D | web2 | 150005 poly
|