Searched defs:t3 (Results 1 - 25 of 124) 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.c23 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
132 #define M3(a) (t3(a), fn2())
133 #define M4(a, b) (foo((a), (b)) ? 0 : t3(a), 1)
143 NOP((t3(i), fn2())); // expected-warning {{ignoring return value}}
145 NOP((foo(i, j) ? 0 : t3(i), 1)); // expected-warning {{expression result unused}}
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 Dms-inline-asm.c22 void t3() { function
23 // CHECK: @t3
H A Dms_struct-bitfield-init.c43 } t3 = {1,2,3,4}; variable in typeref:struct:__anon4422
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.c9 void t3(void) { __asm M2 0x2c } 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...]
/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
H A Dp9-0x.cpp53 void test_explicit_spec_extension_targs(tuple<int, float, double> t3) { argument
54 accept_tuple(t3);
55 accept_tuple<int, float, double>(t3);
56 accept_tuple<int>(t3);
57 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/libvpx/libvpx/vp8/common/x86/
H A Dloopfilter_block_sse2.asm87 paddsb scratch2, [GLOBAL(t3)] ; Filter2
809 t3: label
H A Dloopfilter_mmx.asm165 paddsb mm2, [GLOBAL(t3)] ; 3* (q0 - p0) + hvm(p1 - q1) + 3
474 paddsb mm2, [GLOBAL(t3)] ; 3* (q0 - p0) + hvm(p1 - q1) + 3
768 paddsb mm5, [GLOBAL(t3)];
1169 paddsb mm5, [GLOBAL(t3)];
1734 t3: label
H A Dloopfilter_sse2.asm209 paddsb xmm2, [GLOBAL(t3)] ; 3* (q0 - p0) + hvm(p1 - q1) + 3
425 paddsb xmm5, [GLOBAL(t3)] ; vp8_signed_char_clamp(Filter2 + 3)
1335 paddsb xmm5, [GLOBAL(t3)] ; 3* (q0 - p0) + (p1 - q1) + 4
1510 paddsb xmm5, [GLOBAL(t3)] ; 3* (q0 - p0) + (p1 - q1) + 4
1621 t3: label
/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/tests/rtl/
H A Dtsan_mutex.cc132 ScopedThread t1, t2, t3; local
141 t3.ReadLock(m);
143 t3.Read1(l);
145 t3.ReadUnlock(m);

Completed in 433 milliseconds

12345