Home
last modified time | relevance | path

Searched refs:group (Results 1 – 25 of 3097) sorted by relevance

12345678910>>...124

/netbsd/crypto/external/bsd/openssl.old/dist/crypto/ec/
H A Dec_lib.c100 group->meth->group_finish(group); in EC_GROUP_free()
117 group->meth->group_clear_finish(group); in EC_GROUP_clear_free()
119 group->meth->group_finish(group); in EC_GROUP_clear_free()
126 OPENSSL_clear_free(group->seed, group->seed_len); in EC_GROUP_clear_free()
127 OPENSSL_clear_free(group, sizeof(*group)); in EC_GROUP_clear_free()
321 || !BN_div(group->cofactor, NULL, group->cofactor, group->order, ctx)) in ec_guess_cofactor()
367 group->generator = EC_POINT_new(group); in EC_GROUP_set_generator()
427 return group->meth->group_order_bits(group); in EC_GROUP_order_bits()
562 return group->meth->group_get_degree(group); in EC_GROUP_get_degree()
901 return group->meth->dbl(group, r, a, ctx); in EC_POINT_dbl()
[all …]
H A Decp_smpl.c96 if (group->field == NULL || group->a == NULL || group->b == NULL) { in ec_GFp_simple_group_init()
168 if (!group->meth->field_encode(group, group->a, tmp_a, ctx)) in ec_GFp_simple_group_set_curve()
177 if (!group->meth->field_encode(group, group->b, group->b, ctx)) in ec_GFp_simple_group_set_curve()
212 if (!group->meth->field_decode(group, a, group->a, ctx)) in ec_GFp_simple_group_get_curve()
216 if (!group->meth->field_decode(group, b, group->b, ctx)) in ec_GFp_simple_group_get_curve()
268 if (!group->meth->field_decode(group, a, group->a, ctx)) in ec_GFp_simple_group_check_discriminant()
270 if (!group->meth->field_decode(group, b, group->b, ctx)) in ec_GFp_simple_group_check_discriminant()
1502 || !group->meth->field_mul(group, t5, p->X, group->b, ctx) in ec_GFp_simple_ladder_pre()
1577 || !group->meth->field_mul(group, t5, group->a, t0, ctx) in ec_GFp_simple_ladder_step()
1594 || !group->meth->field_mul(group, t6, t5, group->a, ctx) in ec_GFp_simple_ladder_step()
[all …]
H A Dec2_smpl.c28 if (group->field == NULL || group->a == NULL || group->b == NULL) { in ec_GF2m_simple_group_init()
104 i = BN_GF2m_poly2arr(group->field, group->poly, 6) - 1; in ec_GF2m_simple_group_set_curve()
111 if (!BN_GF2m_mod_arr(group->a, a, group->poly)) in ec_GF2m_simple_group_set_curve()
119 if (!BN_GF2m_mod_arr(group->b, b, group->poly)) in ec_GF2m_simple_group_set_curve()
194 if (!BN_GF2m_mod_arr(b, group->b, group->poly)) in ec_GF2m_simple_group_check_discriminant()
410 if (!group->meth->field_div(group, s, s, t, ctx)) in ec_GF2m_simple_add()
412 if (!group->meth->field_sqr(group, x2, s, ctx)) in ec_GF2m_simple_add()
432 if (!group->meth->field_sqr(group, x2, s, ctx)) in ec_GF2m_simple_add()
442 if (!group->meth->field_mul(group, y2, y2, s, ctx)) in ec_GF2m_simple_add()
758 || !group->meth->field_mul(group, s->Y, s->Y, group->b, ctx) in ec_GF2m_simple_ladder_step()
[all …]
H A Decp_mont.c81 group->field_data1 = NULL; in ec_GFp_mont_group_init()
82 group->field_data2 = NULL; in ec_GFp_mont_group_init()
89 group->field_data1 = NULL; in ec_GFp_mont_group_finish()
91 group->field_data2 = NULL; in ec_GFp_mont_group_finish()
98 group->field_data1 = NULL; in ec_GFp_mont_group_clear_finish()
100 group->field_data2 = NULL; in ec_GFp_mont_group_clear_finish()
144 group->field_data1 = NULL; in ec_GFp_mont_group_set_curve()
146 group->field_data2 = NULL; in ec_GFp_mont_group_set_curve()
167 group->field_data1 = mont; in ec_GFp_mont_group_set_curve()
169 group->field_data2 = one; in ec_GFp_mont_group_set_curve()
[all …]
H A Dec_oct.c27 if (!ec_point_is_compat(point, group)) { in EC_POINT_set_compressed_coordinates()
32 if (group->meth->flags & EC_FLAGS_DEFAULT_OCT) { in EC_POINT_set_compressed_coordinates()
48 return group->meth->point_set_compressed_coordinates(group, point, x, in EC_POINT_set_compressed_coordinates()
74 if (group->meth->point2oct == 0 in EC_POINT_point2oct()
79 if (!ec_point_is_compat(point, group)) { in EC_POINT_point2oct()
83 if (group->meth->flags & EC_FLAGS_DEFAULT_OCT) { in EC_POINT_point2oct()
98 return group->meth->point2oct(group, point, form, buf, len, ctx); in EC_POINT_point2oct()
104 if (group->meth->oct2point == 0 in EC_POINT_oct2point()
109 if (!ec_point_is_compat(point, group)) { in EC_POINT_oct2point()
113 if (group->meth->flags & EC_FLAGS_DEFAULT_OCT) { in EC_POINT_oct2point()
[all …]
H A Dec_key.c30 if (ret->group == NULL) { in EC_KEY_new_by_curve_name()
62 if (r->group && r->group->meth->keyfinish) in EC_KEY_free()
67 EC_GROUP_free(r->group); in EC_KEY_free()
83 if (dest->group && dest->group->meth->keyfinish) in EC_KEY_copy()
99 if (!EC_GROUP_copy(dest->group, src->group)) in EC_KEY_copy()
401 return key->group; in EC_KEY_get0_group()
409 key->group = EC_GROUP_dup(group); in EC_KEY_set_group()
424 if (key->group == NULL || key->group->meth == NULL) in EC_KEY_set_private_key()
618 if (eckey->group == NULL || eckey->group->meth == NULL) in EC_KEY_priv2oct()
653 if (eckey->group == NULL || eckey->group->meth == NULL) in EC_KEY_oct2priv()
[all …]
/netbsd/crypto/external/bsd/openssl/dist/crypto/ec/
H A Dec_lib.c127 group->meth->group_finish(group); in EC_GROUP_free()
146 group->meth->group_clear_finish(group); in EC_GROUP_clear_free()
148 group->meth->group_finish(group); in EC_GROUP_clear_free()
155 OPENSSL_clear_free(group->seed, group->seed_len); in EC_GROUP_clear_free()
156 OPENSSL_clear_free(group, sizeof(*group)); in EC_GROUP_clear_free()
354 || !BN_div(group->cofactor, NULL, group->cofactor, group->order, ctx)) in ec_guess_cofactor()
400 group->generator = EC_POINT_new(group); in EC_GROUP_set_generator()
460 return group->meth->group_order_bits(group); in EC_GROUP_order_bits()
609 return group->meth->group_get_degree(group); in EC_GROUP_get_degree()
963 return group->meth->dbl(group, r, a, ctx); in EC_POINT_dbl()
[all …]
H A Decp_smpl.c103 if (group->field == NULL || group->a == NULL || group->b == NULL) { in ossl_ec_GFp_simple_group_init()
175 if (!group->meth->field_encode(group, group->a, tmp_a, ctx)) in ossl_ec_GFp_simple_group_set_curve()
184 if (!group->meth->field_encode(group, group->b, group->b, ctx)) in ossl_ec_GFp_simple_group_set_curve()
219 if (!group->meth->field_decode(group, a, group->a, ctx)) in ossl_ec_GFp_simple_group_get_curve()
223 if (!group->meth->field_decode(group, b, group->b, ctx)) in ossl_ec_GFp_simple_group_get_curve()
275 if (!group->meth->field_decode(group, a, group->a, ctx)) in ossl_ec_GFp_simple_group_check_discriminant()
277 if (!group->meth->field_decode(group, b, group->b, ctx)) in ossl_ec_GFp_simple_group_check_discriminant()
1509 || !group->meth->field_mul(group, t5, p->X, group->b, ctx) in ossl_ec_GFp_simple_ladder_pre()
1584 || !group->meth->field_mul(group, t5, group->a, t0, ctx) in ossl_ec_GFp_simple_ladder_step()
1601 || !group->meth->field_mul(group, t6, t5, group->a, ctx) in ossl_ec_GFp_simple_ladder_step()
[all …]
H A Dec2_smpl.c34 if (group->field == NULL || group->a == NULL || group->b == NULL) { in ossl_ec_GF2m_simple_group_init()
110 i = BN_GF2m_poly2arr(group->field, group->poly, 6) - 1; in ossl_ec_GF2m_simple_group_set_curve()
117 if (!BN_GF2m_mod_arr(group->a, a, group->poly)) in ossl_ec_GF2m_simple_group_set_curve()
125 if (!BN_GF2m_mod_arr(group->b, b, group->poly)) in ossl_ec_GF2m_simple_group_set_curve()
201 if (!BN_GF2m_mod_arr(b, group->b, group->poly)) in ossl_ec_GF2m_simple_group_check_discriminant()
423 if (!group->meth->field_sqr(group, x2, s, ctx)) in ossl_ec_GF2m_simple_add()
443 if (!group->meth->field_sqr(group, x2, s, ctx)) in ossl_ec_GF2m_simple_add()
453 if (!group->meth->field_mul(group, y2, y2, s, ctx)) in ossl_ec_GF2m_simple_add()
491 || !group->meth->make_affine(group, point, ctx)) in ossl_ec_GF2m_simple_invert()
791 || !group->meth->field_mul(group, s->Y, s->Y, group->b, ctx) in ec_GF2m_simple_ladder_step()
[all …]
H A Decp_mont.c88 group->field_data1 = NULL; in ossl_ec_GFp_mont_group_init()
89 group->field_data2 = NULL; in ossl_ec_GFp_mont_group_init()
96 group->field_data1 = NULL; in ossl_ec_GFp_mont_group_finish()
98 group->field_data2 = NULL; in ossl_ec_GFp_mont_group_finish()
105 group->field_data1 = NULL; in ossl_ec_GFp_mont_group_clear_finish()
107 group->field_data2 = NULL; in ossl_ec_GFp_mont_group_clear_finish()
152 group->field_data1 = NULL; in ossl_ec_GFp_mont_group_set_curve()
154 group->field_data2 = NULL; in ossl_ec_GFp_mont_group_set_curve()
175 group->field_data1 = mont; in ossl_ec_GFp_mont_group_set_curve()
177 group->field_data2 = one; in ossl_ec_GFp_mont_group_set_curve()
[all …]
H A Dec_oct.c32 if (!ec_point_is_compat(point, group)) { in EC_POINT_set_compressed_coordinates()
36 if (group->meth->flags & EC_FLAGS_DEFAULT_OCT) { in EC_POINT_set_compressed_coordinates()
51 return group->meth->point_set_compressed_coordinates(group, point, x, in EC_POINT_set_compressed_coordinates()
77 if (group->meth->point2oct == 0 in EC_POINT_point2oct()
82 if (!ec_point_is_compat(point, group)) { in EC_POINT_point2oct()
86 if (group->meth->flags & EC_FLAGS_DEFAULT_OCT) { in EC_POINT_point2oct()
102 return group->meth->point2oct(group, point, form, buf, len, ctx); in EC_POINT_point2oct()
108 if (group->meth->oct2point == 0 in EC_POINT_oct2point()
113 if (!ec_point_is_compat(point, group)) { in EC_POINT_oct2point()
117 if (group->meth->flags & EC_FLAGS_DEFAULT_OCT) { in EC_POINT_oct2point()
[all …]
/netbsd/external/bsd/wpa/dist/src/p2p/
H A Dp2p_group.c51 group = os_zalloc(sizeof(*group)); in p2p_group_init()
69 group->cfg->idle_update(group->cfg->cb_ctx, 1); in p2p_group_init()
71 return group; in p2p_group_init()
156 if (group->num_members >= group->cfg->max_clients) in p2p_group_add_common_ies()
408 group->wfd_ie = wifi_display_build_go_ie(group); in wifi_display_group_update()
635 group->num_members, group->cfg->max_clients); in p2p_group_notif_assoc()
636 if (group->num_members == group->cfg->max_clients) in p2p_group_notif_assoc()
640 group->cfg->idle_update(group->cfg->cb_ctx, 0); in p2p_group_notif_assoc()
701 group->cfg->idle_update(group->cfg->cb_ctx, 1); in p2p_group_notif_disassoc()
860 if (!group) in p2p_group_get_client_interface_addr()
[all …]
/netbsd/tests/ipf/expected/
H A Dip146 { 0/0, group=303; 5/32, group=303; 1.2.3.4/32, group=303; };
48 { 0/0, group=303; 6/32, group=303; 1.2.3.4/32, group=303; };
50 { 0/0, group=303; 7/32, group=303; 1.2.3.4/32, group=303; };
52 { 0/0, group=303; 8/32, group=303; 1.2.3.4/32, group=303; };
54 { 0/0, group=303; 5/32, group=303; 1.2.3.4/32, group=606; };
56 { 0/0, group=303; 6/32, group=303; 1.2.3.4/32, group=606; };
58 { 0/0, group=303; 7/32, group=303; 1.2.3.4/32, group=606; };
62 { 0/0, group=10; 5/32, group=800; 1.2.3.4/32, group=606; };
64 { 0/0, group=10; 6/32, group=800; 1.2.3.4/32, group=606; };
66 { 0/0, group=10; 7/32, group=800; 1.2.3.4/32, group=606; };
[all …]
/netbsd/external/gpl3/gcc.old/dist/gcc/config/aarch64/
H A Daarch64-sve-builtins-shapes.cc287 function_instance instance (group.base_name, *group.base, *group.shape, in build_one()
288 mode_suffix_id, group.types[ti], in build_one()
289 group.preds[pi]); in build_one()
342 const function_group_info &group) in build_sv_index() argument
351 const function_group_info &group) in build_sv_index64() argument
361 const function_group_info &group) in build_sv_offset() argument
384 const function_group_info &group, in build_v_base() argument
395 const function_group_info &group, in build_vs_index() argument
406 const function_group_info &group, in build_vs_offset() argument
2665 build_v_base (b, "_,b,t0", group); in build()
[all …]
/netbsd/external/gpl3/gcc/dist/gcc/config/aarch64/
H A Daarch64-sve-builtins-shapes.cc287 function_instance instance (group.base_name, *group.base, *group.shape, in build_one()
288 mode_suffix_id, group.types[ti], in build_one()
289 group.preds[pi]); in build_one()
342 const function_group_info &group) in build_sv_index() argument
351 const function_group_info &group) in build_sv_index64() argument
361 const function_group_info &group) in build_sv_offset() argument
384 const function_group_info &group, in build_v_base() argument
395 const function_group_info &group, in build_vs_index() argument
406 const function_group_info &group, in build_vs_offset() argument
2665 build_v_base (b, "_,b,t0", group); in build()
[all …]
/netbsd/external/bsd/ntp/dist/sntp/unity/
H A Dunity_fixture.h21 #define TEST_GROUP(group)\ argument
22 static const char* TEST_GROUP_##group = #group
24 #define TEST_SETUP(group) void TEST_##group##_SETUP(void);\ argument
25 void TEST_##group##_SETUP(void)
27 #define TEST_TEAR_DOWN(group) void TEST_##group##_TEAR_DOWN(void);\ argument
31 #define TEST(group, name) \ argument
37 TEST_##group##_##name##_,\
45 #define IGNORE_TEST(group, name) \ argument
57 #define RUN_TEST_CASE(group, name) \ argument
62 #define TEST_GROUP_RUNNER(group)\ argument
[all …]
/netbsd/external/mpl/dhcp/dist/common/
H A Dmemory.c36 struct group *root_group;
56 if (d != group) in delete_group()
64 group -> name, strlen (group -> name), MDL); in delete_group()
67 if (group -> group) in delete_group()
68 group_dereference (&group -> group, MDL); in delete_group()
88 group -> name, in supersede_group()
108 group -> name, in supersede_group()
124 strlen (group -> name), group, MDL); in supersede_group()
135 int clone_group (struct group **gp, struct group *group, in clone_group() argument
138 struct group *g = (struct group *)0; in clone_group()
[all …]
/netbsd/external/bsd/tcpdump/dist/tests/
H A Dhsrp_1.out1 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1
2 IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1
3 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1
4 IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1
5 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1
6 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1
7 IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=standby group=1 addr=192.168.0.1
8 IP 192.168.0.20.1985 > 224.0.0.2.1985: HSRPv0-unknown (3) 16: state=initial group=2 [|hsrp]
9 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1
11 IP 192.168.0.30.1985 > 224.0.0.2.1985: HSRPv0-hello 20: state=active group=1 addr=192.168.0.1
[all …]
/netbsd/crypto/external/bsd/openssl.old/dist/test/
H A Dectest.c176 EC_GROUP_free(group); in prime_field_tests()
177 group = tmp; in prime_field_tests()
614 EC_GROUP_free(group); in prime_field_tests()
957 EC_GROUP_free(group); in char2_curve_test()
986 if (!TEST_ptr(group) in char2_field_tests()
991 EC_GROUP_free(group); in char2_field_tests()
992 group = tmp; in char2_field_tests()
1200 EC_GROUP *group; in internal_curve_test_method() local
1850 group = NULL; in parameter_test()
1957 || !TEST_ptr(group = d2i_ECPKParameters(&group, &b2, in cofactor_range_test()
[all …]
/netbsd/tests/ipf/regress/
H A Dip152 group-map in role = ipf number = 300 group = 303
54 group-map in role = nat number = 300 group = 303
56 group-map in role = auth number = 300 group = 303
58 group-map in role = count number = 300 group = 303
61 group-map out role = ipf number = 400 group = 303
63 group-map out role = nat number = 400 group = 303
65 group-map out role = auth number = 400 group = 303
71 { 0/0, group = 10; 5/32, group = 800; 1.2.3.4/32, group = 606; };
73 { 0/0, group = 10; 6/32, group = 800; 1.2.3.4/32, group = 606; };
75 { 0/0, group = 10; 7/32, group = 800; 1.2.3.4/32, group = 606; };
[all …]
/netbsd/external/gpl3/gdb/dist/gdb/
H A Dreggroups.c44 group->name = name; in reggroup_new()
45 group->type = type; in reggroup_new()
46 return group; in reggroup_new()
59 group->type = type; in reggroup_gdbarch_new()
60 return group; in reggroup_gdbarch_new()
68 return group->name; in reggroup_name()
110 el->group = group; in add_group()
215 if (group == save_reggroup || group == restore_reggroup) in default_register_reggroup_p()
229 group = reggroup_next (gdbarch, group)) in reggroup_find()
232 return group; in reggroup_find()
[all …]
/netbsd/external/gpl3/gdb.old/dist/gdb/
H A Dreggroups.c44 group->name = name; in reggroup_new()
45 group->type = type; in reggroup_new()
46 return group; in reggroup_new()
59 group->type = type; in reggroup_gdbarch_new()
60 return group; in reggroup_gdbarch_new()
68 return group->name; in reggroup_name()
110 el->group = group; in add_group()
215 if (group == save_reggroup || group == restore_reggroup) in default_register_reggroup_p()
229 group = reggroup_next (gdbarch, group)) in reggroup_find()
232 return group; in reggroup_find()
[all …]
/netbsd/crypto/external/bsd/openssl/dist/test/
H A Dectest.c163 EC_GROUP *group = NULL; in prime_field_tests() local
595 EC_GROUP_free(group); in prime_field_tests()
930 EC_GROUP_free(group); in char2_curve_test()
1075 EC_GROUP_free(group); in char2_field_tests()
1130 EC_GROUP_free(group); in hybrid_point_encoding_test()
1152 EC_GROUP_free(group); in internal_curve_test()
1159 EC_GROUP *group; in internal_curve_test_method() local
1166 EC_GROUP_free(group); in internal_curve_test_method()
2028 group = NULL; in parameter_test()
2135 || !TEST_ptr(group = d2i_ECPKParameters(&group, &b2, in cofactor_range_test()
[all …]
/netbsd/external/gpl3/gdb/dist/sim/mn10300/
H A Ddv-mn103int.c350 struct mn103int_group *group = &controller->group[gid]; in mn103int_finish() local
387 struct mn103int_group *group = &controller->group[gid]; in find_highest_interrupt_group() local
388 if ((group->request & group->enable) != 0) in find_highest_interrupt_group()
391 if (group->level < controller->group[selected].level) in find_highest_interrupt_group()
450 group = &controller->group[gid]; in mn103int_port_event()
474 switch (group->type) in mn103int_port_event()
482 if ((group->request & group->enable) != 0) in mn103int_port_event()
547 | INSERT_ID (group->request & group->enable)); in read_icr()
606 group->request = in write_icr()
696 if (group != NULL) in read_extmd()
[all …]
/netbsd/external/gpl3/gdb.old/dist/sim/mn10300/
H A Ddv-mn103int.c350 struct mn103int_group *group = &controller->group[gid]; in mn103int_finish() local
387 struct mn103int_group *group = &controller->group[gid]; in find_highest_interrupt_group() local
388 if ((group->request & group->enable) != 0) in find_highest_interrupt_group()
391 if (group->level < controller->group[selected].level) in find_highest_interrupt_group()
450 group = &controller->group[gid]; in mn103int_port_event()
474 switch (group->type) in mn103int_port_event()
482 if ((group->request & group->enable) != 0) in mn103int_port_event()
547 | INSERT_ID (group->request & group->enable)); in read_icr()
606 group->request = in write_icr()
696 if (group != NULL) in read_extmd()
[all …]

12345678910>>...124