Searched refs:group (Results 201 - 225 of 534) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/ofed/opensm/opensm/
H A Dosm_qos_parser_l.l81 #define START_NAME {in_single_string = TRUE;} /* single string w/o whitespaces (port group name) */
87 #define START_GROUP {in_list_of_strings = TRUE;} /* list of strings w/o whitespaces (group names) */
88 #define START_ACROSS {in_list_of_strings = TRUE;} /* list of strings w/o whitespaces (group names) */
89 #define START_ACROSS_TO {in_list_of_strings = TRUE;} /* list of strings w/o whitespaces (group names) */
90 #define START_ACROSS_FROM {in_list_of_strings = TRUE;} /* list of strings w/o whitespaces (group names) */
91 #define START_SOURCE {in_list_of_strings = TRUE;} /* list of strings w/o whitespaces (group names) */
92 #define START_DESTINATION {in_list_of_strings = TRUE;} /* list of strings w/o whitespaces (group names) */
132 PORT_GROUP_START port\-group
133 PORT_GROUP_END end\-port\-group
150 GROUP group
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_platform_limits_solaris.cpp72 unsigned struct_group_sz = sizeof(struct group);
346 CHECK_TYPE_SIZE(group); variable
347 CHECK_SIZE_AND_OFFSET(group, gr_name);
348 CHECK_SIZE_AND_OFFSET(group, gr_passwd);
349 CHECK_SIZE_AND_OFFSET(group, gr_gid);
350 CHECK_SIZE_AND_OFFSET(group, gr_mem);
/freebsd-11-stable/contrib/subversion/subversion/libsvn_repos/
H A Dauthz_parse.c64 /* Temporary group definition constructed by the authz/group parser.
66 data will recursively expand group memberships. */
81 Stores singleton instances of user, group and repository names,
353 ? _("Section is not valid in the global group file: [%s]")
359 /* Constructor callback: Parses a group declaration. */
365 const char *group; local
375 _("Global group name '%s' may not begin with '%c'"),
385 group = apr_pstrcat(cb->parser_pool, "@", option->data, SVN_VA_NULL);
387 if (apr_hash_get(cb->parsed_groups, group, group_le
1045 add_to_group(ctor_baton_t *cb, const char *group, const char *user) argument
1069 const char *const group = key; local
[all...]
/freebsd-11-stable/contrib/ntp/ntpd/
H A Dntpd.c211 char *group; /* group to switch to */ variable
215 struct group *gr;
700 * Map group name/number to group ID
707 if (isdigit((unsigned char)*group)) {
708 sw_gid = (gid_t)strtoul(group, &endp, 0);
713 if ((gr = getgrnam(group)) != NULL) {
717 msyslog(LOG_ERR, "Cannot find group `%s'", group);
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/ttyio/
H A Dt_ptm.c65 struct group *gp;
98 "cannot find `tty' group");
130 struct group *gp;
162 "cannot find `tty' group");
/freebsd-11-stable/libexec/mknetid/
H A Dmknetid.c64 /* Default location of group file. */
74 * Stored hash table of 'reverse' group member database
85 extern struct group *_getgrent(void);
106 struct group *gr;
166 /* Load all the group membership info into a hash table. */
181 * group information we just stored if necessary.
/freebsd-11-stable/sys/mips/mediatek/
H A Dmtk_pinctrl.c95 const char *group, char *func)
101 if (strcmp(table[i].name, group) == 0) {
133 num_groups = ofw_bus_string_list_to_array(node, "ralink,group",
205 * contains the 'ralink,group' and 'ralink,function' properties.
94 mtk_pinctrl_process_entry(device_t dev, struct mtk_pin_group *table, const char *group, char *func) argument
/freebsd-11-stable/tests/sys/opencrypto/
H A Ddpkt.py100 if mat and mat.group('chr') != 's':
101 cnt = int(mat.group('int'))
/freebsd-11-stable/usr.bin/mail/
H A Dcmdtab.c52 { "alias", group, M|RAWLIST, 0, 1000 },
82 { "group", group, M|RAWLIST, 0, 1000 },
H A Dvars.c134 * Locate a group name and return it.
149 * Print a group out on stdout
155 struct group *gp;
158 printf("\"%s\": not a group\n", name);
169 * the variable or group hash table.
/freebsd-11-stable/crypto/openssl/crypto/ecdh/
H A Decdhtest.c131 const EC_GROUP *group; local
138 group = EC_KEY_get0_group(a);
160 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) ==
163 (group, EC_KEY_get0_public_key(a), x_a, y_a, ctx))
168 if (!EC_POINT_get_affine_coordinates_GF2m(group,
190 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) ==
193 (group, EC_KEY_get0_public_key(b), x_b, y_b, ctx))
198 if (!EC_POINT_get_affine_coordinates_GF2m(group,
/freebsd-11-stable/share/mk/
H A Dbsd.snmpmod.mk35 SMILINT_FLAGS?= -c /dev/null -l6 -i group-membership
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/
H A DHostInfoPosix.cpp92 struct group group_info;
93 struct group *group_info_ptr = &group_info;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptions.h269 /// Append all options from \a group using the exact same option groups that
272 /// \param[in] group
273 /// A group of options to take option values from and copy their
275 void Append(OptionGroup *group);
279 /// Append options from \a group that have a usage mask that has any bits in
283 /// \param[in] group
284 /// A group of options to take option values from and copy their
288 /// When copying options from \a group, you might only want some of
289 /// the options to be appended to this group. This mask allows you
290 /// to control which options from \a group ge
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_mac.cpp129 INTERCEPTOR(void, dispatch_group_async_f, dispatch_group_t group, argument
133 (group, dq, (void *)lsan_ctxt, lsan_dispatch_call_block_and_release);
/freebsd-11-stable/contrib/netbsd-tests/fs/ffs/
H A Dt_clearquota.sh30 for q in "user" "group"; do
54 group)
H A Dt_setquota.sh30 for q in "user" "group"; do
61 group)
117 group)
167 group)
188 -o "match:Default (user|group) disk quotas: $" \
198 -o "not-match:Default (user|group) disk quotas: $" \
199 -o "match:Default (user|group) disk quotas: none$" \
/freebsd-11-stable/contrib/gdb/gdb/
H A Di386-tdep.h193 /* Return non-zero if REGNUM is a member of the specified group. */
195 struct reggroup *group);
/freebsd-11-stable/lib/libpam/modules/pam_ftpusers/
H A Dpam_ftpusers.c58 struct group *grp;
90 /* member of specified group? */
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dpwcache.c91 struct group *gr;
/freebsd-11-stable/include/
H A Dprintf.h59 unsigned group; member in struct:printf_info
/freebsd-11-stable/contrib/dma/
H A Ddma-mbox-create.c89 struct group *gr;
99 logfail(EX_CONFIG, "cannot find dma group `%s'", DMA_GROUP);
/freebsd-11-stable/crypto/openssl/crypto/ec/
H A Decp_nistp256.c1089 * elliptic curve group itself. Points on the curve are represented in Jacobian
1750 /* Precomputation for the group generator. */
1867 int ec_GFp_nistp256_group_init(EC_GROUP *group) argument
1870 ret = ec_GFp_simple_group_init(group);
1871 group->a_is_minus3 = 1;
1875 int ec_GFp_nistp256_group_set_curve(EC_GROUP *group, const BIGNUM *p, argument
1899 group->field_mod_func = BN_nist_mod_256;
1900 ret = ec_GFp_simple_group_set_curve(group, p, a, b, ctx);
1912 int ec_GFp_nistp256_point_get_affine_coordinates(const EC_GROUP *group, argument
1921 if (EC_POINT_is_at_infinity(group, poin
1990 ec_GFp_nistp256_points_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) argument
2206 ec_GFp_nistp256_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
2349 ec_GFp_nistp256_have_precompute_mult(const EC_GROUP *group) argument
[all...]
H A Decp_nistp521.c1009 * elliptic curve group itself. Points on the curve are represented in Jacobian
1562 /* Precomputation for the group generator. */
1679 int ec_GFp_nistp521_group_init(EC_GROUP *group) argument
1682 ret = ec_GFp_simple_group_init(group);
1683 group->a_is_minus3 = 1;
1687 int ec_GFp_nistp521_group_set_curve(EC_GROUP *group, const BIGNUM *p, argument
1711 group->field_mod_func = BN_nist_mod_521;
1712 ret = ec_GFp_simple_group_set_curve(group, p, a, b, ctx);
1724 int ec_GFp_nistp521_point_get_affine_coordinates(const EC_GROUP *group, argument
1732 if (EC_POINT_is_at_infinity(group, poin
1802 ec_GFp_nistp521_points_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) argument
2017 ec_GFp_nistp521_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
2130 ec_GFp_nistp521_have_precompute_mult(const EC_GROUP *group) argument
[all...]
/freebsd-11-stable/tools/tools/notescheck/
H A Dnotescheck.py235 for group in groups:
237 words.append(group)
240 for word in group.split():

Completed in 190 milliseconds

1234567891011>>