Searched defs:t3 (Results 1 - 25 of 116) sorted by relevance

12345

/external/clang/test/Sema/
H A Dattr-returns-twice.c12 typedef void (*t3)(void) __attribute__((returns_twice)); // expected-warning {{'returns_twice' attribute only applies to functions}} typedef
H A Dwchar.c21 char t3[] = L"x"; // expected-error {{initializer}} local
H A Dknr-def-call.c18 f3 t3(int b) { return b? f0 : f1; } // okay function
H A Dunused-expr.c33 void t3(int c) { function
H A Dvector-cast.c5 typedef float t3 __attribute__ ((vector_size (16))); typedef
11 t3 v3;
17 v3 = (t3)v2;
35 void f3(t3 Y) {
36 f2(Y); // expected-warning {{incompatible vector types passing 't3' to parameter of type 't2'}}
H A Dwarn-char-subscripts.c15 void t3() { function
H A Dext_vector_casts.c7 typedef float t3 __attribute__ ((vector_size (16))); typedef
14 t3 vec4_3;
H A Dthread-specifier.c5 __thread static int t3; // expected-warning {{'__thread' before 'static'}} variable
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp1.cpp9 Tuple<int, float, double> *t3; variable
/external/clang/test/CodeGen/
H A Dlibcalls-fno-builtin.c18 double t3(double x) { return cos(x); } function
19 // CHECK: t3
H A Dms-inline-asm.c21 void t3() { function
22 // CHECK: @t3
H A Dms_struct-bitfield-init.c43 } t3 = {1,2,3,4}; variable in typeref:struct:__anon4243
62 if (sizeof(t3) != 16)
64 if (t3.i1 != 1 || t3.i4 != 4)
/external/clang/test/PCH/Inputs/
H A Dnamespaces.h19 typedef int t3; typedef in namespace:N2::Inner
/external/clang/test/Parser/
H A Dms-inline-asm.c8 void t3(void) { __asm M2 0x2c } // expected-warning {{MS-style inline assembly is not supported}} function
/external/dropbear/libtommath/
H A Dbn_mp_n_root.c30 mp_int t1, t2, t3; local
46 if ((res = mp_init (&t3)) != MP_OKAY) {
65 /* t3 = t1**(b-1) */
66 if ((res = mp_expt_d (&t1, b - 1, &t3)) != MP_OKAY) {
72 if ((res = mp_mul (&t3, &t1, &t2)) != MP_OKAY) {
82 /* t3 = t1**(b-1) * b */
83 if ((res = mp_mul_d (&t3, b, &t3)) != MP_OKAY) {
87 /* t3 = (t1**b - a)/(b * t1**(b-1)) */
88 if ((res = mp_div (&t2, &t3,
[all...]
H A Dbn_mp_exteuclid.c23 mp_int u1,u2,u3,v1,v2,v3,t1,t2,t3,q,tmp; local
26 if ((err = mp_init_multi(&u1, &u2, &u3, &v1, &v2, &v3, &t1, &t2, &t3, &q, &tmp, NULL)) != MP_OKAY) {
43 /* (t1,t2,t3) = (u1,u2,u3) - (v1,v2,v3)q */
49 if ((err = mp_sub(&u3, &tmp, &t3)) != MP_OKAY) { goto _ERR; }
56 /* (v1,v2,v3) = (t1,t2,t3) */
59 if ((err = mp_copy(&t3, &v3)) != MP_OKAY) { goto _ERR; }
75 _ERR: mp_clear_multi(&u1, &u2, &u3, &v1, &v2, &v3, &t1, &t2, &t3, &q, &tmp, NULL);
/external/libvpx/vp8/common/x86/
H A Dloopfilter_sse2.asm208 paddsb xmm2, [GLOBAL(t3)] ; 3* (q0 - p0) + hvm(p1 - q1) + 3
434 paddsb xmm5, [GLOBAL(t3)] ; vp8_signed_char_clamp(Filter2 + 3)
1767 t3: label
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp9-0x.cpp52 void test_explicit_spec_extension_targs(tuple<int, float, double> t3) { argument
53 accept_tuple(t3);
54 accept_tuple<int, float, double>(t3);
55 accept_tuple<int>(t3);
56 accept_tuple<int, float>(t3);
/external/clang/test/CodeGenCXX/
H A Dbitfield-layout.cpp18 } t3; variable in typeref:union:Test3
H A Drtti-linkage.cpp130 void t3() { function
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtesttimer.c30 SDL_TimerID t1, t2, t3; local
69 t3 = SDL_AddTimer(233, callback, (void*)3);
70 if(!t3)
83 SDL_RemoveTimer(t3);
/external/valgrind/main/memcheck/tests/
H A Dorigin2-not-quite.c18 __attribute__((noinline)) int t3(void);
27 x += t3();
50 __attribute__((noinline)) int t3(void) function
/external/chromium/third_party/modp_b64/
H A Dmodp_b64.cc86 uint8_t t1, t2, t3; local
89 t1 = str[i]; t2 = str[i+1]; t3 = str[i+2];
92 *p++ = e1[((t2 & 0x0F) << 2) | ((t3 >> 6) & 0x03)];
93 *p++ = e2[t3];
/external/clang/test/Analysis/
H A Dfree.c15 void t3 () { function
/external/compiler-rt/lib/tsan/rtl_tests/
H A Dtsan_mutex.cc132 ScopedThread t1, t2, t3; local
141 t3.ReadLock(m);
143 t3.Read1(l);
145 t3.ReadUnlock(m);

Completed in 373 milliseconds

12345