Home
last modified time | relevance | path

Searched full:group (Results 1 – 25 of 4406) sorted by relevance

12345678910>>...177

/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.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 …]
H A Dbsd.confs.mk16 . for group in ${CONFGROUPS}
17 buildconfig: ${${group}}
33 . for group in ${CONFGROUPS}
34 . if defined(${group}) && !empty(${group})
45 ${group}OWN?= ${SHAREOWN}
46 ${group}GRP?= ${SHAREGRP}
47 ${group}MODE?= ${CONFMODE}
48 ${group}DIR?= ${CONFDIR}
49 STAGE_SETS+= ${group:C,[/*],_,g}
52 . if !defined(${group}TAGS) || ! ${${group}TAGS:Mpackage=*}
[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/contrib/wpa/src/p2p/
H A Dp2p_group.c2 * Wi-Fi Direct - P2P group operations
32 * struct p2p_group - Internal P2P module per-group data
49 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()
[all …]
/freebsd/crypto/openssl/crypto/ec/
H A Dec_lib.c86 void EC_pre_comp_free(EC_GROUP *group) in EC_pre_comp_free() argument
88 switch (group->pre_comp_type) { in EC_pre_comp_free()
93 EC_nistz256_pre_comp_free(group->pre_comp.nistz256); in EC_pre_comp_free()
98 EC_nistp224_pre_comp_free(group->pre_comp.nistp224); in EC_pre_comp_free()
101 EC_nistp256_pre_comp_free(group->pre_comp.nistp256); in EC_pre_comp_free()
104 ossl_ec_nistp384_pre_comp_free(group->pre_comp.nistp384); in EC_pre_comp_free()
107 EC_nistp521_pre_comp_free(group->pre_comp.nistp521); in EC_pre_comp_free()
117 EC_ec_pre_comp_free(group->pre_comp.ec); in EC_pre_comp_free()
120 group->pre_comp.ec = NULL; in EC_pre_comp_free()
123 void EC_GROUP_free(EC_GROUP *group) in EC_GROUP_free() argument
[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 …]
/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/share/man/man7/
H A Dgroups.734 .Nd standard group names
38 installation has the following user group names:
45 group has gid\~0.
47 Users who are not in the group
53 Used by the set-group-id programs
58 Used by the set-group-id programs (like
64 are in the group
70 Historic group.
74 Used by the set-group-id programs
81 are all in the group
[all …]
/freebsd/contrib/llvm-project/lld/MachO/
H A DOptions.td14 Group<grp_lld>;
17 Group<grp_lld>;
19 Group<grp_lld>;
22 Group<grp_lld>;
25 Group<grp_lld>;
28 Group<grp_lld>;
32 Group<grp_lld>;
35 Group<grp_lld>;
37 Group<grp_lld>;
39 Group<grp_lld>;
[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/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()
64 * configure the moderation timer resolution for a given group
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()
87 * configure the moderation timer interval for a given legacy interrupt group
89 int al_iofic_legacy_moder_interval_config(void __iomem *regs_base, int group, in al_iofic_legacy_moder_interval_config() argument
[all …]
H A Dal_hal_iofic.h71 * @param group the interrupt group.
76 int al_iofic_config(void __iomem *regs_base, int group,
80 * configure the moderation timer resolution for a given group
84 * @param group the interrupt group
91 int al_iofic_moder_res_config(void __iomem *regs_base, int group,
95 * configure the moderation timer interval for a given legacy interrupt group
98 * @param group the interrupt group
103 int al_iofic_legacy_moder_interval_config(void __iomem *regs_base, int group,
110 * @param group the interrupt group
116 int al_iofic_msix_moder_interval_config(void __iomem *regs_base, int group,
[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 Dfiles.mk21 .for group in ${FILESGROUPS}
22 buildfiles: ${${group}}
29 # ignore group if ${group}DIR is not defined
30 .for group in ${FILESGROUPS}
31 .if !empty(${group}) && defined(${group}DIR)
32 .if ${group} != "FILES"
33 ${group}_INSTALL_OWN ?= ${FILES_INSTALL_OWN}
36 STAGE_DIR.${group} ?= ${STAGE_OBJTOP}${${group}DIR}
38 .for file in ${${group}:O:u}
39 ${group}_INSTALL_OWN.${file:T} ?= ${${group}_INSTALL_OWN}
[all …]
H A Dscripts.mk28 .for group in ${SCRIPTSGROUPS}
29 buildfiles: ${${group}}
35 .for group in ${SCRIPTSGROUPS}
36 .if !empty(${group}) && defined(${group}DIR)
37 .if ${group} != "SCRIPTS"
38 ${group}_INSTALL_OWN ?= ${SCRIPTS_INSTALL_OWN}
41 STAGE_DIR.${group} ?= ${STAGE_OBJTOP}${${group}DIR}
43 .for script in ${${group}:O:u}
44 ${group}_INSTALL_OWN.${script:T} ?= ${${group}_INSTALL_OWN}
45 ${group}DIR.${script:T} ?= ${${group}DIR_${script:T}:U${${group}DIR}}
[all …]
H A Dinc.mk27 .for group in ${INCGROUPS}
28 buildincludes: ${${group}}
35 .for group in ${INCGROUPS}
36 .if !empty(${group})
37 .if ${group} != "INC"
38 ${group}_INSTALL_OWN ?= ${INC_INSTALL_OWN}
39 ${group}DIR ?= ${INCDIR}
42 STAGE_DIR.${group} ?= ${STAGE_OBJTOP}${${group}DIR}
44 .for header in ${${group}:O:u}
45 ${group}_INSTALL_OWN.${header:T} ?= ${${group}_INSTALL_OWN}
[all …]
/freebsd/usr.sbin/ctld/
H A Dctl.conf.550 .No auth-group Ar name No {
55 .No portal-group Ar name No {
58 .Dl discovery-auth-group Ar name
62 .No transport-group Ar name No {
68 .Dl auth-group Ar name
69 .Dl portal-group Ar name
77 .Dl auth-group Ar name
78 .Dl transport-group Ar name
87 .It Ic auth-group Ar name
89 .Sy auth-group
[all …]
/freebsd/share/man/man5/
H A Dgroup.532 .Nm group
33 .Nd format of the group permissions file
37 file is the local source of group information.
39 `group', and the NIS maps `group.byname' and `group.bygid',
47 records, one per group, containing four colon
52 .It group
53 Name of the group.
55 Group's
59 The group's decimal ID.
61 Group members.
[all …]
/freebsd/secure/lib/libcrypto/man/man3/
H A DSSL_CTX_set1_curves.3104 least one group in the list. A number of these functions identify groups via a
106 external providers. In this case there will be no \fBNID\fR assigned for the group.
133 For a TLS 1.2 server, the groups determine the selected group. If
135 array determines the selected group. Otherwise, the order is ignored and the
138 For a TLS 1.3 server, the groups determine the selected group, but selection is
140 A TLS 1.3 client sends both a group list and predicted keyshares for a subset
142 A server choosing a group outside the client\*(Aqs predicted subset incurs an extra
144 However, in some situations, the most preferred group may not be predicted.
154 it possible to specify group tuples as described below.
168 Each group can be either the \fBNIST\fR name (e.g. \fBP\-256\fR), some other commonly
[all …]
/freebsd/tests/sys/acl/
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/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 …]

12345678910>>...177