HomeSort by relevance Sort by last modified time
    Searched refs:t2 (Results 1 - 25 of 460) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2006-01-16-BitCountIntrinsicsUnsigned.c 3 unsigned t2(unsigned X) { function
4 // CHECK: t2
attr-naked.c 14 // CHECK: define void @t2() nounwind noinline naked {
15 __attribute((naked, always_inline)) void t2() { function
ms_struct-bitfield-init.c 32 } ATTR t2 = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i'}; variable in typeref:struct:__anon4836
58 if (sizeof(t2) != 9)
60 if (t2.bar0 != 'a' || t2.bar8 != 'i')
  /external/webkit/Source/WebCore/platform/graphics/
UnitBezier.h 67 double t2; local
73 for (t2 = x, i = 0; i < 8; i++) {
74 x2 = sampleCurveX(t2) - x;
76 return t2;
77 d2 = sampleCurveDerivativeX(t2);
80 t2 = t2 - x2 / d2;
86 t2 = x;
88 if (t2 < t0)
90 if (t2 > t1
    [all...]
  /external/clang/test/PCH/
cxx-static_assert.cpp 18 T<2> t2; variable
  /external/clang/test/Sema/
attr-nodebug.c 7 void t2() __attribute__((nodebug(2))); // expected-error {{attribute takes no arguments}}
attr-noinline.c 7 void t2() __attribute__((noinline(2))); // expected-error {{attribute takes no arguments}}
attr-naked.c 11 void t2() __attribute__((naked(2))); // expected-error {{attribute takes no arguments}}
attr-returns-twice.c 10 void t2() __attribute__((returns_twice(2))); // expected-error {{attribute takes no arguments}}
vector-cast.c 4 typedef char t2 __attribute__ ((vector_size (16))); typedef
10 t2 v2;
13 v2 = (t2)v1; // -expected-error {{invalid conversion between vector type \
14 't2' and 't1' of different size}}
16 't1' and 't2' of different size}}
33 void f2(t2 X); // expected-note{{passing argument to parameter 'X' here}}
36 f2(Y); // expected-warning {{incompatible vector types passing 't3' to parameter of type 't2'}}
  /external/dropbear/libtommath/
