Home
last modified time | relevance | path

Searched refs:qy (Results 1 – 25 of 52) sorted by relevance

123

/external/boringssl/src/util/fipstools/acvp/acvptool/test/vectors/
DECDSA.bz2 ... [ 22 { 23 "qx": "6E6BB008B12F1CA7FB23DE28272BA00FD021456EDF6EB59F95851E49", 24 "qy": "0128B292A5E7020554F74053EFF9BF4361551133F4528E35912A82B9D9", 25 "tcId": 3 26 }
/external/libvpx/libvpx/tools/3D-Reconstruction/sketch_3D_reconstruction/
DTransform.pde7 Transform(float tx, float ty, float tz, float qx, float qy, float qz,
11 float[] rot = quaternion2Mat3x3(qx, qy, qz, qw);
47 float[] quaternion2Mat3x3(float qx, float qy, float qz, float qw) {
49 mat[0] = 1 - 2 * qy * qy - 2 * qz * qz;
50 mat[1] = 2 * qx * qy - 2 * qz * qw;
51 mat[2] = 2 * qx * qz + 2 * qy * qw;
52 mat[3] = 2 * qx * qy + 2 * qz * qw;
54 mat[5] = 2 * qy * qz - 2 * qx * qw;
55 mat[6] = 2 * qx * qz - 2 * qy * qw;
56 mat[7] = 2 * qy * qz + 2 * qx * qw;
[all …]
Dsketch_3D_reconstruction.pde27 float qx = float(info[10]), qy = float(info[11]), qz = float(info[12]),
32 new Transform(tx, ty, tz, qx, qy, qz, qw, fov, width, height, normalizer);
/external/boringssl/src/util/fipstools/cavp/
Dcavp_ecdsa2_pkv_test.cc37 bssl::UniquePtr<BIGNUM> qy = GetBIGNUM(t, "Qy"); in TestECDSA2PKV() local
38 if (!key || !qx || !qy) { in TestECDSA2PKV()
42 if (EC_KEY_set_public_key_affine_coordinates(key.get(), qx.get(), qy.get())) { in TestECDSA2PKV()
Dcavp_ecdsa2_siggen_test.cc41 bssl::UniquePtr<BIGNUM> qx(BN_new()), qy(BN_new()); in TestECDSA2SigGenImpl() local
44 if (!qx || !qy || !key || in TestECDSA2SigGenImpl()
48 qx.get(), qy.get(), nullptr) || in TestECDSA2SigGenImpl()
79 !BN_bn2bin_padded(qy_bytes.data(), qy_bytes.size(), qy.get()) || in TestECDSA2SigGenImpl()
Dcavp_ecdsa2_sigver_test.cc41 bssl::UniquePtr<BIGNUM> qy = GetBIGNUM(t, "Qy"); in TestECDSA2SigVer() local
47 if (!sig || !key || !qx || !qy || !r || !s || in TestECDSA2SigVer()
49 qy.get()) || in TestECDSA2SigVer()
Dcavp_ecdsa2_keypair_test.cc49 bssl::UniquePtr<BIGNUM> qx(BN_new()), qy(BN_new()); in TestECDSA2KeyPair() local
55 qx.get(), qy.get(), nullptr)) { in TestECDSA2KeyPair()
66 !BN_bn2bin_padded(qy_bytes.data(), qy_bytes.size(), qy.get()) || in TestECDSA2KeyPair()
/external/rust/crates/quiche/deps/boringssl/src/util/fipstools/cavp/
Dcavp_ecdsa2_pkv_test.cc37 bssl::UniquePtr<BIGNUM> qy = GetBIGNUM(t, "Qy"); in TestECDSA2PKV() local
38 if (!key || !qx || !qy) { in TestECDSA2PKV()
42 if (EC_KEY_set_public_key_affine_coordinates(key.get(), qx.get(), qy.get())) { in TestECDSA2PKV()
Dcavp_ecdsa2_siggen_test.cc41 bssl::UniquePtr<BIGNUM> qx(BN_new()), qy(BN_new()); in TestECDSA2SigGenImpl() local
44 if (!qx || !qy || !key || in TestECDSA2SigGenImpl()
48 qx.get(), qy.get(), nullptr) || in TestECDSA2SigGenImpl()
79 !BN_bn2bin_padded(qy_bytes.data(), qy_bytes.size(), qy.get()) || in TestECDSA2SigGenImpl()
Dcavp_ecdsa2_keypair_test.cc49 bssl::UniquePtr<BIGNUM> qx(BN_new()), qy(BN_new()); in TestECDSA2KeyPair() local
55 qx.get(), qy.get(), nullptr)) { in TestECDSA2KeyPair()
66 !BN_bn2bin_padded(qy_bytes.data(), qy_bytes.size(), qy.get()) || in TestECDSA2KeyPair()
Dcavp_ecdsa2_sigver_test.cc41 bssl::UniquePtr<BIGNUM> qy = GetBIGNUM(t, "Qy"); in TestECDSA2SigVer() local
47 if (!sig || !key || !qx || !qy || !r || !s || in TestECDSA2SigVer()
49 qy.get()) || in TestECDSA2SigVer()
/external/skia/src/gpu/geometry/
DGrQuad.cpp37 static void map_quad_general(const V4f& qx, const V4f& qy, const SkMatrix& m, in map_quad_general() argument
39 *xs = m.getScaleX() * qx + (m.getSkewX() * qy + m.getTranslateX()); in map_quad_general()
40 *ys = m.getSkewY() * qx + (m.getScaleY() * qy + m.getTranslateY()); in map_quad_general()
42 V4f w = m.getPerspX() * qx + (m.getPerspY() * qy + m.get(SkMatrix::kMPersp2)); in map_quad_general()
/external/boringssl/src/util/fipstools/acvp/acvptool/subprocess/
Decdsa.go116 qy, err := hex.DecodeString(test.QyHex)
120 result, err := m.Transact(e.algo+"/"+"keyVer", 1, []byte(group.Curve), qx, qy)
188 qy, err := hex.DecodeString(test.QyHex)
200 … m.Transact(e.algo+"/"+"sigVer", 1, []byte(group.Curve), []byte(group.HashAlgo), msg, qx, qy, r, s)
/external/scapy/.travis/
Dinstall.sh41 $SCAPY_SUDO apt-get -qy install libdumbnet-dev libpcap-dev
68 $SCAPY_SUDO apt-get -qy install openssl libwireshark-data
/external/nos/host/generic/nugget/proto/nugget/app/protoapi/
Dtesting_api.proto287 bytes qy = 4; field
292 bytes qy = 2; field
307 bytes qy = 3; field
315 bytes qy = 3; field
/external/mesa3d/src/mesa/swrast/
Ds_aatriangle.c54 const GLfloat qy = v2[1] - v0[1]; in compute_plane() local
58 const GLfloat a = py * qz - pz * qy; in compute_plane()
60 const GLfloat c = px * qy - py * qx; in compute_plane()
Ds_aaline.c99 const GLfloat qy = px; in compute_plane()
101 const GLfloat a = py * qz - pz * qy; in compute_plane()
103 const GLfloat c = px * qy - py * qx; in compute_plane()
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
DLevenbergMarquardtEstimator.java497 private void determineLMParameter(double[] qy, double delta, double[] diag, in determineLMParameter() argument
503 lmDir[permutation[j]] = qy[j]; in determineLMParameter()
568 sum += jacobian[index] * qy[i]; in determineLMParameter()
599 determineLMDirection(qy, work1, work2, work3); in determineLMParameter()
672 private void determineLMDirection(double[] qy, double[] diag, in determineLMDirection() argument
683 work[j] = qy[j]; in determineLMDirection()
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
DLevenbergMarquardtOptimizer.java504 private void determineLMParameter(double[] qy, double delta, double[] diag, in determineLMParameter() argument
510 lmDir[permutation[j]] = qy[j]; in determineLMParameter()
570 sum += wjacobian[i][pj] * qy[i]; in determineLMParameter()
600 determineLMDirection(qy, work1, work2, work3); in determineLMParameter()
673 private void determineLMDirection(double[] qy, double[] diag, in determineLMDirection() argument
684 work[j] = qy[j]; in determineLMDirection()
/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/self_check/
Dself_check.c232 BIGNUM *qy = BN_bin2bn(kQy, sizeof(kQy), NULL); in self_test_ecdsa_key() local
234 if (ec_key == NULL || qx == NULL || qy == NULL || d == NULL || in self_test_ecdsa_key()
235 !EC_KEY_set_public_key_affine_coordinates(ec_key, qx, qy) || in self_test_ecdsa_key()
242 BN_free(qy); in self_test_ecdsa_key()
/external/boringssl/src/crypto/fipsmodule/self_check/
Dself_check.c234 BIGNUM *qy = BN_bin2bn(kQy, sizeof(kQy), NULL); in self_test_ecdsa_key() local
236 if (ec_key == NULL || qx == NULL || qy == NULL || d == NULL || in self_test_ecdsa_key()
237 !EC_KEY_set_public_key_affine_coordinates(ec_key, qx, qy) || in self_test_ecdsa_key()
244 BN_free(qy); in self_test_ecdsa_key()
/external/ImageMagick/PerlMagick/t/reference/read/
Dinput_uyvy.miff14qy�oc�qc�ph�eh�qe�qe�kc�cc�cb�^b�d`�k`�f_�g_�d`�_`�cc�oc�a\�_\�``�c`�c_�a_�d_�k_�rdςd�r`�a`�]c�\c�…
/external/oboe/samples/RhythmGame/third_party/glm/gtx/
Dmatrix_decompose.inl172 s = sqrt (static_cast<T>(1) + Row[1][1] - Row[0][0] - Row[2][2]) * static_cast<T>(2); // S=4*qy
/external/boringssl/src/crypto/fipsmodule/ec/
Dec_test.cc454 qy = HexToBIGNUM(kQY); in TEST() local
455 ASSERT_TRUE(p && a && b && x && y && n && d && qx && qy); in TEST()
474 EXPECT_EQ(0, BN_cmp(y.get(), qy.get())); in TEST()
/external/rust/crates/quiche/deps/boringssl/src/crypto/fipsmodule/ec/
Dec_test.cc454 qy = HexToBIGNUM(kQY); in TEST() local
455 ASSERT_TRUE(p && a && b && x && y && n && d && qx && qy); in TEST()
474 EXPECT_EQ(0, BN_cmp(y.get(), qy.get())); in TEST()

123