Searched refs:group (Results 1 - 25 of 675) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/dist/dhcp/common/
H A Dmemory.c42 struct group *root_group;
46 isc_result_t delete_group (struct group_object *group, int writep) argument
50 /* The group should exist and be hashed - if not, it's invalid. */
53 group_hash_lookup (&d, group_name_hash, group -> name,
54 strlen (group -> name), MDL);
60 /* Also not okay to delete a group that's not the one in
62 if (d != group)
67 if ((group -> flags & GROUP_OBJECT_DYNAMIC) &&
68 !(group -> flags & GROUP_OBJECT_STATIC)) {
70 group
85 supersede_group(struct group_object *group, int writep) argument
141 clone_group(struct group **gp, struct group *group, const char *file, int line) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/elf/
H A Dgroup0b.d2 #name: group section
6 COMDAT group section \[ 1\] `\.group' \[.foo_group\] contains 2 sections:
H A Dgroupautob.d2 #name: automatic section group b
6 COMDAT group section \[ 1\] `\.group' \[some_group\] contains 2 sections:
H A Dgroup1b.d2 #name: group section with multiple sections of same name
6 COMDAT group section \[ 1\] `\.group' \[.foo_group\] contains 1 sections:
H A Dgroup0a.d2 #name: group section
6 [ ]*\[.*\][ ]+\.group[ ]+GROUP.*
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/ld/testsuite/ld-elf/
H A Dgroup10.d2 #ld: -r -T group.ld
6 group section \[[ 0-9]+\] `\.group' \[foo_group\] contains 4 sections:
H A Dgroup7.d1 #source: ../../../binutils/testsuite/binutils-all/group.s
2 #source: ../../../binutils/testsuite/binutils-all/group-2.s
3 #source: ../../../binutils/testsuite/binutils-all/group-3.s
4 #source: ../../../binutils/testsuite/binutils-all/group-4.s
9 # well with unique group sections under ld -r.
12 COMDAT group section \[[ 0-9]+\] `\.group' \[foo_group\] contains 2 sections:
17 COMDAT group section \[[ 0-9]+\] `.group' \[.text.foo\] contains 2 sections:
22 COMDAT group sectio
[all...]
/netbsd-6-1-5-RELEASE/include/
H A Dgrp.h47 #define _PATH_GROUP "/etc/group"
50 struct group { struct
51 __aconst char *gr_name; /* group name */
52 __aconst char *gr_passwd; /* group password */
53 gid_t gr_gid; /* group id */
54 __aconst char *__aconst *gr_mem; /* group members */
58 struct group *getgrgid(gid_t);
59 struct group *getgrnam(const char *);
62 int getgrgid_r(gid_t, struct group *, char *, size_t,
63 struct group **);
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/ia64/
H A Dlast.l2 .*:4: Error: .* must be last in instruction group
3 .*:10: Error: .* must be last in instruction group
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/ec/
H A Dec_oct.c71 int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, argument
74 if (group->meth->point_set_compressed_coordinates == 0
75 && !(group->meth->flags & EC_FLAGS_DEFAULT_OCT))
80 if (group->meth != point->meth)
85 if(group->meth->flags & EC_FLAGS_DEFAULT_OCT)
87 if (group->meth->field_type == NID_X9_62_prime_field)
89 group, point, x, y_bit, ctx);
98 group, point, x, y_bit, ctx);
101 return group->meth->point_set_compressed_coordinates(group, poin
105 EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
132 EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
167 EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
[all...]
H A Dec2_mult.c84 static int gf2m_Mdouble(const EC_GROUP *group, BIGNUM *x, BIGNUM *z, BN_CTX *ctx) argument
94 if (!group->meth->field_sqr(group, x, x, ctx)) goto err;
95 if (!group->meth->field_sqr(group, t1, z, ctx)) goto err;
96 if (!group->meth->field_mul(group, z, x, t1, ctx)) goto err;
97 if (!group->meth->field_sqr(group, x, x, ctx)) goto err;
98 if (!group
115 gf2m_Madd(const EC_GROUP *group, const BIGNUM *x, BIGNUM *x1, BIGNUM *z1, const BIGNUM *x2, const BIGNUM *z2, BN_CTX *ctx) argument
152 gf2m_Mxy(const EC_GROUP *group, const BIGNUM *x, const BIGNUM *y, BIGNUM *x1, BIGNUM *z1, BIGNUM *x2, BIGNUM *z2, BN_CTX *ctx) argument
221 ec_GF2m_montgomery_point_multiply(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, const EC_POINT *point, BN_CTX *ctx) argument
322 ec_GF2m_simple_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
385 ec_GF2m_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
390 ec_GF2m_have_precompute_mult(const EC_GROUP *group) argument
[all...]
H A Dec_lib.c123 void EC_GROUP_free(EC_GROUP *group) argument
125 if (!group) return;
127 if (group->meth->group_finish != 0)
128 group->meth->group_finish(group);
130 EC_EX_DATA_free_all_data(&group->extra_data);
132 if (group->generator != NULL)
133 EC_POINT_free(group->generator);
134 BN_free(&group->order);
135 BN_free(&group
144 EC_GROUP_clear_free(EC_GROUP *group) argument
272 EC_GROUP_method_of(const EC_GROUP *group) argument
284 EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor) argument
313 EC_GROUP_get0_generator(const EC_GROUP *group) argument
319 EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) argument
328 EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx) argument
337 EC_GROUP_set_curve_name(EC_GROUP *group, int nid) argument
343 EC_GROUP_get_curve_name(const EC_GROUP *group) argument
349 EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag) argument
355 EC_GROUP_get_asn1_flag(const EC_GROUP *group) argument
361 EC_GROUP_set_point_conversion_form(EC_GROUP *group, point_conversion_form_t form) argument
368 EC_GROUP_get_point_conversion_form(const EC_GROUP *group) argument
374 EC_GROUP_set_seed(EC_GROUP *group, const unsigned char *p, size_t len) argument
395 EC_GROUP_get0_seed(const EC_GROUP *group) argument
401 EC_GROUP_get_seed_len(const EC_GROUP *group) argument
407 EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
418 EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
429 EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
440 EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
451 EC_GROUP_get_degree(const EC_GROUP *group) argument
462 EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
693 EC_POINT_new(const EC_GROUP *group) argument
768 EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group) argument
793 EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
809 EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
826 EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
843 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
860 EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
877 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
894 EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
911 EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
927 EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
943 EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx) argument
959 EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
975 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
991 EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1007 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1023 EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1050 EC_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
1060 EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar, const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx) argument
1074 EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
1086 EC_GROUP_have_precompute_mult(const EC_GROUP *group) argument
[all...]
H A Decp_mont.c122 int ec_GFp_mont_group_init(EC_GROUP *group) argument
126 ok = ec_GFp_simple_group_init(group);
127 group->field_data1 = NULL;
128 group->field_data2 = NULL;
133 void ec_GFp_mont_group_finish(EC_GROUP *group) argument
135 if (group->field_data1 != NULL)
137 BN_MONT_CTX_free(group->field_data1);
138 group->field_data1 = NULL;
140 if (group->field_data2 != NULL)
142 BN_free(group
149 ec_GFp_mont_group_clear_finish(EC_GROUP *group) argument
204 ec_GFp_mont_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
264 ec_GFp_mont_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
276 ec_GFp_mont_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
288 ec_GFp_mont_field_encode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
300 ec_GFp_mont_field_decode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
312 ec_GFp_mont_field_set_to_one(const EC_GROUP *group, BIGNUM *r, BN_CTX *ctx) argument
[all...]
H A Decp_smpl.c137 int ec_GFp_simple_group_init(EC_GROUP *group) argument
139 BN_init(&group->field);
140 BN_init(&group->a);
141 BN_init(&group->b);
142 group->a_is_minus3 = 0;
147 void ec_GFp_simple_group_finish(EC_GROUP *group) argument
149 BN_free(&group->field);
150 BN_free(&group->a);
151 BN_free(&group->b);
155 void ec_GFp_simple_group_clear_finish(EC_GROUP *group) argument
175 ec_GFp_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
230 ec_GFp_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
281 ec_GFp_simple_group_get_degree(const EC_GROUP *group) argument
287 ec_GFp_simple_group_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
393 ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
401 ec_GFp_simple_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
461 ec_GFp_simple_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
514 ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
528 ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
643 ec_GFp_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
807 ec_GFp_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
924 ec_GFp_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
934 ec_GFp_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
940 ec_GFp_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1031 ec_GFp_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1142 ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1181 ec_GFp_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1328 ec_GFp_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
1334 ec_GFp_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
[all...]
H A Dec2_smpl.c136 int ec_GF2m_simple_group_init(EC_GROUP *group) argument
138 BN_init(&group->field);
139 BN_init(&group->a);
140 BN_init(&group->b);
148 void ec_GF2m_simple_group_finish(EC_GROUP *group) argument
150 BN_free(&group->field);
151 BN_free(&group->a);
152 BN_free(&group->b);
159 void ec_GF2m_simple_group_clear_finish(EC_GROUP *group) argument
161 BN_clear_free(&group
197 ec_GF2m_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
230 ec_GF2m_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
257 ec_GF2m_simple_group_get_degree(const EC_GROUP *group) argument
266 ec_GF2m_simple_group_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
347 ec_GF2m_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
358 ec_GF2m_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
385 ec_GF2m_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
420 ec_GF2m_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
522 ec_GF2m_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
528 ec_GF2m_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
540 ec_GF2m_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
550 ec_GF2m_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
605 ec_GF2m_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
650 ec_GF2m_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
686 ec_GF2m_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
700 ec_GF2m_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
707 ec_GF2m_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
714 ec_GF2m_simple_field_div(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/binutils/testsuite/binutils-all/
H A Dstrip-2.d2 #source: group.s
5 #name: strip with section group 2
8 \[[ 0-9]+\] \.group[ \t]+GROUP[ \t]+.*
14 COMDAT group section \[[ 0-9]+\] `\.group' \[foo_group\] contains 2 sections:
H A Dstrip-5.d2 #source: group-2.s
5 #name: strip with section group 5
8 \[[ 0-9]+\] .group[ \t]+GROUP[ \t]+.*
14 COMDAT group section \[[ 0-9]+\] `.group' \[.text.foo\] contains 2 sections:
H A Dstrip-7.d2 #source: group-3.s
5 #name: strip with section group 7
8 \[[ 0-9]+\] .group[ \t]+GROUP[ \t]+.*
14 COMDAT group section \[[ 0-9]+\] `.group' \[foo3\] contains 2 sections:
H A Dstrip-9.d2 #source: group-4.s
5 #name: strip with section group 9
8 \[[ 0-9]+\] .group[ \t]+GROUP[ \t]+.*
14 COMDAT group section \[[ 0-9]+\] `.group' \[foo4\] contains 2 sections:
H A Dgroup-5.d4 #name: copy removing group member
9 \[[ 0-9]+\] \.group[ \t]+GROUP[ \t]+.*
15 COMDAT group section \[[ 0-9]+\] `\.group' \[foo_group\] contains 2 sections:
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/ld/testsuite/ld-arm/
H A Dgroup-relocs-alu-bad.d1 #name: ALU group relocations failure test
2 #source: group-relocs-alu-bad.s
4 #error: Overflow whilst splitting 0x1010 for group relocation
H A Dgroup-relocs-ldc-bad.d1 #name: LDC group relocations failure test
2 #source: group-relocs-ldc-bad.s
4 #error: Overflow whilst splitting 0x110400 for group relocation
H A Dgroup-relocs-ldr-bad.d1 #name: LDR group relocations failure test
2 #source: group-relocs-ldr-bad.s
4 #error: .*Overflow whilst splitting 0x8001000 for group relocation.*
H A Dgroup-relocs-ldrs-bad.d1 #name: LDRS group relocations failure test
2 #source: group-relocs-ldrs-bad.s
4 #error: Overflow whilst splitting 0x8000100 for group relocation
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/arm/
H A Dgroup-reloc-ldc-parsing-bad.l2 [^:]*:25: Error: this group relocation is not allowed on this instruction -- `ldc 0,c0,\[r0,#:pc_g0_nc:\(sym\)\]'
3 [^:]*:25: Error: this group relocation is not allowed on this instruction -- `ldc 0,c0,\[r0,#:pc_g1_nc:\(sym\)\]'
4 [^:]*:25: Error: this group relocation is not allowed on this instruction -- `ldc 0,c0,\[r0,#:sb_g0_nc:\(sym\)\]'
5 [^:]*:25: Error: this group relocation is not allowed on this instruction -- `ldc 0,c0,\[r0,#:sb_g1_nc:\(sym\)\]'
6 [^:]*:25: Error: unknown group relocation -- `ldc 0,c0,\[r0,#:foo:\(sym\)\]'
7 [^:]*:26: Error: this group relocation is not allowed on this instruction -- `ldcl 0,c0,\[r0,#:pc_g0_nc:\(sym\)\]'
8 [^:]*:26: Error: this group relocation is not allowed on this instruction -- `ldcl 0,c0,\[r0,#:pc_g1_nc:\(sym\)\]'
9 [^:]*:26: Error: this group relocation is not allowed on this instruction -- `ldcl 0,c0,\[r0,#:sb_g0_nc:\(sym\)\]'
10 [^:]*:26: Error: this group relocation is not allowed on this instruction -- `ldcl 0,c0,\[r0,#:sb_g1_nc:\(sym\)\]'
11 [^:]*:26: Error: unknown group relocatio
[all...]

Completed in 177 milliseconds

1234567891011>>