bn_mp_lcm.c 22 mp_int t1, t2; local
25 if ((res = mp_init_multi (&t1, &t2, NULL)) != MP_OKAY) {
36 /* store quotient in t2 such that t2 * b is the LCM */
37 if ((res = mp_div(a, &t1, &t2, NULL)) != MP_OKAY) {
40 res = mp_mul(b, &t2, c);
42 /* store quotient in t2 such that t2 * a is the LCM */
43 if ((res = mp_div(b, &t1, &t2, NULL)) != MP_OKAY) {
46 res = mp_mul(a, &t2, c)
    [all...]
bn_mp_n_root.c 30 mp_int t1, t2, t3; local
42 if ((res = mp_init (&t2)) != MP_OKAY) {
54 /* t2 = 2 */
55 mp_set (&t2, 2);
58 /* t1 = t2 */
59 if ((res = mp_copy (&t2, &t1)) != MP_OKAY) {
63 /* t2 = t1 - ((t1**b - a) / (b * t1**(b-1))) */
71 /* t2 = t1**b */
72 if ((res = mp_mul (&t3, &t1, &t2)) != MP_OKAY) {
76 /* t2 = t1**b - a *
    [all...]
bn_mp_sqrt.c 22 mp_int t1,t2; local
39 if ((res = mp_init(&t2)) != MP_OKAY) {
47 if ((res = mp_div(arg,&t1,&t2,NULL)) != MP_OKAY) {
50 if ((res = mp_add(&t1,&t2,&t1)) != MP_OKAY) {
58 if ((res = mp_div(arg,&t1,&t2,NULL)) != MP_OKAY) {
61 if ((res = mp_add(&t1,&t2,&t1)) != MP_OKAY) {
67 /* t1 >= sqrt(arg) >= t2 at this point */
68 } while (mp_cmp_mag(&t1,&t2) == MP_GT);
72 E1: mp_clear(&t2);
  /external/valgrind/unittest/output_tests/
fun_hist_test.cc 34 MyThread t2(Thread2, NULL, "test-thread-2");
36 t2.Start();
38 t2.Join();
output_test1.cc 20 MyThread t2(Thread2, NULL, "test-thread-2");
22 t2.Start();
24 t2.Join();
  /external/clang/test/CodeGenCXX/
predefined-expr-sizeof.cpp 23 TemplateClass<double> t2; local
24 t2.templateClassFunction();
  /external/clang/test/SemaCXX/
warn-char-subscripts.cpp 11 void t2() { function
19 t2<char>(); // expected-note {{in instantiation of function template specialization 't2<char>' requested here}}
  /external/dropbear/libtomcrypt/src/pk/ecc/
ltc_ecc_map.c 35 void *t1, *t2; local
42 if ((err = mp_init_multi(&t1, &t2, NULL)) != CRYPT_OK) {
53 if ((err = mp_sqr(t1, t2)) != CRYPT_OK) { goto done; }
54 if ((err = mp_mod(t2, modulus, t2)) != CRYPT_OK) { goto done; }
55 if ((err = mp_mul(t1, t2, t1)) != CRYPT_OK) { goto done; }
59 if ((err = mp_mul(P->x, t2, P->x)) != CRYPT_OK) { goto done; }
67 mp_clear_multi(t1, t2, NULL);
ltc_ecc_projective_add_point.c 37 void *t1, *t2, *x, *y, *z; local
46 if ((err = mp_init_multi(&t1, &t2, &x, &y, &z, NULL)) != CRYPT_OK) {
56 mp_clear_multi(t1, t2, x, y, z, NULL);
83 /* T2 = X' * T1 */
84 if ((err = mp_mul(Q->x, t1, t2)) != CRYPT_OK) { goto done; }
85 if ((err = mp_montgomery_reduce(t2, modulus, mp)) != CRYPT_OK) { goto done; }
108 /* X = X - T2 */
109 if ((err = mp_sub(x, t2, x)) != CRYPT_OK) { goto done; }
113 /* T2 = 2T2 */
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
calc_cor.cpp 228 Word32 t2; local
238 t2 = 0;
249 t2 = amrnb_fxp_mac_16_by_16bb((Word32) * (p), (Word32) * (p1), t2);
254 t2 = amrnb_fxp_mac_16_by_16bb((Word32) * (p), (Word32) * (p1), t2);
260 *(corr++) = t2 << 1;
  /external/valgrind/main/coregrind/
m_vki.c 105 vki_sigaction_toK_t t2; local
108 vg_assert(sizeof(t1.sa_handler) == sizeof(t2.ksa_handler));
109 vg_assert(sizeof(t1.sa_tramp) == sizeof(t2.sa_tramp));
110 vg_assert(sizeof(t1.sa_mask) == sizeof(t2.sa_mask));
111 vg_assert(sizeof(t1.sa_flags) == sizeof(t2.sa_flags));
116 vg_assert(offsetof(t1,sa_handler) == offsetof(t2.ksa_handler));
117 vg_assert(offsetof(t1.sa_tramp) == offsetof(t2.sa_tramp));
118 vg_assert(offsetof(t1.sa_mask) == offsetof(t2.sa_mask));
119 vg_assert(offsetof(t1.sa_flags) == offsetof(t2.sa_flags));
  /external/dropbear/libtomcrypt/testprof/
x86_prof.c 107 ulong64 c1, c2, t1, t2, t3; local
115 t2 = (t_read() - t1)>>1;
118 c2 = (t2 > c2) ? t2 : c2;
294 ulong64 t1, t2, c1, c2, a1, a2; local
319 t2 = t_read();
320 t2 -= t1;
323 c2 = (t2 > c2 ? c2 : t2);
338 t2 = t_read()
366 ulong64 t1, t2, c1, c2, a1, a2; local
441 ulong64 t1, t2, c1, c2, a1, a2; local
516 ulong64 t1, t2, c1, c2, a1, a2; local
593 ulong64 t1, t2, c1, c2; local
647 ulong64 t1, t2; local
678 ulong64 t1, t2; local
712 ulong64 t1, t2; local
767 ulong64 t1, t2; local
812 ulong64 t1, t2; local
936 ulong64 t1, t2; local
1006 ulong64 t1, t2; local
1153 ulong64 t1, t2; local
1285 ulong64 t1, t2; local
    [all...]
  /external/clang/test/Analysis/
operator-calls.cpp 8 void t2() { function
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-0x-fixits.cpp 22 struct {T t;} t2 = {700}; local
  /external/clang/test/CXX/except/except.spec/
template.cpp 9 void (*t2)() throw() = &f1<0>; // expected-error {{not superset}} variable

Completed in 3010 milliseconds

1 2 3 4 5 6 7 8 91011>>