HomeSort by relevance Sort by last modified time
    Searched defs:t3 (Results 1 - 25 of 137) sorted by null

1 2 3 4 5 6

  /external/clang/test/Sema/
attr-returns-twice.c 12 typedef void (*t3)(void) __attribute__((returns_twice)); // expected-warning {{'returns_twice' attribute only applies to functions}} typedef
unused-expr.c 33 void t3(int c) { function
wchar.c 21 char t3[] = L"x"; // expected-error {{initializer}} local
knr-def-call.c 18 f3 t3(int b) { return b? f0 : f1; } // okay function
thread-specifier.c 5 __thread static int t3; variable
vector-cast.c 5 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'}}
warn-char-subscripts.c 15 void t3() { function
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p1.cpp 9 Tuple<int, float, double> *t3; variable
  /external/clang/test/CodeGen/
libcalls-fno-builtin.c 18 double t3(double x) { return cos(x); } function
19 // CHECK: t3
  /external/dropbear/libtommath/
bn_mp_n_root.c 30 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, &t3, NULL)) != MP_OKAY) {
    [all...]
bn_mp_exteuclid.c 23 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/clang/test/PCH/Inputs/
namespaces.h 19 typedef int t3; typedef in namespace:N2::Inner
  /external/clang/test/Parser/
ms-inline-asm.c 8 void t3(void) { __asm M2 0x2c } function
  /external/libvpx/vp8/common/x86/
loopfilter_sse2.asm 208 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
    [all...]
  /libcore/luni/src/test/java/libcore/java/sql/
OldTimestampTest.java 35 Timestamp t3 = new Timestamp(Long.MIN_VALUE + 807); local
36 assertEquals("292278994-08-17 07:12:55.999", t3.toString());
  /system/extras/tests/bionic/libc/common/
test_pthread_join.c 65 pthread_t t1, t2, t3; local
69 pthread_create( &t3, NULL, thread3_func, (void*)t1 );
72 pthread_join(t3, NULL);
  /development/samples/ApiDemos/src/com/example/android/apis/text/
Link.java 59 TextView t3 = (TextView) findViewById(R.id.text3); local
60 t3.setText(
65 t3.setMovementMethod(LinkMovementMethod.getInstance());
  /external/chromium/third_party/modp_b64/
modp_b64.cc 86 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/
reference.cpp 34 char t3 () { function
free.c 15 void t3 () { function
  /external/clang/test/CodeGenCXX/
bitfield-layout.cpp 18 } t3; variable in typeref:union:Test3
rtti-linkage.cpp 130 void t3() { function
  /external/valgrind/main/memcheck/tests/
origin2-not-quite.c 18 __attribute__((noinline)) int t3(void);
27 x += t3();
50 __attribute__((noinline)) int t3(void) function
  /external/wpa_supplicant_8/src/crypto/
aes-internal-enc.c 26 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
81 s0 = TE41(t0) ^ TE42(t1) ^ TE43(t2) ^ TE44(t3) ^ rk[0];
83 s1 = TE41(t1) ^ TE42(t2) ^ TE43(t3) ^ TE44(t0) ^ rk[1];
85 s2 = TE41(t2) ^ TE42(t3) ^ TE43(t0) ^ TE44(t1) ^ rk[2];
87 s3 = TE41(t3) ^ TE42(t0) ^ TE43(t1) ^ TE44(t2) ^ rk[3];
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
calc_cor.cpp 229 Word32 t3; local
239 t3 = 0;
250 t3 = amrnb_fxp_mac_16_by_16bb((Word32) * (p), (Word32) * (p2++), t3);
255 t3 = amrnb_fxp_mac_16_by_16bb((Word32) * (p), (Word32) * (p2++), t3);
261 *(corr++) = t3 << 1;

Completed in 404 milliseconds

1 2 3 4 5 6