| /freebsd-13.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_local.h | 235 int poly[6]; member
|
| /freebsd-13.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-13.1/sys/contrib/device-tree/Bindings/mfd/ |
| H A D | axp20x.txt | 126 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 …]
|
| /freebsd-13.1/sys/contrib/xz-embedded/linux/lib/xz/ |
| 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()
|
| 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()
|
| /freebsd-13.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-13.1/contrib/ofed/opensm/include/opensm/ |
| H A D | osm_mesh.h | 64 int *poly; /* characteristic polynomial of matrix */ member
|
| /freebsd-13.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-13.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-13.1/sys/dev/e1000/ |
| H A D | e1000_ich8lan.c | 2760 u32 poly = 0xEDB88320; /* Polynomial for 802.3 CRC calculation */ in e1000_calc_rx_da_crc() local 2770 crc = (crc >> 1) ^ (poly & mask); in e1000_calc_rx_da_crc()
|
| /freebsd-13.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
|