HomeSort by relevance Sort by last modified time
    Searched refs:y_bit (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/openssl/openssl/crypto/ec/
ec_oct.c 72 const BIGNUM *x, int y_bit, BN_CTX *ctx)
89 group, point, x, y_bit, ctx);
98 group, point, x, y_bit, ctx);
101 return group->meth->point_set_compressed_coordinates(group, point, x, y_bit, ctx);
106 const BIGNUM *x, int y_bit, BN_CTX *ctx)
123 group, point, x, y_bit, ctx);
126 group, point, x, y_bit, ctx);
128 return group->meth->point_set_compressed_coordinates(group, point, x, y_bit, ctx);
ec2_oct.c 92 const BIGNUM *x_, int y_bit, BN_CTX *ctx)
108 y_bit = (y_bit != 0) ? 1 : 0;
143 if (z0 != y_bit)
301 int y_bit; local
313 y_bit = form & 1;
322 if ((form == 0 || form == POINT_CONVERSION_UNCOMPRESSED) && y_bit)
370 if (!EC_POINT_set_compressed_coordinates_GF2m(group, point, x, y_bit, ctx)) goto err;
383 if (y_bit != BN_is_odd(yxi))
ecp_oct.c 71 const BIGNUM *x_, int y_bit, BN_CTX *ctx)
87 y_bit = (y_bit != 0);
163 if (y_bit != BN_is_odd(y))
181 if (y_bit != BN_is_odd(y))
329 int y_bit; local
341 y_bit = form & 1;
350 if ((form == 0 || form == POINT_CONVERSION_UNCOMPRESSED) && y_bit)
397 if (!EC_POINT_set_compressed_coordinates_GFp(group, point, x, y_bit, ctx)) goto err;
409 if (y_bit != BN_is_odd(y)
    [all...]
ec_lcl.h 137 const BIGNUM *x, int y_bit, BN_CTX *);
321 const BIGNUM *x, int y_bit, BN_CTX *);
377 const BIGNUM *x, int y_bit, BN_CTX *);
ec.h 498 * \param y_bit integer with the y-Bit (either 0 or 1)
503 const BIGNUM *x, int y_bit, BN_CTX *ctx);
531 * \param y_bit integer with the y-Bit (either 0 or 1)
536 const BIGNUM *x, int y_bit, BN_CTX *ctx);
    [all...]
  /external/openssl/crypto/ec/
ec_oct.c 72 const BIGNUM *x, int y_bit, BN_CTX *ctx)
89 group, point, x, y_bit, ctx);
98 group, point, x, y_bit, ctx);
101 return group->meth->point_set_compressed_coordinates(group, point, x, y_bit, ctx);
106 const BIGNUM *x, int y_bit, BN_CTX *ctx)
123 group, point, x, y_bit, ctx);
126 group, point, x, y_bit, ctx);
128 return group->meth->point_set_compressed_coordinates(group, point, x, y_bit, ctx);
ec2_oct.c 92 const BIGNUM *x_, int y_bit, BN_CTX *ctx)
108 y_bit = (y_bit != 0) ? 1 : 0;
143 if (z0 != y_bit)
301 int y_bit; local
313 y_bit = form & 1;
322 if ((form == 0 || form == POINT_CONVERSION_UNCOMPRESSED) && y_bit)
370 if (!EC_POINT_set_compressed_coordinates_GF2m(group, point, x, y_bit, ctx)) goto err;
383 if (y_bit != BN_is_odd(yxi))
ecp_oct.c 71 const BIGNUM *x_, int y_bit, BN_CTX *ctx)
87 y_bit = (y_bit != 0);
163 if (y_bit != BN_is_odd(y))
181 if (y_bit != BN_is_odd(y))
329 int y_bit; local
341 y_bit = form & 1;
350 if ((form == 0 || form == POINT_CONVERSION_UNCOMPRESSED) && y_bit)
397 if (!EC_POINT_set_compressed_coordinates_GFp(group, point, x, y_bit, ctx)) goto err;
409 if (y_bit != BN_is_odd(y)
    [all...]
ec_lcl.h 137 const BIGNUM *x, int y_bit, BN_CTX *);
322 const BIGNUM *x, int y_bit, BN_CTX *);
378 const BIGNUM *x, int y_bit, BN_CTX *);
ec.h 498 * \param y_bit integer with the y-Bit (either 0 or 1)
503 const BIGNUM *x, int y_bit, BN_CTX *ctx);
531 * \param y_bit integer with the y-Bit (either 0 or 1)
536 const BIGNUM *x, int y_bit, BN_CTX *ctx);
    [all...]
  /external/wpa_supplicant_8/src/crypto/
crypto.h 753 * @y_bit: y-bit (0 or 1) for selecting the y value to use
758 const struct crypto_bignum *x, int y_bit);
crypto_openssl.c 1204 const struct crypto_bignum *x, int y_bit)
1207 (const BIGNUM *) x, y_bit,
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
ec.h 498 * \param y_bit integer with the y-Bit (either 0 or 1)
503 const BIGNUM *x, int y_bit, BN_CTX *ctx);
531 * \param y_bit integer with the y-Bit (either 0 or 1)
536 const BIGNUM *x, int y_bit, BN_CTX *ctx);
    [all...]
  /external/openssl/include/openssl/
ec.h 498 * \param y_bit integer with the y-Bit (either 0 or 1)
503 const BIGNUM *x, int y_bit, BN_CTX *ctx);
531 * \param y_bit integer with the y-Bit (either 0 or 1)
536 const BIGNUM *x, int y_bit, BN_CTX *ctx);
    [all...]
  /external/wpa_supplicant_8/src/common/
sae.c 178 int y_bit; local
199 y_bit = pwd_seed[SHA256_MAC_LEN - 1] & 0x01;
204 if (crypto_ec_point_solve_y_coord(sae->tmp->ec, pwe, x, y_bit) < 0) {
  /external/chromium_org/skia/ext/
image_operations_unittest.cc 170 bool y_bit = (((y / rect_h) & 0x1) == 0); local
175 bool use_color2 = (x_bit != y_bit); // xor
  /external/chromium_org/content/common/gpu/client/
gl_helper_unittest.cc 876 bool y_bit = (((y / rect_h) & 0x1) == 0); local
881 bool use_color2 = (x_bit != y_bit); // xor
    [all...]

Completed in 394 milliseconds