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

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/notify/
H A Dgroup.c32 * Final freeing of a group
34 void fsnotify_final_destroy_group(struct fsnotify_group *group) argument
37 fsnotify_flush_notify(group);
39 if (group->ops->free_group_priv)
40 group->ops->free_group_priv(group);
42 kfree(group);
46 * Trying to get rid of a group. We need to first get rid of any outstanding
47 * allocations and then free the group. Remember that fsnotify_clear_marks_by_group
49 * hold a reference to this group (vi
53 fsnotify_destroy_group(struct fsnotify_group *group) argument
68 fsnotify_put_group(struct fsnotify_group *group) argument
79 struct fsnotify_group *group; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/libpwdgrp/
H A Duidgid_get.c34 struct group *gr;
35 char *user, *group; local
39 group = strchr(ug, ':');
40 if (group) {
41 int sz = (++group) - ug;
65 if (group) {
67 n = bb_strtou(group, NULL, 10);
73 gr = getgrnam(group);
82 * ":group" sets gid only
83 * "user:" sets uid and gid (to user's primary group i
89 char *group; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/ec/
H A Dec_oct.c71 int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, argument
75 if (group->meth->point_set_compressed_coordinates == 0
76 && !(group->meth->flags & EC_FLAGS_DEFAULT_OCT)) {
81 if (group->meth != point->meth) {
86 if (group->meth->flags & EC_FLAGS_DEFAULT_OCT) {
87 if (group->meth->field_type == NID_X9_62_prime_field)
88 return ec_GFp_simple_set_compressed_coordinates(group, point, x,
98 return ec_GF2m_simple_set_compressed_coordinates(group, point, x,
102 return group->meth->point_set_compressed_coordinates(group, poin
107 EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
135 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
166 EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
[all...]
H A Dec_lib.c118 void EC_GROUP_free(EC_GROUP *group) argument
120 if (!group)
123 if (group->meth->group_finish != 0)
124 group->meth->group_finish(group);
126 EC_EX_DATA_free_all_data(&group->extra_data);
128 if (EC_GROUP_VERSION(group) && group->mont_data)
129 BN_MONT_CTX_free(group->mont_data);
131 if (group
142 EC_GROUP_clear_free(EC_GROUP *group) argument
283 EC_GROUP_method_of(const EC_GROUP *group) argument
293 EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor) argument
331 EC_GROUP_get0_generator(const EC_GROUP *group) argument
336 EC_GROUP_get_mont_data(const EC_GROUP *group) argument
341 EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) argument
349 EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx) argument
358 EC_GROUP_set_curve_name(EC_GROUP *group, int nid) argument
363 EC_GROUP_get_curve_name(const EC_GROUP *group) argument
368 EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag) argument
374 EC_GROUP_get_asn1_flag(const EC_GROUP *group) argument
379 EC_GROUP_set_point_conversion_form(EC_GROUP *group, point_conversion_form_t form) argument
385 EC_GROUP_get_point_conversion_form(const EC_GROUP *group) argument
391 EC_GROUP_set_seed(EC_GROUP *group, const unsigned char *p, size_t len) argument
410 EC_GROUP_get0_seed(const EC_GROUP *group) argument
415 EC_GROUP_get_seed_len(const EC_GROUP *group) argument
420 EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
430 EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
441 EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
452 EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
464 EC_GROUP_get_degree(const EC_GROUP *group) argument
473 EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
702 EC_POINT_new(const EC_GROUP *group) argument
769 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
807 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
845 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
863 EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
881 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
899 EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
917 EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
932 EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
946 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
980 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
994 EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1008 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1021 EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1045 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
1056 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
1072 EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
1084 EC_GROUP_have_precompute_mult(const EC_GROUP *group) argument
1101 ec_precompute_mont_data(EC_GROUP *group) argument
[all...]
H A Dec2_mult.c84 static int gf2m_Mdouble(const EC_GROUP *group, BIGNUM *x, BIGNUM *z, argument
96 if (!group->meth->field_sqr(group, x, x, ctx))
98 if (!group->meth->field_sqr(group, t1, z, ctx))
100 if (!group->meth->field_mul(group, z, x, t1, ctx))
102 if (!group->meth->field_sqr(group, x, x, ctx))
104 if (!group
125 gf2m_Madd(const EC_GROUP *group, const BIGNUM *x, BIGNUM *x1, BIGNUM *z1, const BIGNUM *x2, const BIGNUM *z2, BN_CTX *ctx) argument
173 gf2m_Mxy(const EC_GROUP *group, const BIGNUM *x, const BIGNUM *y, BIGNUM *x1, BIGNUM *z1, BIGNUM *x2, BIGNUM *z2, BN_CTX *ctx) argument
263 ec_GF2m_montgomery_point_multiply(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, const EC_POINT *point, BN_CTX *ctx) argument
374 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
453 ec_GF2m_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
458 ec_GF2m_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;
132 void ec_GFp_mont_group_finish(EC_GROUP *group) argument
134 if (group->field_data1 != NULL) {
135 BN_MONT_CTX_free(group->field_data1);
136 group->field_data1 = NULL;
138 if (group->field_data2 != NULL) {
139 BN_free(group
145 ec_GFp_mont_group_clear_finish(EC_GROUP *group) argument
195 ec_GFp_mont_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
253 ec_GFp_mont_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
264 ec_GFp_mont_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
275 ec_GFp_mont_field_encode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
286 ec_GFp_mont_field_decode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
297 ec_GFp_mont_field_set_to_one(const EC_GROUP *group, BIGNUM *r, BN_CTX *ctx) argument
[all...]
H A Decp_smpl.c139 int ec_GFp_simple_group_init(EC_GROUP *group) argument
141 BN_init(&group->field);
142 BN_init(&group->a);
143 BN_init(&group->b);
144 group->a_is_minus3 = 0;
148 void ec_GFp_simple_group_finish(EC_GROUP *group) argument
150 BN_free(&group->field);
151 BN_free(&group->a);
152 BN_free(&group->b);
155 void ec_GFp_simple_group_clear_finish(EC_GROUP *group) argument
176 ec_GFp_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
236 ec_GFp_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
282 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
399 ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
407 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
468 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
518 ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
536 ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
651 ec_GFp_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
838 ec_GFp_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
981 ec_GFp_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
990 ec_GFp_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
995 ec_GFp_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1099 ec_GFp_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1209 ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1249 ec_GFp_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1408 ec_GFp_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
1414 ec_GFp_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
[all...]
H A Dec2_smpl.c139 int ec_GF2m_simple_group_init(EC_GROUP *group) argument
141 BN_init(&group->field);
142 BN_init(&group->a);
143 BN_init(&group->b);
151 void ec_GF2m_simple_group_finish(EC_GROUP *group) argument
153 BN_free(&group->field);
154 BN_free(&group->a);
155 BN_free(&group->b);
162 void ec_GF2m_simple_group_clear_finish(EC_GROUP *group) argument
164 BN_clear_free(&group
208 ec_GF2m_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
250 ec_GF2m_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
280 ec_GF2m_simple_group_get_degree(const EC_GROUP *group) argument
289 ec_GF2m_simple_group_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
376 ec_GF2m_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
388 ec_GF2m_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
420 ec_GF2m_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
458 ec_GF2m_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
574 ec_GF2m_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
580 ec_GF2m_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
592 ec_GF2m_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
603 ec_GF2m_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
671 ec_GF2m_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
719 ec_GF2m_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
764 ec_GF2m_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
778 ec_GF2m_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
785 ec_GF2m_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
792 ec_GF2m_simple_field_div(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/ec/
H A Dec_oct.c71 int EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, argument
75 if (group->meth->point_set_compressed_coordinates == 0
76 && !(group->meth->flags & EC_FLAGS_DEFAULT_OCT)) {
81 if (group->meth != point->meth) {
86 if (group->meth->flags & EC_FLAGS_DEFAULT_OCT) {
87 if (group->meth->field_type == NID_X9_62_prime_field)
88 return ec_GFp_simple_set_compressed_coordinates(group, point, x,
98 return ec_GF2m_simple_set_compressed_coordinates(group, point, x,
102 return group->meth->point_set_compressed_coordinates(group, poin
107 EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
135 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
166 EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
[all...]
H A Dec_lib.c118 void EC_GROUP_free(EC_GROUP *group) argument
120 if (!group)
123 if (group->meth->group_finish != 0)
124 group->meth->group_finish(group);
126 EC_EX_DATA_free_all_data(&group->extra_data);
128 if (EC_GROUP_VERSION(group) && group->mont_data)
129 BN_MONT_CTX_free(group->mont_data);
131 if (group
142 EC_GROUP_clear_free(EC_GROUP *group) argument
283 EC_GROUP_method_of(const EC_GROUP *group) argument
293 EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor) argument
331 EC_GROUP_get0_generator(const EC_GROUP *group) argument
336 EC_GROUP_get_mont_data(const EC_GROUP *group) argument
341 EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) argument
349 EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx) argument
358 EC_GROUP_set_curve_name(EC_GROUP *group, int nid) argument
363 EC_GROUP_get_curve_name(const EC_GROUP *group) argument
368 EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag) argument
374 EC_GROUP_get_asn1_flag(const EC_GROUP *group) argument
379 EC_GROUP_set_point_conversion_form(EC_GROUP *group, point_conversion_form_t form) argument
385 EC_GROUP_get_point_conversion_form(const EC_GROUP *group) argument
391 EC_GROUP_set_seed(EC_GROUP *group, const unsigned char *p, size_t len) argument
410 EC_GROUP_get0_seed(const EC_GROUP *group) argument
415 EC_GROUP_get_seed_len(const EC_GROUP *group) argument
420 EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
430 EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
441 EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
452 EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
464 EC_GROUP_get_degree(const EC_GROUP *group) argument
473 EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
702 EC_POINT_new(const EC_GROUP *group) argument
769 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
807 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
845 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
863 EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
881 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
899 EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
917 EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
932 EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
946 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
980 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
994 EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1008 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1021 EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1045 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
1056 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
1072 EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
1084 EC_GROUP_have_precompute_mult(const EC_GROUP *group) argument
1101 ec_precompute_mont_data(EC_GROUP *group) argument
[all...]
H A Dec2_mult.c84 static int gf2m_Mdouble(const EC_GROUP *group, BIGNUM *x, BIGNUM *z, argument
96 if (!group->meth->field_sqr(group, x, x, ctx))
98 if (!group->meth->field_sqr(group, t1, z, ctx))
100 if (!group->meth->field_mul(group, z, x, t1, ctx))
102 if (!group->meth->field_sqr(group, x, x, ctx))
104 if (!group
125 gf2m_Madd(const EC_GROUP *group, const BIGNUM *x, BIGNUM *x1, BIGNUM *z1, const BIGNUM *x2, const BIGNUM *z2, BN_CTX *ctx) argument
173 gf2m_Mxy(const EC_GROUP *group, const BIGNUM *x, const BIGNUM *y, BIGNUM *x1, BIGNUM *z1, BIGNUM *x2, BIGNUM *z2, BN_CTX *ctx) argument
263 ec_GF2m_montgomery_point_multiply(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, const EC_POINT *point, BN_CTX *ctx) argument
374 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
453 ec_GF2m_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
458 ec_GF2m_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;
132 void ec_GFp_mont_group_finish(EC_GROUP *group) argument
134 if (group->field_data1 != NULL) {
135 BN_MONT_CTX_free(group->field_data1);
136 group->field_data1 = NULL;
138 if (group->field_data2 != NULL) {
139 BN_free(group
145 ec_GFp_mont_group_clear_finish(EC_GROUP *group) argument
195 ec_GFp_mont_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
253 ec_GFp_mont_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
264 ec_GFp_mont_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
275 ec_GFp_mont_field_encode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
286 ec_GFp_mont_field_decode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
297 ec_GFp_mont_field_set_to_one(const EC_GROUP *group, BIGNUM *r, BN_CTX *ctx) argument
[all...]
H A Decp_smpl.c139 int ec_GFp_simple_group_init(EC_GROUP *group) argument
141 BN_init(&group->field);
142 BN_init(&group->a);
143 BN_init(&group->b);
144 group->a_is_minus3 = 0;
148 void ec_GFp_simple_group_finish(EC_GROUP *group) argument
150 BN_free(&group->field);
151 BN_free(&group->a);
152 BN_free(&group->b);
155 void ec_GFp_simple_group_clear_finish(EC_GROUP *group) argument
176 ec_GFp_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
236 ec_GFp_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
282 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
399 ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
407 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
468 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
518 ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
536 ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
651 ec_GFp_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
838 ec_GFp_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
981 ec_GFp_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
990 ec_GFp_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
995 ec_GFp_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1099 ec_GFp_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1209 ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1249 ec_GFp_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1408 ec_GFp_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
1414 ec_GFp_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
[all...]
H A Dec2_smpl.c139 int ec_GF2m_simple_group_init(EC_GROUP *group) argument
141 BN_init(&group->field);
142 BN_init(&group->a);
143 BN_init(&group->b);
151 void ec_GF2m_simple_group_finish(EC_GROUP *group) argument
153 BN_free(&group->field);
154 BN_free(&group->a);
155 BN_free(&group->b);
162 void ec_GF2m_simple_group_clear_finish(EC_GROUP *group) argument
164 BN_clear_free(&group
208 ec_GF2m_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
250 ec_GF2m_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
280 ec_GF2m_simple_group_get_degree(const EC_GROUP *group) argument
289 ec_GF2m_simple_group_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
376 ec_GF2m_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
388 ec_GF2m_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
420 ec_GF2m_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
458 ec_GF2m_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
574 ec_GF2m_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
580 ec_GF2m_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
592 ec_GF2m_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
603 ec_GF2m_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
671 ec_GF2m_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
719 ec_GF2m_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
764 ec_GF2m_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
778 ec_GF2m_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
785 ec_GF2m_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
792 ec_GF2m_simple_field_div(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/ec/
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_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
928 EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
945 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
962 EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
979 EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
995 EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
1011 EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx) argument
1027 EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
1043 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1059 EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1075 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1091 EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1118 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
1128 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
1142 EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
1154 EC_GROUP_have_precompute_mult(const EC_GROUP *group) argument
[all...]
H A Decp_mont.c115 int ec_GFp_mont_group_init(EC_GROUP *group) argument
119 ok = ec_GFp_simple_group_init(group);
120 group->field_data1 = NULL;
121 group->field_data2 = NULL;
126 void ec_GFp_mont_group_finish(EC_GROUP *group) argument
128 if (group->field_data1 != NULL)
130 BN_MONT_CTX_free(group->field_data1);
131 group->field_data1 = NULL;
133 if (group->field_data2 != NULL)
135 BN_free(group
142 ec_GFp_mont_group_clear_finish(EC_GROUP *group) argument
197 ec_GFp_mont_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
257 ec_GFp_mont_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
269 ec_GFp_mont_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
281 ec_GFp_mont_field_encode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
293 ec_GFp_mont_field_decode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
305 ec_GFp_mont_field_set_to_one(const EC_GROUP *group, BIGNUM *r, BN_CTX *ctx) argument
[all...]
H A Dec2_mult.c82 static int gf2m_Mdouble(const EC_GROUP *group, BIGNUM *x, BIGNUM *z, BN_CTX *ctx) argument
92 if (!group->meth->field_sqr(group, x, x, ctx)) goto err;
93 if (!group->meth->field_sqr(group, t1, z, ctx)) goto err;
94 if (!group->meth->field_mul(group, z, x, t1, ctx)) goto err;
95 if (!group->meth->field_sqr(group, x, x, ctx)) goto err;
96 if (!group
113 gf2m_Madd(const EC_GROUP *group, const BIGNUM *x, BIGNUM *x1, BIGNUM *z1, const BIGNUM *x2, const BIGNUM *z2, BN_CTX *ctx) argument
150 gf2m_Mxy(const EC_GROUP *group, const BIGNUM *x, const BIGNUM *y, BIGNUM *x1, BIGNUM *z1, BIGNUM *x2, BIGNUM *z2, BN_CTX *ctx) argument
215 ec_GF2m_montgomery_point_multiply(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, const EC_POINT *point, BN_CTX *ctx) argument
314 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
372 ec_GF2m_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
377 ec_GF2m_have_precompute_mult(const EC_GROUP *group) argument
[all...]
H A Dec2_smpt.c69 int ec_GF2m_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, argument
99 if (!BN_GF2m_mod_arr(x, x_, group->poly)) goto err;
102 if (!BN_GF2m_mod_sqrt_arr(y, &group->b, group->poly, ctx)) goto err;
106 if (!group->meth->field_sqr(group, tmp, x, ctx)) goto err;
107 if (!group->meth->field_div(group, tmp, &group->b, tmp, ctx)) goto err;
108 if (!BN_GF2m_add(tmp, &group
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/kernel/
H A Dhvapi.c18 unsigned long group; member in struct:api_info
27 { .group = HV_GRP_SUN4V, .flags = FLAG_PRE_API },
28 { .group = HV_GRP_CORE, .flags = FLAG_PRE_API },
29 { .group = HV_GRP_INTR, },
30 { .group = HV_GRP_SOFT_STATE, },
31 { .group = HV_GRP_PCI, .flags = FLAG_PRE_API },
32 { .group = HV_GRP_LDOM, },
33 { .group = HV_GRP_SVC_CHAN, .flags = FLAG_PRE_API },
34 { .group = HV_GRP_NCS, .flags = FLAG_PRE_API },
35 { .group
46 __get_info(unsigned long group) argument
83 sun4v_hvapi_register(unsigned long group, unsigned long major, unsigned long *minor) argument
134 sun4v_hvapi_unregister(unsigned long group) argument
147 sun4v_hvapi_get(unsigned long group, unsigned long *major, unsigned long *minor) argument
171 unsigned long group, major, minor; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/dist/
H A Ds_javadoc_merge11 return '%s%s' % (m.group('field_name'), paramre.sub('\g<param_type>\g<comma>', m.group('params') or ''))
16 javadoc[m.group('class_name')] = m.group('javadoc')
18 javadoc[fieldsig(m)] = m.group('javadoc')
23 #print "Looking up", m.group('class_name')
24 return '%s%s%s%s %s' % (javadoc.get(m.group('class_name'), '/** TODO */\n'), m.group('mods'), (m.group('class_type') or ''), m.group('class_nam
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/include/
H A Dgrp_.h33 /* The group structure. */
34 struct group { struct
43 /* Set the group set for the current user to GROUPS (N of them). */
68 /* Rewind the group-file stream. */
71 /* Close the group-file stream. */
74 /* Read an entry from the group-file stream, opening it if necessary. */
75 extern struct group *getgrent(void);
77 /* Read a group entry from STREAM. */
78 extern struct group *fgetgrent(FILE *__stream);
81 extern int putgrent(__const struct group *__restric
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/infiniband/core/
H A Dmulticast.c117 struct mcast_group *group; member in struct:mcast_member
133 struct mcast_group *group; local
137 group = rb_entry(node, struct mcast_group, node);
138 ret = memcmp(mgid->raw, group->rec.mgid.raw, sizeof *mgid);
140 return group;
151 struct mcast_group *group,
163 ret = memcmp(group->rec.mgid.raw, cur_group->rec.mgid.raw,
164 sizeof group->rec.mgid);
174 rb_link_node(&group->node, parent, link);
175 rb_insert_color(&group
150 mcast_insert(struct mcast_port *port, struct mcast_group *group, int allow_duplicates) argument
185 release_group(struct mcast_group *group) argument
208 struct mcast_group *group = member->group; local
227 adjust_membership(struct mcast_group *group, u8 join_state, int inc) argument
242 get_leave_state(struct mcast_group *group) argument
329 send_join(struct mcast_group *group, struct mcast_member *member) argument
348 send_leave(struct mcast_group *group, u8 leave_state) argument
372 join_group(struct mcast_group *group, struct mcast_member *member, u8 join_state) argument
383 fail_join(struct mcast_group *group, struct mcast_member *member, int status) argument
392 process_group_error(struct mcast_group *group) argument
433 struct mcast_group *group; local
498 process_join_error(struct mcast_group *group, int status) argument
521 struct mcast_group *group = context; local
547 struct mcast_group *group = context; local
559 struct mcast_group *group, *cur_group; local
664 struct mcast_group *group; local
697 struct mcast_group *group; local
751 struct mcast_group *group; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/LDAP/smbldap-tools-0.9.2/
H A Dsmbldap-groupshow42 print "Usage: $0 [-?] group\n";
48 my $group = $ARGV[0];
52 my $lines = read_group($group);
54 print "group $group doesn't exist\n";
69 smbldap-groupshow - Display group informations
77 The smbldap-groupshow command displays informations associated with the given group.
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/libcryptoxx-5.6.0/
H A Deprecomp.cpp12 template <class T> void DL_FixedBasePrecomputationImpl<T>::SetBase(const DL_GroupPrecomputation<Element> &group, const Element &i_base) argument
14 m_base = group.NeedConversions() ? group.ConvertIn(i_base) : i_base;
22 if (group.NeedConversions())
26 template <class T> void DL_FixedBasePrecomputationImpl<T>::Precompute(const DL_GroupPrecomputation<Element> &group, unsigned int maxExpBits, unsigned int storage) argument
39 m_bases[i] = group.GetGroup().ScalarMultiply(m_bases[i-1], m_exponentBase);
42 template <class T> void DL_FixedBasePrecomputationImpl<T>::Load(const DL_GroupPrecomputation<Element> &group, BufferedTransformation &bt) argument
51 m_bases.push_back(group.BERDecodeElement(seq));
52 if (!m_bases.empty() && group.NeedConversions())
53 m_base = group
57 Save(const DL_GroupPrecomputation<Element> &group, BufferedTransformation &bt) const argument
69 const AbstractGroup<T> &group = i_group.GetGroup(); local
90 Exponentiate(const DL_GroupPrecomputation<Element> &group, const Integer &exponent) const argument
99 CascadeExponentiate(const DL_GroupPrecomputation<Element> &group, const Integer &exponent, const DL_FixedBasePrecomputation<T> &i_pc2, const Integer &exponent2) const argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/notify/fanotify/
H A Dfanotify_user.c35 * Called with the group->notification_mutex held.
37 static struct fsnotify_event *get_one_event(struct fsnotify_group *group, argument
40 BUG_ON(!mutex_is_locked(&group->notification_mutex));
42 pr_debug("%s: group=%p count=%zd\n", __func__, group, count);
44 if (fsnotify_notify_queue_is_empty(group))
52 return fsnotify_remove_notify_event(group);
55 static int create_fd(struct fsnotify_group *group, struct fsnotify_event *event) argument
62 pr_debug("%s: group=%p event=%p\n", __func__, group, even
105 fill_event_metadata(struct fsnotify_group *group, struct fanotify_event_metadata *metadata, struct fsnotify_event *event) argument
122 dequeue_re(struct fsnotify_group *group, __s32 fd) argument
143 process_access_response(struct fsnotify_group *group, struct fanotify_response *response_struct) argument
181 prepare_for_access_response(struct fsnotify_group *group, struct fsnotify_event *event, __s32 fd) argument
212 remove_access_response(struct fsnotify_group *group, struct fsnotify_event *event, __s32 fd) argument
232 prepare_for_access_response(struct fsnotify_group *group, struct fsnotify_event *event, __s32 fd) argument
239 remove_access_response(struct fsnotify_group *group, struct fsnotify_event *event, __s32 fd) argument
247 copy_event_to_user(struct fsnotify_group *group, struct fsnotify_event *event, char __user *buf) argument
280 struct fsnotify_group *group = file->private_data; local
295 struct fsnotify_group *group; local
349 struct fsnotify_group *group; local
374 struct fsnotify_group *group = file->private_data; local
405 struct fsnotify_group *group; local
513 fanotify_remove_vfsmount_mark(struct fsnotify_group *group, struct vfsmount *mnt, __u32 mask, unsigned int flags) argument
532 fanotify_remove_inode_mark(struct fsnotify_group *group, struct inode *inode, __u32 mask, unsigned int flags) argument
573 fanotify_add_vfsmount_mark(struct fsnotify_group *group, struct vfsmount *mnt, __u32 mask, unsigned int flags) argument
603 fanotify_add_inode_mark(struct fsnotify_group *group, struct inode *inode, __u32 mask, unsigned int flags) argument
637 struct fsnotify_group *group; local
684 struct fsnotify_group *group; local
[all...]

Completed in 150 milliseconds

1234567891011>>