/freebsd/sys/dev/mlx4/mlx4_ib/ |
H A D | mlx4_ib_mcg.c | 50 #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/share/mk/ |
H A D | bsd.files.mk | 15 .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 D | bsd.incs.mk | 11 .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 D | bsd.confs.mk | 16 . 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 …]
|
/freebsd/contrib/wpa/src/p2p/ |
H A D | p2p_group.c | 2 * 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 D | ec_lib.c | 89 void EC_pre_comp_free(EC_GROUP *group) in EC_pre_comp_free() argument 91 switch (group->pre_comp_type) { in EC_pre_comp_free() 96 EC_nistz256_pre_comp_free(group->pre_comp.nistz256); in EC_pre_comp_free() 101 EC_nistp224_pre_comp_free(group->pre_comp.nistp224); in EC_pre_comp_free() 104 EC_nistp256_pre_comp_free(group->pre_comp.nistp256); in EC_pre_comp_free() 107 EC_nistp521_pre_comp_free(group->pre_comp.nistp521); in EC_pre_comp_free() 116 EC_ec_pre_comp_free(group->pre_comp.ec); in EC_pre_comp_free() 119 group->pre_comp.ec = NULL; in EC_pre_comp_free() 122 void EC_GROUP_free(EC_GROUP *group) in EC_GROUP_free() argument 124 if (!group) in EC_GROUP_free() [all …]
|
H A D | ecp_smpl.c | 98 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 D | ec2_smpl.c | 28 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 D | ecp_mont.c | 83 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 D | ec_oct.c | 24 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 D | ib_multicast.c | 122 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/llvm-project/lld/MachO/ |
H A D | Options.td | 14 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 D | ip1 | 45 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 D | al_hal_iofic.c | 51 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(®s->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(®s->ctrl[group].int_control_grp); in al_iofic_moder_res_config() 81 al_reg_write32(®s->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 D | al_hal_iofic.h | 71 * @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 D | unity_fixture.h | 19 #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 D | files.mk | 28 .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 D | scripts.mk | 35 .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 D | inc.mk | 34 .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/tests/sys/acl/ |
H A D | tools-posix.test | 42 > # 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/man/man5/ |
H A D | group.5 | 32 .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/contrib/netbsd-tests/ipf/regress/ |
H A D | ip1 | 52 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 D | getgr_test.c | 51 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/sys/contrib/device-tree/Bindings/pinctrl/ |
H A D | marvell,armada-37xx-pinctrl.txt | 32 group: jtag 36 group sdio0 40 group emmc_nb 44 group pwm0 48 group pwm1 52 group pwm2 56 group pwm3 60 group pmic1 64 group pmic0 68 group i2c2 [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | Options.td | 4 def tm_sort : Option<"sort", "s">, Group<1>, 7 def tm_smn : Option<"show-mangled-names", "m">, Group<1>, 12 def tm_json : Option<"json", "j">, Group<1>, 14 def tm_errors_only : Option<"errors-only", "e">, Group<1>, 61 def blist_brief : Option<"brief", "b">, Group<1>, 63 def blist_full : Option<"full", "f">, Group<2>, 65 def blist_verbose : Option<"verbose", "v">, Group<3>, 74 def breakpoint_modify_ignore_count : Option<"ignore-count", "i">, Group<1>, 77 def breakpoint_modify_one_shot : Option<"one-shot", "o">, Group<1>, 80 def breakpoint_modify_thread_index : Option<"thread-index", "x">, Group<1>, [all …]
|