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

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dchown.c8 int chown(const char* path, uid_t owner, gid_t group) { argument
9 return ki_chown(path, owner, group);
H A Dfchown.c8 int fchown(int fd, uid_t owner, gid_t group) { argument
9 return ki_fchown(fd, owner, group);
H A Dlchown.c8 int lchown(const char* path, uid_t owner, gid_t group) { argument
9 return ki_lchown(path, owner, group);
/external/chromium_org/third_party/openssl/openssl/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 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 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
217 ec_GF2m_montgomery_point_multiply(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, const EC_POINT *point, BN_CTX *ctx) argument
317 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
380 ec_GF2m_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
385 ec_GF2m_have_precompute_mult(const EC_GROUP *group) 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
1351 ec_GFp_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
1357 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...]
/external/openssl/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 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 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
217 ec_GF2m_montgomery_point_multiply(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, const EC_POINT *point, BN_CTX *ctx) argument
317 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
380 ec_GF2m_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
385 ec_GF2m_have_precompute_mult(const EC_GROUP *group) 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
1351 ec_GFp_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
1357 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...]
/external/chromium_org/webkit/browser/appcache/
H A Dappcache_group_unittest.cc71 virtual void OnUpdateComplete(AppCacheGroup* group) OVERRIDE {
73 group_has_cache_ = group->HasCache();
76 virtual void OnContentBlocked(AppCacheGroup* group) { argument
91 virtual void OnUpdateComplete(AppCacheGroup* group) OVERRIDE {
105 scoped_refptr<AppCacheGroup> group(
113 group->AddCache(cache1.get());
114 EXPECT_EQ(cache1, group->newest_complete_cache());
120 group->AddCache(cache2.get());
121 EXPECT_EQ(cache1, group->newest_complete_cache());
127 group
176 AppCacheGroup* group = local
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DPreferenceGroupTest.java27 private TestPreferenceGroup group; field in class:PreferenceGroupTest
38 group = new TestPreferenceGroup(context, attrs);
39 shadow = Robolectric.shadowOf(group);
55 assertThat( group.getPreferenceCount(), equalTo(0));
58 assertThat( group.addPreference(pref1), equalTo(true));
59 assertThat( group.getPreferenceCount(), equalTo(1));
62 assertThat( group.addPreference(pref1), equalTo(true));
63 assertThat( group.getPreferenceCount(), equalTo(1));
66 assertThat( group.addPreference(pref2), equalTo(true));
67 assertThat( group
[all...]
/external/e2fsprogs/include/nonunix/
H A Dgrp.h6 __inline struct group * getgrnam(char* g){return 0;}
8 struct group struct
/external/chromium_org/tools/grit/grit/gather/
H A Dregexp.py65 for group in keys:
66 if group.startswith('id') and groups[group]:
67 self._AddTextualId(groups[group])
68 elif group.startswith('text') and groups[group]:
70 text_to_parse[chunk_start : match.start(group)])
71 chunk_start = match.end(group) # Next chunk will start after the match
72 self._AddTranslateableChunk(groups[group])
73 elif group
[all...]
/external/chromium-trace/trace-viewer/src/tracing/tracks/
H A Dslice_group_track_test.js17 var group = new SliceGroup();
18 var sA = group.pushSlice(newSliceNamed('a', 1, 2));
19 var sB = group.pushSlice(newSliceNamed('a', 3, 1));
22 track.group = group;
32 var group = new SliceGroup();
33 var sA = group.pushSlice(newSliceNamed('a', 1, 4));
34 var sB = group.pushSlice(newSliceNamed('b', 3, 1));
37 track.group = group;
[all...]
/external/chromium_org/net/quic/
H A Dquic_fec_group_test.cc62 QuicFecGroup group; local
70 ASSERT_FALSE(group.IsFinished());
74 ASSERT_TRUE(group.UpdateFec(num_packets, entropy_redundancy, fec));
79 ASSERT_TRUE(group.Update(header, kData[packet]));
81 ASSERT_TRUE(group.CanRevive() == (packet == num_packets - 1));
93 ASSERT_TRUE(group.Update(header, kData[packet]));
94 ASSERT_FALSE(group.CanRevive());
97 ASSERT_FALSE(group.IsFinished());
103 ASSERT_TRUE(group.UpdateFec(num_packets, entropy_redundancy, fec));
107 ASSERT_TRUE(group
149 QuicFecGroup group; local
167 QuicFecGroup group; local
182 QuicFecGroup group; local
208 QuicFecGroup group; local
[all...]
/external/wpa_supplicant_8/hostapd/src/p2p/
H A Dp2p_group.c2 * Wi-Fi Direct - P2P group operations
31 * struct p2p_group - Internal P2P module per-group data
48 struct p2p_group *group, **groups; local
50 group = os_zalloc(sizeof(*group));
51 if (group == NULL)
57 os_free(group);
60 groups[p2p->num_groups++] = group;
63 group->p2p = p2p;
64 group
83 p2p_group_free_members(struct p2p_group *group) argument
97 p2p_group_deinit(struct p2p_group *group) argument
136 p2p_group_add_common_ies(struct p2p_group *group, struct wpabuf *ie) argument
205 p2p_group_build_beacon_ie(struct p2p_group *group) argument
342 wifi_display_build_go_ie(struct p2p_group *group) argument
391 wifi_display_group_update(struct p2p_group *group) argument
400 p2p_group_build_probe_resp_ie(struct p2p_group *group) argument
442 p2p_group_update_ies(struct p2p_group *group) argument
532 p2p_group_remove_member(struct p2p_group *group, const u8 *addr) argument
562 p2p_group_notif_assoc(struct p2p_group *group, const u8 *addr, const u8 *ie, size_t len) argument
606 p2p_group_assoc_resp_ie(struct p2p_group *group, u8 status) argument
641 p2p_group_notif_disassoc(struct p2p_group *group, const u8 *addr) argument
710 p2p_group_match_dev_type(struct p2p_group *group, struct wpabuf *wps) argument
727 p2p_group_match_dev_id(struct p2p_group *group, struct wpabuf *p2p) argument
752 p2p_group_notif_formation_done(struct p2p_group *group) argument
762 p2p_group_notif_noa(struct p2p_group *group, const u8 *noa, size_t noa_len) argument
792 p2p_group_get_client(struct p2p_group *group, const u8 *dev_id) argument
806 p2p_group_get_client_iface( struct p2p_group *group, const u8 *interface_addr) argument
820 p2p_group_get_dev_addr(struct p2p_group *group, const u8 *addr) argument
847 p2p_group_go_discover(struct p2p_group *group, const u8 *dev_id, const u8 *searching_dev, int rx_freq) argument
892 p2p_group_get_interface_addr(struct p2p_group *group) argument
898 p2p_group_presence_req(struct p2p_group *group, const u8 *client_interface_addr, const u8 *noa, size_t noa_len) argument
936 p2p_get_group_num_members(struct p2p_group *group) argument
942 p2p_iterate_group_members(struct p2p_group *group, void **next) argument
960 p2p_group_is_client_connected(struct p2p_group *group, const u8 *dev_addr) argument
973 p2p_group_is_group_id_match(struct p2p_group *group, const u8 *group_id, size_t group_id_len) argument
[all...]
/external/wpa_supplicant_8/src/p2p/
H A Dp2p_group.c2 * Wi-Fi Direct - P2P group operations
31 * struct p2p_group - Internal P2P module per-group data
48 struct p2p_group *group, **groups; local
50 group = os_zalloc(sizeof(*group));
51 if (group == NULL)
57 os_free(group);
60 groups[p2p->num_groups++] = group;
63 group->p2p = p2p;
64 group
83 p2p_group_free_members(struct p2p_group *group) argument
97 p2p_group_deinit(struct p2p_group *group) argument
136 p2p_group_add_common_ies(struct p2p_group *group, struct wpabuf *ie) argument
205 p2p_group_build_beacon_ie(struct p2p_group *group) argument
342 wifi_display_build_go_ie(struct p2p_group *group) argument
391 wifi_display_group_update(struct p2p_group *group) argument
400 p2p_group_build_probe_resp_ie(struct p2p_group *group) argument
442 p2p_group_update_ies(struct p2p_group *group) argument
532 p2p_group_remove_member(struct p2p_group *group, const u8 *addr) argument
562 p2p_group_notif_assoc(struct p2p_group *group, const u8 *addr, const u8 *ie, size_t len) argument
606 p2p_group_assoc_resp_ie(struct p2p_group *group, u8 status) argument
641 p2p_group_notif_disassoc(struct p2p_group *group, const u8 *addr) argument
710 p2p_group_match_dev_type(struct p2p_group *group, struct wpabuf *wps) argument
727 p2p_group_match_dev_id(struct p2p_group *group, struct wpabuf *p2p) argument
752 p2p_group_notif_formation_done(struct p2p_group *group) argument
762 p2p_group_notif_noa(struct p2p_group *group, const u8 *noa, size_t noa_len) argument
792 p2p_group_get_client(struct p2p_group *group, const u8 *dev_id) argument
806 p2p_group_get_client_iface( struct p2p_group *group, const u8 *interface_addr) argument
820 p2p_group_get_dev_addr(struct p2p_group *group, const u8 *addr) argument
847 p2p_group_go_discover(struct p2p_group *group, const u8 *dev_id, const u8 *searching_dev, int rx_freq) argument
892 p2p_group_get_interface_addr(struct p2p_group *group) argument
898 p2p_group_presence_req(struct p2p_group *group, const u8 *client_interface_addr, const u8 *noa, size_t noa_len) argument
936 p2p_get_group_num_members(struct p2p_group *group) argument
942 p2p_iterate_group_members(struct p2p_group *group, void **next) argument
960 p2p_group_is_client_connected(struct p2p_group *group, const u8 *dev_addr) argument
973 p2p_group_is_group_id_match(struct p2p_group *group, const u8 *group_id, size_t group_id_len) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/p2p/
H A Dp2p_group.c2 * Wi-Fi Direct - P2P group operations
31 * struct p2p_group - Internal P2P module per-group data
48 struct p2p_group *group, **groups; local
50 group = os_zalloc(sizeof(*group));
51 if (group == NULL)
57 os_free(group);
60 groups[p2p->num_groups++] = group;
63 group->p2p = p2p;
64 group
83 p2p_group_free_members(struct p2p_group *group) argument
97 p2p_group_deinit(struct p2p_group *group) argument
136 p2p_group_add_common_ies(struct p2p_group *group, struct wpabuf *ie) argument
205 p2p_group_build_beacon_ie(struct p2p_group *group) argument
342 wifi_display_build_go_ie(struct p2p_group *group) argument
391 wifi_display_group_update(struct p2p_group *group) argument
400 p2p_group_build_probe_resp_ie(struct p2p_group *group) argument
442 p2p_group_update_ies(struct p2p_group *group) argument
532 p2p_group_remove_member(struct p2p_group *group, const u8 *addr) argument
562 p2p_group_notif_assoc(struct p2p_group *group, const u8 *addr, const u8 *ie, size_t len) argument
606 p2p_group_assoc_resp_ie(struct p2p_group *group, u8 status) argument
641 p2p_group_notif_disassoc(struct p2p_group *group, const u8 *addr) argument
710 p2p_group_match_dev_type(struct p2p_group *group, struct wpabuf *wps) argument
727 p2p_group_match_dev_id(struct p2p_group *group, struct wpabuf *p2p) argument
752 p2p_group_notif_formation_done(struct p2p_group *group) argument
762 p2p_group_notif_noa(struct p2p_group *group, const u8 *noa, size_t noa_len) argument
792 p2p_group_get_client(struct p2p_group *group, const u8 *dev_id) argument
806 p2p_group_get_client_iface( struct p2p_group *group, const u8 *interface_addr) argument
820 p2p_group_get_dev_addr(struct p2p_group *group, const u8 *addr) argument
847 p2p_group_go_discover(struct p2p_group *group, const u8 *dev_id, const u8 *searching_dev, int rx_freq) argument
892 p2p_group_get_interface_addr(struct p2p_group *group) argument
898 p2p_group_presence_req(struct p2p_group *group, const u8 *client_interface_addr, const u8 *noa, size_t noa_len) argument
936 p2p_get_group_num_members(struct p2p_group *group) argument
942 p2p_iterate_group_members(struct p2p_group *group, void **next) argument
960 p2p_group_is_client_connected(struct p2p_group *group, const u8 *dev_addr) argument
973 p2p_group_is_group_id_match(struct p2p_group *group, const u8 *group_id, size_t group_id_len) argument
[all...]
/external/chromium_org/build/android/pylib/utils/
H A Dreraiser_thread_unittest.py51 group = reraiser_thread.ReraiserThreadGroup(
53 group.StartAll()
54 group.JoinAll()
63 group = reraiser_thread.ReraiserThreadGroup()
65 group.Add(reraiser_thread.ReraiserThread(f, args=[i]))
66 group.StartAll()
67 group.JoinAll()
74 group = reraiser_thread.ReraiserThreadGroup(
76 group.StartAll()
78 group
[all...]

Completed in 572 milliseconds

1234567891011>>