Searched refs:out_y (Results 1 - 2 of 2) sorted by relevance

/system/core/include/mincrypt/
H A Dp256.h124 // {out_x,out_y} := nG
127 p256_int *out_y);
129 // {out_x,out_y} := n{in_x,in_y}
134 p256_int *out_y);
136 // {out_x,out_y} := n1G + n2{in_x,in_y}
140 p256_int *out_x, p256_int *out_y);
/system/core/libmincrypt/
H A Dp256_ec.c986 /* select_affine_point sets {out_x,out_y} to the index'th entry of table.
988 static void select_affine_point(felem out_x, felem out_y, const limb* table, argument
993 memset(out_y, 0, sizeof(felem));
1005 out_y[j] |= *table & mask;
1010 /* select_jacobian_point sets {out_x,out_y,out_z} to the index'th entry of
1012 static void select_jacobian_point(felem out_x, felem out_y, felem out_z, argument
1017 memset(out_y, 0, sizeof(felem));
1035 out_y[j] |= *table & mask;
1223 /* p256_base_point_mul sets {out_x,out_y} = nG, where n is < the
1225 void p256_base_point_mul(const p256_int* n, p256_int* out_x, p256_int* out_y) { argument
1245 p256_points_mul_vartime( const p256_int* n1, const p256_int* n2, const p256_int* in_x, const p256_int* in_y, p256_int* out_x, p256_int* out_y) argument
[all...]

Completed in 144 milliseconds