Searched refs:q1 (Results 1 - 11 of 11) sorted by relevance

/haiku/src/system/libroot/posix/musl/math/
H A Dsqrt.c88 uint32_t r,t1,s1,ix1,q1; local
128 q = q1 = s0 = s1 = 0; /* [q,q1] = sqrt(x) */
155 q1 += r;
167 if (q1 == (uint32_t)0xffffffff) {
168 q1 = 0;
171 if (q1 == (uint32_t)0xfffffffe)
173 q1 += 2;
175 q1 += q1
[all...]
H A Djnf.c102 float t,q0,q1,w,h,z,tmp,nf; local
110 q1 = w*z - 1.0f;
112 while (q1 < 1.0e4f) {
115 tmp = z*q1 - q0;
116 q0 = q1;
117 q1 = tmp;
H A Djn.c154 double t,q0,q1,w,h,z,tmp,nf; local
162 q1 = w*z - 1.0;
164 while (q1 < 1.0e9) {
167 tmp = z*q1 - q0;
168 q0 = q1;
169 q1 = tmp;
/haiku/src/apps/glteapot/
H A DQuaternion.h231 const Quaternion& q1 = *this; local
232 return Quaternion(q1.x() + q2.x(), q1.y() + q2.y(), q1.z() + q2.z(), q1.m_w + q2.m_w);
239 const Quaternion& q1 = *this; local
240 return Quaternion(q1.x() - q2.x(), q1.y() - q2.y(), q1.z() - q2.z(), q1
319 operator *(const Quaternion& q1, const Quaternion& q2) argument
348 dot(const Quaternion& q1, const Quaternion& q2) argument
362 angle(const Quaternion& q1, const Quaternion& q2) argument
376 slerp(const Quaternion& q1, const Quaternion& q2, const float& t) argument
[all...]
/haiku/src/apps/haiku3d/
H A DQuaternion.h238 const Quaternion& q1 = *this; local
239 return Quaternion(q1.x() + q2.x(), q1.y() + q2.y(), q1.z() + q2.z(),
240 q1.m_w + q2.m_w);
247 const Quaternion& q1 = *this; local
248 return Quaternion(q1.x() - q2.x(), q1.y() - q2.y(), q1.z() - q2.z(),
249 q1
325 operator *(const Quaternion& q1, const Quaternion& q2) argument
355 dot(const Quaternion& q1, const Quaternion& q2) argument
369 angle(const Quaternion& q1, const Quaternion& q2) argument
383 slerp(const Quaternion& q1, const Quaternion& q2, const float& t) argument
[all...]
/haiku/src/libs/compat/openbsd_wlan/crypto/
H A Daes.c69 * at rank k in q1, and so on.
80 * -- Decode second block into the four words q1 q3 q5 q7, in that order,
471 uint32_t q0, q1, q2, q3, q4, q5, q6, q7; local
475 q1 = q[1];
483 r1 = (q1 >> 8) | (q1 << 24);
492 q[1] = q0 ^ r0 ^ q7 ^ r7 ^ r1 ^ rotr16(q1 ^ r1);
493 q[2] = q1 ^ r1 ^ r2 ^ rotr16(q2 ^ r2);
548 uint32_t q0, q1, q2, q3, q4, q5, q6, q7; local
551 q1
606 uint32_t q0, q1, q2, q3, q4, q5, q6, q7; local
[all...]
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dgmp-impl.h248 mp_limb_t n2, n10, n1, nadj, q1; \
256 q1 = ~(n2 + _xh); \
257 umul_ppmm (_xh, _xl, q1, d); \
261 (q) = _xh - q1; \
267 mp_limb_t n2, n10, n1, nadj, q1; \
275 q1 = ~(n2 + _xh); \
276 umul_ppmm (_xh, _xl, q1, d); \
280 (q) = _xh - q1; \
/haiku/src/libs/glut/
H A Dglut_shapes.c377 GLfloat q0[3], q1[3]; local
380 DIFF3(n2, n3, q1);
381 crossprod(q0, q1, q1);
382 normalize(q1);
385 glNormal3fv(q1);
/haiku/headers/libs/agg/
H A Dagg_image_filters.h240 double q0, q1, q2, q3; member in class:agg::image_filter_mitchell
248 q1((-12.0 * b - 48.0 * c) / 6.0),
257 if(x < 2.0) return q0 + x * (q1 + x * (q2 + x * q3));
/haiku/src/system/kernel/arch/arm64/
H A Darch_asm.S192 stp q0, q1, [x0], #32
223 ldp q0, q1, [x0], #32
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_sta.c1370 compare_quiet_ie(const struct ieee80211_quiet_ie *q1, argument
1374 if (q1->period != q2->period)
1376 if (le16dec(&q1->duration) != le16dec(&q2->duration))
1378 if (le16dec(&q1->offset) != le16dec(&q2->offset))

Completed in 170 milliseconds