Searched defs:q1 (Results 1 - 25 of 32) sorted by relevance

12

/external/clang/test/PCH/
H A Dreinclude2.h1 int q1 = A::x; variable
/external/fdlibm/
H A De_sqrt.c100 unsigned r,t1,s1,ix1,q1; local
140 q = q1 = s0 = s1 = 0; /* [q,q1] = ieee_sqrt(x) */
165 q1 += r;
177 if (q1==(unsigned)0xffffffff) { q1=0; q += 1;}
179 if (q1==(unsigned)0xfffffffe) q+=1;
180 q1+=2;
182 q1 += (q1
[all...]
H A De_jn.c161 double q0,q1,h,tmp; int k,m; local
163 q0 = w; z = w+h; q1 = w*z - 1.0; k=1;
164 while(q1<1.0e9) {
166 tmp = z*q1 - q0;
167 q0 = q1;
168 q1 = tmp;
/external/clang/test/CodeGenCXX/
H A Dcopy-assign-synthesis.cpp62 q1.pr(); q2.pr();
65 Q q1, q2; member in struct:X
H A Dcopy-assign-synthesis-1.cpp78 q1.pr(); q2.pr();
81 Q q1, q2; member in struct:X
/external/qemu/distrib/sdl-1.2.12/src/video/
H A De_sqrt.h146 u_int32_t r,t1,s1,ix1,q1; local
184 q = q1 = s0 = s1 = 0; /* [q,q1] = sqrt(x) */
209 q1 += r;
221 if (q1==(u_int32_t)0xffffffff) { q1=0; q += 1;}
223 if (q1==(u_int32_t)0xfffffffe) q+=1;
224 q1+=2;
226 q1 += (q1
[all...]
/external/llvm/include/llvm/Analysis/
H A DTrace.h105 iterator erase(iterator q1, iterator q2) { return BasicBlocks.erase (q1, q2); } argument
/external/libvpx/vp8/common/
H A Dloopfilter_filters.c28 uc p3, uc p2, uc p1, uc p0, uc q0, uc q1, uc q2, uc q3)
34 mask |= (abs(q1 - q0) > limit) * -1;
35 mask |= (abs(q2 - q1) > limit) * -1;
37 mask |= (abs(p0 - q0) * 2 + abs(p1 - q1) / 2 > flimit * 2 + limit) * -1;
43 static __inline signed char vp8_hevmask(signed char thresh, uc p1, uc p0, uc q0, uc q1) argument
47 hev |= (abs(q1 - q0) > thresh) * -1;
281 static __inline signed char vp8_simple_filter_mask(signed char limit, signed char flimit, uc p1, uc p0, uc q0, uc q1) argument
287 signed char mask = (abs(p0 - q0) * 2 + abs(p1 - q1) / 2 <= flimit * 2 + limit) * -1;
297 signed char q1 = (signed char) * oq1 ^ 0x80; local
300 vp8_filter = vp8_signed_char_clamp(p1 - q1);
27 vp8_filter_mask(signed char limit, signed char flimit, uc p3, uc p2, uc p1, uc p0, uc q0, uc q1, uc q2, uc q3) argument
[all...]
/external/opencv/cv/src/
H A Dcvthresh.cpp211 double mu1 = 0, q1 = 0; local
254 q1 = 0;
261 mu1 *= q1;
262 q1 += p_i;
263 q2 = 1. - q1;
265 if( MIN(q1,q2) < FLT_EPSILON || MAX(q1,q2) > 1. - FLT_EPSILON )
273 mu1 = (mu1 + val_i*p_i)/q1;
274 mu2 = (mu - q1*mu1)/q2;
275 sigma = q1*q
[all...]
H A Dcvmoments.cpp539 double q0 = t0 * t0, q1 = t1 * t1; local
547 HuState->hu4 = q0 + q1;
548 HuState->hu6 = d * (q0 - q1) + n4 * t0 * t1;
550 t0 *= q0 - 3 * q1;
551 t1 *= 3 * q0 - q1;
554 q1 = 3 * nu21 - nu03;
556 HuState->hu3 = q0 * q0 + q1 * q1;
557 HuState->hu5 = q0 * t0 + q1 * t1;
558 HuState->hu7 = q1 * t
[all...]
H A Dcvtemplmatch.cpp344 double *q0, *q1, *q2, *q3; local
431 q0 = q1 = q2 = q3 = 0;
465 q1 = q0 + templ->cols*cn;
505 t = q0[idx2+k] - q1[idx2+k] - q2[idx2+k] + q3[idx2+k];
/external/speex/libspeex/
H A Dkiss_fft.c286 int u,k,q1,q; local
298 for ( q1=0 ; q1<p ; ++q1 ) {
299 scratchbuf[q1] = Fout[ k ];
301 C_FIXDIV(scratchbuf[q1],p);
307 for ( q1=0 ; q1<p ; ++q1 ) {
/external/tremolo/Tremolo/
H A Dmdct.c367 REG_TYPE t0,t1,v0,v1,q0,q1,s0,s1; local
378 t1 += (q1 = (v1-t1)>>2);
383 t1 = v1-q1;
391 v1 += (q1 = (t1-v1)>>2);
396 v1 = t1-q1;
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DQuaternion.java174 * @param q1
181 public Quaternion(Quaternion q1, Quaternion q2, float interp) { argument
182 slerp(q1, q2, interp);
622 * @param q1
629 public Quaternion slerp(Quaternion q1, Quaternion q2, float t) { argument
631 if (q1.x == q2.x && q1.y == q2.y && q1.z == q2.z && q1.w == q2.w) {
632 this.set(q1);
[all...]
/external/opencv/cvaux/src/
H A Dcvmorphcontours.cpp105 CvPoint2D32f Q( CvPoint2D32f q0, CvPoint2D32f q1, CvPoint2D32f q2, double t );
515 CvPoint2D32f Q(CvPoint2D32f q0,CvPoint2D32f q1,CvPoint2D32f q2,double t) argument
519 q.x = (float)(q0.x*(1-t)*(1-t) + 2*q1.x*t*(1-t) + q2.x*t*t);
520 q.y = (float)(q0.y*(1-t)*(1-t) + 2*q1.y*t*(1-t) + q2.y*t*t);
H A Dcvtrifocal.cpp1554 double p1,q1,r1,s1,t1; local
1557 q1 = cvmGet(fundReduceCoef1,0,1);
1576 coeffs_dat[0] = ((r1-r2)*(-p1-q1-r1-s1-t1+p2+q2+r2+s2+t2)*(q1-q2)+(p1-p2)*(s1-s2)*(t1-t2));/* *a^3 */
1577 coeffs_dat[1] = ((r2*(-p1-q1-r1-s1-t1+p2+q2+r2+s2+t2)+(r1-r2)*(-p2-q2-r2-s2-t2))*(q1-q2)+(r1-r2)*(-p1-q1-r1-s1-t1+p2+q2+r2+s2+t2)*q2+(p2*(s1-s2)+(p1-p2)*s2)*(t1-t2)+(p1-p2)*(s1-s2)*t2);/* *a^2 */
1578 coeffs_dat[2] = (r2*(-p2-q2-r2-s2-t2)*(q1-q2)+(r2*(-p1-q1-r1-s1-t1+p2+q2+r2+s2+t2)+(r1-r2)*(-p2-q2-r2-s2-t2))*q2+p2*s2*(t1-t2)+(p2*(s1-s2)+(p1-p2)*s2)*t2);/* *a */
2766 /* det for matrix Q with q1
[all...]
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DLoopBlinnMathUtils.cpp137 const FloatPoint& q1,
141 return (orientation(p1, q1, p2) != orientation(p1, q1, q2)
142 && orientation(p2, q2, p1) != orientation(p2, q2, q1));
136 linesIntersect(const FloatPoint& p1, const FloatPoint& q1, const FloatPoint& p2, const FloatPoint& q2) argument
/external/aac/libAACenc/src/
H A Dmetadata_compressor.cpp357 * \param q1 Scaling factor of first input value.
365 const int q1,
372 int resultScale = fixMax(q1-headroom1, (*pQ2)-headroom2);
378 *pValue2 = scaleValue(value1, q1-resultScale) + scaleValue(*pValue2, (*pQ2)-resultScale);
363 fixpAdd( const FIXP_DBL value1, const int q1, FIXP_DBL *const pValue2, int *const pQ2 ) argument
/external/clang/test/SemaCXX/
H A Doverload-call.cpp155 char* q1 = quals1(p); local
176 int* q1 = quals_rank1(p); local
/external/srec/seti/sltsEngine/src/
H A Drun_seq_lts.c88 int matches(LQUESTION *q1, LQUESTION *q2, int type, LDP *dp) ;
1279 int matches(LQUESTION *q1, LQUESTION *q2, int type, LDP *dp) argument
1284 return qmatches(q1, dp);
1286 m1 = qmatches(q1, dp);
1290 m1 = qmatches(q1, dp);
1294 m1 = qmatches(q1, dp);
1298 m1 = qmatches(q1, dp);
1313 LQUESTION *q1; local
1331 q1 = lts->questions[tree->values_or_question1[index]];
1337 if (matches(q1, q
[all...]
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DPlatformPathWinCE.cpp180 static inline int quadrantDiff(int q1, int q2) argument
182 int d = q1 - q2;
425 int q1 = quadrant(endPoint, data.m_center); local
428 if (q0 == q1) {
435 int diff = quadrantDiff(q1, q0);
/external/webp/src/dec/
H A Ddsp.c493 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step]; local
494 const int a = 3 * (q0 - p0) + sclip1[1020 + p1 - q1];
503 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step]; local
511 p[ step] = clip1[255 + q1 - a3];
517 const int q0 = p[0], q1 = p[step], q2 = p[2*step]; local
518 const int a = sclip1[1020 + 3 * (q0 - p0) + sclip1[1020 + p1 - q1]];
526 p[ step] = clip1[255 + q1 - a2];
531 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step]; local
532 return (abs0[255 + p1 - p0] > thresh) || (abs0[255 + q1 - q0] > thresh);
536 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 local
542 const int q0 = p[0], q1 = p[step], q2 = p[2*step], q3 = p[3*step]; local
[all...]
H A Ddsp_sse2.c277 #define GET_NOTHEV(p1, p0, q0, q1, hev_thresh, not_hev) { \
280 const __m128i t2 = MM_ABS(q1, q0); \
284 const __m128i t4 = _mm_subs_epu8(t2, h); /* abs(q1 - q0) - hev_tresh */ \
290 #define GET_BASE_DELTA(p1, p0, q0, q1, o) { \
292 o = _mm_subs_epi8(p1, q1); /* p1 - q1 */ \
293 o = _mm_adds_epi8(o, qp0); /* p1 - q1 + 1 * (q0 - p0) */ \
294 o = _mm_adds_epi8(o, qp0); /* p1 - q1 + 2 * (q0 - p0) */ \
295 o = _mm_adds_epi8(o, qp0); /* p1 - q1 + 3 * (q0 - p0) */ \
325 const __m128i* q1, in
324 NeedsFilter(const __m128i* p1, const __m128i* p0, const __m128i* q0, const __m128i* q1, int thresh, __m128i *mask) argument
344 DoFilter2(const __m128i* p1, __m128i* p0, __m128i* q0, const __m128i* q1, int thresh) argument
365 DoFilter4(__m128i* p1, __m128i *p0, __m128i* q0, __m128i* q1, const __m128i* mask, int hev_thresh) argument
411 DoFilter6(__m128i *p2, __m128i* p1, __m128i *p0, __m128i* q0, __m128i* q1, __m128i *q2, const __m128i* mask, int hev_thresh) argument
509 Load16x4(const uint8_t* r0, const uint8_t* r8, int stride, __m128i* p1, __m128i* p0, __m128i* q0, __m128i* q1) argument
552 Store16x4(uint8_t* r0, uint8_t* r8, int stride, __m128i* p1, __m128i* p0, __m128i* q0, __m128i* q1) argument
597 __m128i q1 = _mm_loadu_si128((__m128i*)&p[stride]); local
607 __m128i p1, p0, q0, q1; local
686 __m128i p2, p1, p0, q0, q1, q2; local
711 __m128i p3, p2, p1, p0, q0, q1, q2, q3; local
732 __m128i t1, t2, p1, p0, q0, q1; local
761 __m128i t1, t2, p1, p0, q0, q1; local
786 __m128i t1, p2, p1, p0, q0, q1, q2; local
811 __m128i p3, p2, p1, p0, q0, q1, q2, q3; local
831 __m128i t1, t2, p1, p0, q0, q1; local
857 __m128i t1, t2, p1, p0, q0, q1; local
[all...]
/external/webp/src/enc/
H A Dfilter.c53 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step]; local
54 const int a = 3 * (q0 - p0) + sclip1[1020 + p1 - q1];
63 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step]; local
71 p[ step] = clip1[255 + q1 - a3];
76 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step]; local
77 return (abs0[255 + p1 - p0] > thresh) || (abs0[255 + q1 - q0] > thresh);
81 const int p1 = p[-2*step], p0 = p[-step], q0 = p[0], q1 = p[step]; local
82 return (2 * abs0[255 + p0 - q0] + abs1[255 + p1 - q1]) <= thresh;
87 const int q0 = p[0], q1 = p[step], q2 = p[2*step], q3 = p[3*step]; local
88 if ((2 * abs0[255 + p0 - q0] + abs1[255 + p1 - q1]) >
[all...]
/external/ipsec-tools/src/racoon/
H A Dipsec_doi.c1157 struct saprop *q1, *q2; local
1163 for (q1 = pr0; q1; q1 = q1->next) {
1167 printsaprop0(LLV_DEBUG, q1);
1172 pr = cmpsaprop_alloc(iph2->ph1, q1, q2, iph2->side);

Completed in 485 milliseconds

12