Home
last modified time | relevance | path

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

12345678910>>...45

/freebsd/share/mk/
H A Dbsd.files.mk15 .for group in ${FILESGROUPS}
17 ${${group}}:= ${${group}} ${${group}.yes}
18 ${${group}}:= ${${group}:O:u}
19 buildfiles: ${${group}}
26 .for group in ${FILESGROUPS}
27 .if defined(${group}) && !empty(${group})
28 installfiles: installfiles-${group}
30 ${group}OWN?= ${SHAREOWN}
31 ${group}GRP?= ${SHAREGRP}
33 ${group}OWN= ${SHAREOWN}
[all …]
H A Dbsd.confs.mk16 . for group in ${CONFGROUPS}
17 buildconfig: ${${group}}
25 . for group in ${CONFGROUPS}
26 . if defined(${group}) && !empty(${group})
37 ${group}OWN?= ${SHAREOWN}
38 ${group}GRP?= ${SHAREGRP}
39 ${group}MODE?= ${CONFMODE}
40 ${group}DIR?= ${CONFDIR}
41 STAGE_SETS+= ${group:C,[/*],_,g}
44 . if !defined(${group}TAGS) || ! ${${group}TAGS:Mpackage=*}
[all …]
H A Dbsd.incs.mk11 .for group in ${INCSGROUPS}
12 buildincludes: ${${group}}
21 .for group in ${INCSGROUPS}
22 .if defined(${group}) && !empty(${group})
24 ${group}OWN?= ${BINOWN}
25 ${group}GRP?= ${BINGRP}
26 ${group}MODE?= ${NOBINMODE}
27 ${group}DIR?= ${INCLUDEDIR}${PRIVATELIB:D/private/${LIB}}
28 STAGE_SETS+= ${group:C,[/*],_,g}
29 STAGE_DIR.${group:C,[/*],_,g}= ${STAGE_OBJTOP}${${group}DIR}
[all …]
/freebsd/sys/dev/mlx4/mlx4_ib/
H A Dmlx4_ib_mcg.c50 #define mcg_warn_group(group, format, arg...) \ argument
52 (group)->name, group->demux->port, ## arg)
54 #define mcg_debug_group(group, format, arg...) \ argument
56 (group)->name, (group)->demux->port, ## arg)
58 #define mcg_error_group(group, format, arg...) \ argument
59 pr_err(" %16s: " format, (group)->name, ## arg)
136 struct mcast_group *group; member
144 mcg_warn_group(group, "did not expect to reach zero\n"); \
166 struct mcast_group *group; in mcast_find() local
170 group = rb_entry(node, struct mcast_group, node); in mcast_find()
[all …]
/freebsd/crypto/openssl/crypto/ec/
H A Dec_lib.c88 void EC_pre_comp_free(EC_GROUP *group) in EC_pre_comp_free() argument
90 switch (group->pre_comp_type) { in EC_pre_comp_free()
95 EC_nistz256_pre_comp_free(group->pre_comp.nistz256); in EC_pre_comp_free()
100 EC_nistp224_pre_comp_free(group->pre_comp.nistp224); in EC_pre_comp_free()
103 EC_nistp256_pre_comp_free(group->pre_comp.nistp256); in EC_pre_comp_free()
106 EC_nistp521_pre_comp_free(group->pre_comp.nistp521); in EC_pre_comp_free()
115 EC_ec_pre_comp_free(group->pre_comp.ec); in EC_pre_comp_free()
118 group->pre_comp.ec = NULL; in EC_pre_comp_free()
121 void EC_GROUP_free(EC_GROUP *group) in EC_GROUP_free() argument
123 if (!group) in EC_GROUP_free()
[all …]
H A Decp_smpl.c98 int ossl_ec_GFp_simple_group_init(EC_GROUP *group) in ossl_ec_GFp_simple_group_init() argument
100 group->field = BN_new(); in ossl_ec_GFp_simple_group_init()
101 group->a = BN_new(); in ossl_ec_GFp_simple_group_init()
102 group->b = BN_new(); in ossl_ec_GFp_simple_group_init()
103 if (group->field == NULL || group->a == NULL || group->b == NULL) { in ossl_ec_GFp_simple_group_init()
104 BN_free(group->field); in ossl_ec_GFp_simple_group_init()
105 BN_free(group->a); in ossl_ec_GFp_simple_group_init()
106 BN_free(group->b); in ossl_ec_GFp_simple_group_init()
109 group->a_is_minus3 = 0; in ossl_ec_GFp_simple_group_init()
113 void ossl_ec_GFp_simple_group_finish(EC_GROUP *group) in ossl_ec_GFp_simple_group_finish() argument
[all …]
H A Dec2_smpl.c28 int ossl_ec_GF2m_simple_group_init(EC_GROUP *group) in ossl_ec_GF2m_simple_group_init() argument
30 group->field = BN_new(); in ossl_ec_GF2m_simple_group_init()
31 group->a = BN_new(); in ossl_ec_GF2m_simple_group_init()
32 group->b = BN_new(); in ossl_ec_GF2m_simple_group_init()
34 if (group->field == NULL || group->a == NULL || group->b == NULL) { in ossl_ec_GF2m_simple_group_init()
35 BN_free(group->field); in ossl_ec_GF2m_simple_group_init()
36 BN_free(group->a); in ossl_ec_GF2m_simple_group_init()
37 BN_free(group->b); in ossl_ec_GF2m_simple_group_init()
47 void ossl_ec_GF2m_simple_group_finish(EC_GROUP *group) in ossl_ec_GF2m_simple_group_finish() argument
49 BN_free(group->field); in ossl_ec_GF2m_simple_group_finish()
[all …]
H A Decp_mont.c83 int ossl_ec_GFp_mont_group_init(EC_GROUP *group) in ossl_ec_GFp_mont_group_init() argument
87 ok = ossl_ec_GFp_simple_group_init(group); in ossl_ec_GFp_mont_group_init()
88 group->field_data1 = NULL; in ossl_ec_GFp_mont_group_init()
89 group->field_data2 = NULL; in ossl_ec_GFp_mont_group_init()
93 void ossl_ec_GFp_mont_group_finish(EC_GROUP *group) in ossl_ec_GFp_mont_group_finish() argument
95 BN_MONT_CTX_free(group->field_data1); in ossl_ec_GFp_mont_group_finish()
96 group->field_data1 = NULL; in ossl_ec_GFp_mont_group_finish()
97 BN_free(group->field_data2); in ossl_ec_GFp_mont_group_finish()
98 group->field_data2 = NULL; in ossl_ec_GFp_mont_group_finish()
99 ossl_ec_GFp_simple_group_finish(group); in ossl_ec_GFp_mont_group_finish()
[all …]
H A Dec_oct.c24 int EC_POINT_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, in EC_POINT_set_compressed_coordinates() argument
27 if (group->meth->point_set_compressed_coordinates == NULL in EC_POINT_set_compressed_coordinates()
28 && !(group->meth->flags & EC_FLAGS_DEFAULT_OCT)) { in EC_POINT_set_compressed_coordinates()
32 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()
37 if (group->meth->field_type == NID_X9_62_prime_field) in EC_POINT_set_compressed_coordinates()
38 return ossl_ec_GFp_simple_set_compressed_coordinates(group, point, x, in EC_POINT_set_compressed_coordinates()
47 return ossl_ec_GF2m_simple_set_compressed_coordinates(group, point, in EC_POINT_set_compressed_coordinates()
51 return group->meth->point_set_compressed_coordinates(group, point, x, in EC_POINT_set_compressed_coordinates()
56 int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, in EC_POINT_set_compressed_coordinates_GFp() argument
[all …]
H A Decp_oct.c22 int ossl_ec_GFp_simple_set_compressed_coordinates(const EC_GROUP *group, in ossl_ec_GFp_simple_set_compressed_coordinates() argument
32 ctx = new_ctx = BN_CTX_new_ex(group->libctx); in ossl_ec_GFp_simple_set_compressed_coordinates()
54 if (!BN_nnmod(x, x_, group->field, ctx)) in ossl_ec_GFp_simple_set_compressed_coordinates()
56 if (group->meth->field_decode == 0) { in ossl_ec_GFp_simple_set_compressed_coordinates()
58 if (!group->meth->field_sqr(group, tmp2, x_, ctx)) in ossl_ec_GFp_simple_set_compressed_coordinates()
60 if (!group->meth->field_mul(group, tmp1, tmp2, x_, ctx)) in ossl_ec_GFp_simple_set_compressed_coordinates()
63 if (!BN_mod_sqr(tmp2, x_, group->field, ctx)) in ossl_ec_GFp_simple_set_compressed_coordinates()
65 if (!BN_mod_mul(tmp1, tmp2, x_, group->field, ctx)) in ossl_ec_GFp_simple_set_compressed_coordinates()
70 if (group->a_is_minus3) { in ossl_ec_GFp_simple_set_compressed_coordinates()
71 if (!BN_mod_lshift1_quick(tmp2, x, group->field)) in ossl_ec_GFp_simple_set_compressed_coordinates()
[all …]
H A Dec_key.c50 ret->group = EC_GROUP_new_by_curve_name_ex(ctx, propq, nid); in EC_KEY_new_by_curve_name_ex()
51 if (ret->group == NULL) { in EC_KEY_new_by_curve_name_ex()
56 && ret->meth->set_group(ret, ret->group) == 0) { in EC_KEY_new_by_curve_name_ex()
90 if (r->group && r->group->meth->keyfinish) in EC_KEY_free()
91 r->group->meth->keyfinish(r); in EC_KEY_free()
97 EC_GROUP_free(r->group); in EC_KEY_free()
114 if (dest->group && dest->group->meth->keyfinish) in EC_KEY_copy()
115 dest->group->meth->keyfinish(dest); in EC_KEY_copy()
124 if (src->group != NULL) { in EC_KEY_copy()
126 EC_GROUP_free(dest->group); in EC_KEY_copy()
[all …]
/freebsd/contrib/wpa/src/p2p/
H A Dp2p_group.c49 struct p2p_group *group, **groups; in p2p_group_init() local
51 group = os_zalloc(sizeof(*group)); in p2p_group_init()
52 if (group == NULL) in p2p_group_init()
58 os_free(group); in p2p_group_init()
61 groups[p2p->num_groups++] = group; in p2p_group_init()
64 group->p2p = p2p; in p2p_group_init()
65 group->cfg = config; in p2p_group_init()
66 group->group_formation = 1; in p2p_group_init()
67 group->beacon_update = 1; in p2p_group_init()
68 p2p_group_update_ies(group); in p2p_group_init()
[all …]
/freebsd/contrib/netbsd-tests/ipf/expected/
H A Dip145 group-map in role=ipf number=300 size=5
46 { 0/0, group=303; 5/32, group=303; 1.2.3.4/32, group=303; };
47 group-map in role=nat number=300 size=5
48 { 0/0, group=303; 6/32, group=303; 1.2.3.4/32, group=303; };
49 group-map in role=auth number=300 size=5
50 { 0/0, group=303; 7/32, group=303; 1.2.3.4/32, group=303; };
51 group-map in role=count number=300 size=5
52 { 0/0, group=303; 8/32, group=303; 1.2.3.4/32, group=303; };
53 group-map out role=ipf number=400 size=5
54 { 0/0, group=303; 5/32, group=303; 1.2.3.4/32, group=606; };
[all …]
/freebsd/sys/ofed/drivers/infiniband/core/
H A Dib_multicast.c122 struct mcast_group *group; member
138 struct mcast_group *group; in mcast_find() local
142 group = rb_entry(node, struct mcast_group, node); in mcast_find()
143 ret = memcmp(mgid->raw, group->rec.mgid.raw, sizeof *mgid); in mcast_find()
145 return group; in mcast_find()
156 struct mcast_group *group, in mcast_insert() argument
168 ret = memcmp(group->rec.mgid.raw, cur_group->rec.mgid.raw, in mcast_insert()
169 sizeof group->rec.mgid); in mcast_insert()
179 rb_link_node(&group->node, parent, link); in mcast_insert()
180 rb_insert_color(&group->node, &port->table); in mcast_insert()
[all …]
/freebsd/contrib/ntp/sntp/unity/
H A Dunity_fixture.h19 #define TEST_GROUP(group)\ argument
20 static const char* TEST_GROUP_##group = #group
22 #define TEST_SETUP(group) void TEST_##group##_SETUP(void);\ argument
23 void TEST_##group##_SETUP(void)
25 #define TEST_TEAR_DOWN(group) void TEST_##group##_TEAR_DOWN(void);\ argument
26 void TEST_##group##_TEAR_DOWN(void)
29 #define TEST(group, name) \ argument
30 void TEST_##group##_##name##_(void);\
31 void TEST_##group##_##name##_run(void);\
32 void TEST_##group##_##name##_run(void)\
[all …]
/freebsd/contrib/bmake/mk/
H A Dscripts.mk35 .for group in ${SCRIPTSGROUPS}
36 buildfiles: ${${group}}
42 .for group in ${SCRIPTSGROUPS}
43 .if !empty(${group}) && defined(${group}DIR)
44 .if ${group} != "SCRIPTS"
45 ${group}_INSTALL_OWN ?= ${SCRIPTS_INSTALL_OWN}
48 STAGE_DIR.${group} ?= ${STAGE_OBJTOP}${${group}DIR}
50 .for script in ${${group}
[all...]
H A Dfiles.mk28 .for group in ${FILESGROUPS}
29 buildfiles: ${${group}}
36 # ignore group if ${group}DIR is not defined
37 .for group in ${FILESGROUPS}
38 .if !empty(${group}) && defined(${group}DIR)
39 .if ${group} != "FILES"
40 ${group}_INSTALL_OWN ?= ${FILES_INSTALL_OWN}
43 STAGE_DIR.${group}
[all...]
H A Dinc.mk34 .for group in ${INCGROUPS}
35 buildincludes: ${${group}}
42 .for group in ${INCGROUPS}
43 .if !empty(${group})
44 .if ${group} != "INC"
45 ${group}_INSTALL_OWN ?= ${INC_INSTALL_OWN}
46 ${group}DIR ?= ${INCDIR}
49 STAGE_DIR.${group} ?= ${STAGE_OBJTOP}${${group}DIR}
51 .for header in ${${group}
[all...]
/freebsd/sys/contrib/alpine-hal/
H A Dal_hal_iofic.c51 int al_iofic_config(void __iomem *regs_base, int group, uint32_t flags) in al_iofic_config() argument
56 al_assert(group < AL_IOFIC_MAX_GROUPS); in al_iofic_config()
58 al_reg_write32(&regs->ctrl[group].int_control_grp, flags); in al_iofic_config()
66 int al_iofic_moder_res_config(void __iomem *regs_base, int group, in al_iofic_moder_res_config() argument
74 al_assert(group < AL_IOFIC_MAX_GROUPS); in al_iofic_moder_res_config()
76 reg = al_reg_read32(&regs->ctrl[group].int_control_grp); in al_iofic_moder_res_config()
81 al_reg_write32(&regs->ctrl[group].int_control_grp, reg); in al_iofic_moder_res_config()
89 int al_iofic_legacy_moder_interval_config(void __iomem *regs_base, int group, in al_iofic_legacy_moder_interval_config() argument
96 al_assert(group < AL_IOFIC_MAX_GROUPS); in al_iofic_legacy_moder_interval_config()
98 reg = al_reg_read32(&regs->ctrl[group].int_control_grp); in al_iofic_legacy_moder_interval_config()
[all …]
/freebsd/contrib/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
62 { 0/0; 5/32; 1.2.3.4/32, group = 606; };
63 group-map out role = nat number = 400 group = 303
64 { 0/0; 6/32; 1.2.3.4/32, group = 606; };
65 group-map out role = auth number = 400 group = 303
66 { 0/0; 7/32; 1.2.3.4/32, group = 606; };
[all …]
/freebsd/lib/libc/tests/nss/
H A Dgetgr_test.c51 DECLARE_TEST_DATA(group)
52 DECLARE_TEST_FILE_SNAPSHOT(group)
53 DECLARE_1PASS_TEST(group)
54 DECLARE_2PASS_TEST(group)
56 static void clone_group(struct group *, struct group const *);
57 static int compare_group(struct group *, struct group *, void *);
58 static void dump_group(struct group *);
59 static void free_group(struct group *);
61 static void sdump_group(struct group *, char *, size_t);
62 static int group_read_snapshot_func(struct group *, char *);
[all …]
/freebsd/crypto/openssl/test/
H A Dectest.c39 static int group_order_tests(EC_GROUP *group) in group_order_tests() argument
51 || !TEST_ptr(G = EC_GROUP_get0_generator(group)) in group_order_tests()
52 || !TEST_ptr(P = EC_POINT_new(group)) in group_order_tests()
53 || !TEST_ptr(Q = EC_POINT_new(group)) in group_order_tests()
54 || !TEST_ptr(R = EC_POINT_new(group)) in group_order_tests()
55 || !TEST_ptr(S = EC_POINT_new(group))) in group_order_tests()
58 if (!TEST_true(EC_GROUP_get_order(group, order, ctx)) in group_order_tests()
59 || !TEST_true(EC_POINT_mul(group, Q, order, NULL, NULL, ctx)) in group_order_tests()
60 || !TEST_true(EC_POINT_is_at_infinity(group, Q)) in group_order_tests()
62 || !TEST_true(EC_GROUP_precompute_mult(group, ctx)) in group_order_tests()
[all …]
/freebsd/tests/sys/acl/
H A Dtools-nfs4.test42 > # group: wheel
45 > group@:-wxp----------:-------:deny
46 > group@:r-------------:-------:allow
53 > group@:-wxp----------:-------:deny
54 > group@:r-------------:-------:allow
62 > # group: wheel
65 > group@:write_data/execute/append_data::deny
66 > group@:read_data::allow
75 > # group: wheel
79 > group:1:----------c---:-------:deny
[all …]
H A Dtools-posix.test42 > # group: wheel
44 > group::r--
49 > group::r--
56 > # group: wheel
59 > group::r--
60 > group:43:-w-
73 > # group: wheel
75 > group::r-x
80 > group::r-x
86 > group::r--
[all …]
/freebsd/share/examples/ipfilter/rules/
H A DBASIC_1.FW25 block in log proto tcp all flags S/SA head 101 group 100
28 block in log proto tcp all flags S/SA head 201 group 200
29 block in log proto udp all head 202 group 200
36 block in log quick from 127.0.0.0/8 to any group 100
37 block in log quick from any to 127.0.0.0/8 group 100
38 block in log quick from 127.0.0.0/8 to any group 200
39 block in log quick from any to 127.0.0.0/8 group 200
49 block in log quick from 10.0.0.0/8 to any group 100
50 block in log quick from 192.168.0.0/16 to any group 100
51 block in log quick from 172.16.0.0/12 to any group 100
[all …]

12345678910>>...45