Searched refs:t2 (Results 276 - 300 of 664) sorted by relevance

<<11121314151617181920>>

/external/clang/test/CXX/except/except.spec/
H A Dp5-pointers.cpp46 void (&t2)() throw() = s2; // expected-error {{not superset}}
/external/clang/test/CXX/expr/expr.post/expr.const.cast/
H A Dp1-0x.cpp42 unsigned &t2 = const_cast<unsigned&>(a.pred() ? a.ubf : a.ubf); // expected-error {{const_cast from bit-field lvalue to reference type}} local
/external/clang/test/Coverage/
H A Dc-language-features.inc89 ipair t2 = {1, 2};
106 int t12_2 = __builtin_classify_type(t2);
159 float2 t2 = (t2_cond ? t0 : t1).lo;
/external/clang/test/PCH/
H A Dcxx-templates.cpp46 S6<const int[17]>::t2 b6 = a6;
/external/clang/test/Sema/
H A Dthread-specifier.c14 __thread extern int t2;
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_libc.cc42 const char *t2 = (const char *)s2; local
43 for (uptr i = 0; i < n; ++i, ++t1, ++t2)
44 if (*t1 != *t2)
45 return *t1 < *t2 ? -1 : 1;
/external/fonttools/Lib/fontTools/pens/
H A DpointInsidePen.py141 t2 = t * t
142 t3 = t2 * t
144 direction = 3*ay*t2 + 2*by*t + cy
151 xt = ax*t3 + bx*t2 + cx*t + dx
/external/fonttools/Tools/fontTools/pens/
H A DpointInsidePen.py141 t2 = t * t
142 t3 = t2 * t
144 direction = 3*ay*t2 + 2*by*t + cy
151 xt = ax*t3 + bx*t2 + cx*t + dx
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DTransform.java180 * @param t2 The ending transform.
181 * @param delta An amount between 0 and 1 representing how far to interpolate from t1 to t2.
183 public void interpolateTransforms(Transform t1, Transform t2, float delta) { argument
184 this.rot.slerp(t1.rot,t2.rot,delta);
185 this.translation.interpolate(t1.translation,t2.translation,delta);
186 this.scale.interpolate(t1.scale,t2.scale,delta);
/external/jmonkeyengine/engine/src/core-effects/Common/MatDefs/Water/
H A Dsimple_water.vert80 vec4 t2 = vec4(0.0, m_time, 0.0,0.0);
83 waterTex2 =vec4(inTexCoord ,0.0,0.0)+ t2;
/external/llvm/test/MC/Mips/
H A Dnooddspreg.s11 # RUN: not llvm-mc %s -arch=mips -mcpu=mips64 2> %t2
12 # RUN: FileCheck %s -check-prefix=INVALID < %t2
/external/valgrind/helgrind/tests/
H A Dhg02_deadlock.stderr.exp15 by 0x........: t2 (hg02_deadlock.c:19)
21 by 0x........: t2 (hg02_deadlock.c:20)
/external/valgrind/memcheck/tests/
H A Dorigin2-not-quite.stderr.exp14 at 0x........: t2 (origin2-not-quite.c:47)
18 by 0x........: t2 (origin2-not-quite.c:44)
/external/selinux/libsepol/src/
H A Dhierarchy.c162 type_datum_t *s, *t1 = NULL, *t2 = NULL; local
191 if (find_parent_type(a, s, &t2) < 0)
193 if (t2) {
199 key.target_type = t2->s.value;
208 if (t1 && t2) {
214 key.target_type = t2->s.value;
227 if (!t1 && !t2)
/external/opencv/otherlibs/highgui/
H A Dutils.cpp184 uchar t2 = bgra[2], t3 = bgra[3]; local
185 rgba[0] = t2; rgba[1] = t1;
202 uchar t0 = bgr[0], t1 = bgr[1], t2 = bgr[2]; local
203 rgb[2] = t0; rgb[1] = t1; rgb[0] = t2;
219 ushort t0 = bgr[0], t1 = bgr[1], t2 = bgr[2]; local
220 rgb[2] = t0; rgb[1] = t1; rgb[0] = t2;
274 int t2 = (((ushort*)bgr555)[i] >> 7) & 0xf8; local
275 bgr[0] = (uchar)t0; bgr[1] = (uchar)t1; bgr[2] = (uchar)t2;
292 int t2 = (((ushort*)bgr565)[i] >> 8) & 0xf8; local
293 bgr[0] = (uchar)t0; bgr[1] = (uchar)t1; bgr[2] = (uchar)t2;
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
H A DSecP384R1Field.java105 long t2 = (xx[14] & M) + xx22 + xx23;
118 cc += (xx[2] & M) - xx21 - t1 + t2;
121 cc += (xx[3] & M) + t0 - t2 + t3 + t5;
127 cc += (xx[5] & M) - xx16 + t1 + t2 + t4;
130 cc += (xx[6] & M) + xx18 - xx17 + t2 + t3;
/external/libvpx/libvpx/vp8/common/mips/dspr2/
H A Didctllm_dspr2.c216 int t2, vector_a1, vector_a; local
242 "lw %[t2], 0(%[pred_ptr]) \n\t"
244 "subu_s.qb %[vector_a], %[t2], %[vector_a1] \n\t"
247 : [t2] "=&r" (t2), [vector_a] "=&r" (vector_a),
267 "lw %[t2], 0(%[pred_ptr]) \n\t"
269 "addu_s.qb %[vector_a], %[vector_a1], %[t2] \n\t"
272 : [t2] "=&r" (t2), [vector_a] "=&r" (vector_a),
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_maos_vbtmp.h64 const GLuint t2 = GET_TEXSOURCE(2); local
65 tc2 = (GLuint (*)[4])VB->AttribPtr[_TNL_ATTRIB_TEX0 + t2]->data;
66 tc2_stride = VB->AttribPtr[_TNL_ATTRIB_TEX0 + t2]->stride;
67 if (DO_PTEX && VB->AttribPtr[_TNL_ATTRIB_TEX0 + t2]->size < 3) {
70 else if (DO_PTEX && VB->AttribPtr[_TNL_ATTRIB_TEX0 + t2]->size < 4) {
256 if (TCL_DEBUG) fprintf(stderr, "t2: %.2f %.2f ", v[0].f, v[1].f);
/external/valgrind/mpi/
H A Dmpiwrap_type_test.c26 Ty t2; local
27 int r = MPI_Type_contiguous( count, t, &t2 );
29 return t2;
33 int d2, int copies2, Ty t2 )
45 tys[1] = t2;
/external/webp/src/utils/
H A Dhuffman_encode.c124 const HuffmanTree* const t2 = (const HuffmanTree*)ptr2; local
125 if (t1->total_count_ > t2->total_count_) {
127 } else if (t1->total_count_ < t2->total_count_) {
130 assert(t1->value_ != t2->value_);
131 return (t1->value_ < t2->value_) ? -1 : 1;
/external/v8/test/cctest/
H A Dtest-assembler-mips.cc129 __ addiu(t2, t1, -0x10);
134 __ li(t2, 0x12345678);
142 __ srl(v0, t2, 8); // 0x00123456
162 __ and_(v0, t1, t2); // 0x00001230
164 __ xor_(v0, v0, t2); // 0x1234444c
165 __ nor(v0, v0, t2); // 0xedcba987
209 __ Clz(v1, t2); // 3
357 __ mfc1(t2, f6);
362 __ mtc1(t2, f4);
368 __ mfc1(t2, f
[all...]
/external/skia/tests/
H A DPathOpsCubicIntersectionTest.cpp58 SkDebugf("%s [%d,%d] x!= t1=%g (%g,%g) t2=%g (%g,%g)\n",
415 SkDebugf("%s t1=%1.9g (%1.9g, %1.9g) (%1.9g, %1.9g) (%1.9g, %1.9g) t2=%1.9g\n",
510 SkDPoint t1[3], t2[3]; local
516 t2[0] = cubic2.ptAtT(t2Seed - t2Step);
517 t2[1] = cubic2.ptAtT(t2Seed);
518 t2[2] = cubic2.ptAtT(t2Seed + t2Step);
520 dist[1][1] = t1[1].distance(t2[1]);
527 dist[i][j] = t1[i].distance(t2[j]);
551 } while (!t1[1].approximatelyEqual(t2[1]));
571 t20 += t2[
[all...]
/external/boringssl/src/crypto/bn/
H A Dmontgomery.c392 BN_ULONG t1, t2, t3, t4;
395 t2 = nrp[i + 1];
402 rp[i + 1] = t2;
479 BN_ULONG t1,t2,t3,t4; local
482 t2=nrp[i+1];
486 rp[i+1]=t2; ap[i+3]=0;
/external/icu/icu4c/source/i18n/
H A Dutf8collationiterator.cpp54 uint8_t t1, t2; local
64 (t2 = (u8[pos + 1] - 0x80)) <= 0x3f
67 c = (UChar)((c << 12) | (t1 << 6) | t2);
163 uint8_t t1, t2; local
177 (t2 = (u8[pos + 1] - 0x80)) <= 0x3f
180 c = (UChar)((c << 12) | (t1 << 6) | t2);
/external/jpeg/
H A Djidctintelsse.c116 __m128i t0, t1, t2, t3, t4, t5, t6, t7; local
229 t2 = _mm_subs_epi16(tp12, tm12);\
230 t2 = _mm_adds_epi16(t2, *( __m128i*)M128_round_inv_corr);\
242 temp = _mm_adds_epi16(t2, t5);\
253 temp2 = _mm_subs_epi16(t2, t5);\

Completed in 778 milliseconds

<<11121314151617181920>>