Lines Matching full:form
26 * 2. Redistributions in binary form must reproduce the above copyright
45 * 6. Redistributions of any form whatsoever must retain the following
422 size_t ec_GF2m_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form,
432 if ((form == POINT_CONVERSION_COMPRESSED) || (form == POINT_CONVERSION_HYBRID))
439 if ((form != POINT_CONVERSION_COMPRESSED)
440 && (form != POINT_CONVERSION_UNCOMPRESSED)
441 && (form != POINT_CONVERSION_HYBRID))
465 ret = (form == POINT_CONVERSION_COMPRESSED) ? 1 + field_len : 1 + 2*field_len;
492 buf[0] = form;
494 if ((form != POINT_CONVERSION_UNCOMPRESSED) && !BN_is_zero(x))
522 if (form == POINT_CONVERSION_UNCOMPRESSED || form == POINT_CONVERSION_HYBRID)
567 point_conversion_form_t form;
579 form = buf[0];
580 y_bit = form & 1;
581 form = form & ~1U;
582 if ((form != 0) && (form != POINT_CONVERSION_COMPRESSED)
583 && (form != POINT_CONVERSION_UNCOMPRESSED)
584 && (form != POINT_CONVERSION_HYBRID))
589 if ((form == 0 || form == POINT_CONVERSION_UNCOMPRESSED) && y_bit)
595 if (form == 0)
607 enc_len = (form == POINT_CONVERSION_COMPRESSED) ? 1 + field_len : 1 + 2*field_len;
635 if (form == POINT_CONVERSION_COMPRESSED)
647 if (form == POINT_CONVERSION_HYBRID)