Searched defs:qy (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/net/quic/crypto/
H A Dchannel_id_test.cc26 const char* qy; member in struct:net::test::__anon8901::TestVector
248 ASSERT_TRUE(DecodeHexString(test_vector[i].qy, key + qx_len, &qy_len,
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_aatriangle.c56 const GLfloat qy = v2[1] - v0[1]; local
60 const GLfloat a = py * qz - pz * qy;
62 const GLfloat c = px * qy - py * qx;
/external/mesa3d/src/mesa/swrast/
H A Ds_aatriangle.c56 const GLfloat qy = v2[1] - v0[1]; local
60 const GLfloat a = py * qz - pz * qy;
62 const GLfloat c = px * qy - py * qx;
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DQuaternion.java841 float qw = q.w, qx = q.x, qy = q.y, qz = q.z;
842 res.x = x * qw + y * qz - z * qy + w * qx;
843 res.y = -x * qz + y * qw + z * qx + w * qy;
844 res.z = x * qy - y * qx + z * qw + w * qz;
845 res.w = -x * qx - y * qy - z * qz + w * qw;
981 * @param qy -
990 public Quaternion multLocal(float qx, float qy, float qz, float qw) { argument
991 float x1 = x * qw + y * qz - z * qy + w * qx;
992 float y1 = -x * qz + y * qw + z * qx + w * qy;
993 float z1 = x * qy
[all...]

Completed in 194 milliseconds