Home
last modified time | relevance | path

Searched +full:group +full:- (Results 1 – 25 of 1110) sorted by relevance

12345678910>>...45

/freebsd/sys/dev/mlx4/mlx4_ib/
H A Dmlx4_ib_mcg.c14 * - Redistributions of source code must retain the above
18 * - Redistributions in binary form must reproduce the above
50 #define mcg_warn_group(group, format, arg...) \ argument
51 pr_warn("%s-%d: %16s (port %d): WARNING: " format, __func__, __LINE__,\
52 (group)->name, group->demux->port, ## arg)
54 #define mcg_debug_group(group, format, arg...) \ argument
55 pr_debug("%s-%d: %16s (port %d): WARNING: " format, __func__, __LINE__,\
56 (group)->name, (group)->demux->port, ## arg)
58 #define mcg_error_group(group, format, arg...) \ argument
59 pr_err(" %16s: " format, (group)->name, ## arg)
[all …]
/freebsd/contrib/wpa/src/p2p/
H A Dp2p_group.c2 * Wi-Fi Direct - P2P group operations
3 * Copyright (c) 2009-2010, Atheros Communications
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()
55 groups = os_realloc_array(p2p->groups, p2p->num_groups + 1, in p2p_group_init()
58 os_free(group); in p2p_group_init()
61 groups[p2p->num_groups++] = group; in p2p_group_init()
62 p2p->groups = groups; in p2p_group_init()
[all …]
/freebsd/crypto/openssl/crypto/ec/
H A Dec_lib.c2 * Copyright 2001-2025 The OpenSSL Project Authors. All Rights Reserved.
39 if (meth->group_init == 0) { in ossl_ec_group_new_ex()
48 ret->libctx = libctx; in ossl_ec_group_new_ex()
50 ret->propq = OPENSSL_strdup(propq); in ossl_ec_group_new_ex()
51 if (ret->propq == NULL) in ossl_ec_group_new_ex()
54 ret->meth = meth; in ossl_ec_group_new_ex()
55 if ((ret->meth->flags & EC_FLAGS_CUSTOM_CURVE) == 0) { in ossl_ec_group_new_ex()
56 ret->order = BN_new(); in ossl_ec_group_new_ex()
57 if (ret->order == NULL) in ossl_ec_group_new_ex()
59 ret->cofactor = BN_new(); in ossl_ec_group_new_ex()
[all …]
H A Decp_smpl.c2 * Copyright 2001-2022 The OpenSSL Project Authors. All Rights Reserved.
12 * ECDSA low-level APIs are deprecated for public use, but still ok for
86 * non-trivial representations of field elements if necessary
94 * that if a non-trivial representation is used, it is a Montgomery
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()
[all …]
H A Dec2_smpl.c2 * Copyright 2002-2021 The OpenSSL Project Authors. All Rights Reserved.
12 * ECDSA low-level APIs are deprecated for public use, but still ok for
25 * Initialize a GF(2^m)-based EC_GROUP structure. Note that all other members
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()
[all …]
H A Decp_mont.c2 * Copyright 2001-2025 The OpenSSL Project Authors. All Rights Reserved.
12 * ECDSA low-level APIs are deprecated for public use, but still ok for
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()
[all …]
H A Dec_oct.c2 * Copyright 2011-2021 The OpenSSL Project Authors. All Rights Reserved.
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()
[all …]
/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/ofed/drivers/infiniband/core/
H A Dib_multicast.c1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause OR GPL-2.0
16 * - Redistributions of source code must retain the above
20 * - Redistributions in binary form must reproduce the above
39 #include <linux/dma-mapping.h>
122 struct mcast_group *group; member
137 struct rb_node *node = port->table.rb_node; in mcast_find()
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()
[all …]
/freebsd/contrib/llvm-project/lld/MachO/
H A DOptions.td4 def NAME: Flag<["--"], name>, HelpText<help1>;
5 def no_ # NAME: Flag<["--"], "no-" # name>, HelpText<help2>;
9 // '--' instead of '-' and use dashes instead of underscores, so
11 def grp_lld : OptionGroup<"kind">, HelpText<"LLD-SPECIFIC">;
13 def help : Flag<["-", "--"], "help">,
14 Group<grp_lld>;
15 def help_hidden : Flag<["--"], "help-hidden">,
17 Group<grp_lld>;
18 def verbose : Flag<["--"], "verbose">,
19 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.c1 /*-
10 found at http://www.gnu.org/licenses/gpl-2.0.html
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(&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()
[all …]
H A Dal_hal_iofic.h1 /*-
10 found at http://www.gnu.org/licenses/gpl-2.0.html
54 /* *INDENT-OFF* */
58 /* *INDENT-ON* */
71 * @param group the interrupt group.
74 * @return 0 on success. -EINVAL otherwise.
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
89 * @return 0 on success. -EINVAL otherwise.
[all …]
/freebsd/secure/lib/libcrypto/man/man3/
H A DSSL_CTX_set1_curves.31 .\" -*- mode: troff; coding: utf-8 -*-
58 .TH SSL_CTX_SET1_CURVES 3ossl 2025-09-30 3.5.4 OpenSSL
69 \&\- EC supported curve functions
101 least one group in the list. A number of these functions identify groups via a
103 external providers. In this case there will be no NID assigned for the group.
130 For a TLS 1.2 server, the groups determine the selected group. If
132 array determines the selected group. Otherwise, the order is ignored and the
135 For a TLS 1.3 server, the groups determine the selected group, but
136 selection is more complex. A TLS 1.3 client sends both a group list as well as a
137 predicted subset of groups. Choosing a group outside the predicted subset incurs
[all …]
/freebsd/usr.sbin/ctld/
H A Dctl.conf.547 .Bd -literal -offset indent
50 .No auth-group Ar name No {
55 .No portal-group Ar name No {
57 .\".Dl listen-iser Ar address
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
[all …]
/freebsd/contrib/bmake/mk/
H A Dfiles.mk1 # SPDX-License-Identifier: BSD-2-Clause
14 # Please send copies of changes and bug-fixes to:
20 FILES_INSTALL_OWN ?= -o ${SHAREOWN} -g ${SHAREGRP}
22 FILES_COPY ?= -C
28 .for group in ${FILESGROUPS}
29 buildfiles: ${${group}}
[all...]
H A Dscripts.mk1 # SPDX-License-Identifier: BSD-2-Clause
14 # Please send copies of changes and bug-fixes to:
28 SCRIPTS_INSTALL_OWN?= -o ${SCRIPTSOWN} -g ${SCRIPTSGRP}
29 SCRIPTS_COPY ?= -C
35 .for group in ${SCRIPTSGROUPS}
36 buildfiles: ${${group}}
[all...]
H A Dinc.mk1 # SPDX-License-Identifier: BSD-2-Clause
14 # Please send copies of changes and bug-fixes to:
21 INC_INSTALL_OWN ?= -o ${LIBOWN} -g ${LIBGRP}
24 INC_COPY ?= -C
34 .for group in ${INCGROUPS}
35 buildincludes: ${${group}}
[all...]
/freebsd/tests/sys/acl/
H A Dtools-posix.test26 # This is a tools-level test for POSIX.1e ACL functionality. Run it as root
27 # using ACL-enabled kernel:
29 # /usr/src/tools/regression/acltools/run /usr/src/tools/regression/acltools/tools-posix.test
39 $ getfacl -n xxx
42 > # group: wheel
43 > user::rw-
44 > group::r--
45 > other::r--
47 $ getfacl -q xxx
48 > user::rw-
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DSSL_CTX_set1_curves.pod10 - EC supported curve functions
42 least one group in the list. A number of these functions identify groups via a
44 external providers. In this case there will be no NID assigned for the group.
71 For a TLS 1.2 server, the groups determine the selected group. If
73 array determines the selected group. Otherwise, the order is ignored and the
76 For a TLS 1.3 server, the groups determine the selected group, but
77 selection is more complex. A TLS 1.3 client sends both a group list as well as a
78 predicted subset of groups. Choosing a group outside the predicted subset incurs
79 an extra roundtrip. However, in some situations, the most preferred group may
83 with, e.g., a post-quantum algorithm, this behavior may allow a network attacker
[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
51 .Bl -tag -width password -offset indent -compact
52 .It group
53 Name of the group.
55 Group's
59 The group's decimal ID.
[all …]
/freebsd/contrib/netbsd-tests/ipf/regress/
H A Dip11 #:%s/ \(number = [0-9]*\) \(type = [a-z]*\)/ \2 \1/g
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
[all …]
/freebsd/sys/contrib/device-tree/Bindings/pinctrl/
H A Dmarvell,armada-37xx-pinctrl.txt12 ------------------------
16 Refer to pinctrl-bindings.txt in this directory for details of the
22 - compatible: "marvell,armada3710-sb-pinctrl", "syscon, "simple-mfd"
24 "marvell,armada3710-nb-pinctrl", "syscon, "simple-mfd"
26 - reg: The first set of register are for pinctrl/gpio and the second
28 - interrupts: list of the interrupt use by the gpio
32 group: jtag
33 - pins 20-24
34 - functions jtag, gpio
36 group sdio0
[all …]

12345678910>>...45