Home | History | Annotate | Download | only in ec

Lines Matching refs:meth

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)
101 return group->meth->point_set_compressed_coordinates(group, point, x, y_bit, ctx);
108 if (group->meth->point_set_compressed_coordinates == 0
109 && !(group->meth->flags & EC_FLAGS_DEFAULT_OCT))
114 if (group->meth != point->meth)
119 if(group->meth->flags & EC_FLAGS_DEFAULT_OCT)
121 if (group->meth->field_type == NID_X9_62_prime_field)
128 return group->meth->point_set_compressed_coordinates(group, point, x, y_bit, ctx);
135 if (group->meth->point2oct == 0
136 && !(group->meth->flags & EC_FLAGS_DEFAULT_OCT))
141 if (group->meth != point->meth)
146 if(group->meth->flags & EC_FLAGS_DEFAULT_OCT)
148 if (group->meth->field_type == NID_X9_62_prime_field)
163 return group->meth->point2oct(group, point, form, buf, len, ctx);
170 if (group->meth->oct2point == 0
171 && !(group->meth->flags & EC_FLAGS_DEFAULT_OCT))
176 if (group->meth != point->meth)
181 if(group->meth->flags & EC_FLAGS_DEFAULT_OCT)
183 if (group->meth->field_type == NID_X9_62_prime_field)
197 return group->meth->oct2point(group, point, buf, len, ctx);