Searched defs:t0 (Results 1 - 25 of 128) sorted by relevance

123456

/external/clang/test/Index/Inputs/
H A Dcindex-from-source.h1 typedef int t0; typedef
/external/clang/test/Sema/
H A Dattr-naked.c5 __attribute__((naked)) int t0(void) { function
H A Dattr-returns-twice.c5 __attribute__((returns_twice)) void t0(void) { function
H A Dfpack-struct.c9 int t0[sizeof(struct s0) == EXPECTED_STRUCT_SIZE ?: -1]; variable
H A Dshort-enums.c5 int t0[sizeof(enum x) == 1 ? 1 : -1]; variable
H A Dsign-conversion.c6 unsigned t0 = x; // expected-warning {{implicit conversion changes signedness}} local
7 unsigned t1 = (t0 == 5 ? x : 0); // expected-warning {{operand of ? changes signedness}}
H A Dknr-def-call.c5 void t0(void) { function
H A Dmissing-field-initializers.c35 struct Three t0 = { variable in typeref:struct:Three
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp1.cpp5 Tuple<> *t0; variable
/external/clang/test/SemaTemplate/
H A Dtemplate-decl-fail.cpp6 enum t0 { A = T::x }; // expected-error{{enumeration cannot be a template}} \ enum
/external/compiler-rt/lib/tsan/rtl_tests/
H A Dtsan_thread.cc17 MainThread t0; local
19 t0.Write1(l);
24 t0.Write1(l);
H A Dtsan_mop.cc70 MainThread t0; local
71 t0.Create(m);
84 t0.Destroy(m);
89 MainThread t0; local
90 t0.Create(m);
103 t0.Destroy(m);
H A Dtsan_mutex.cc97 MainThread t0; local
98 t0.Create(m);
113 MainThread t0; local
114 t0.Create(m);
129 MainThread t0; local
130 t0.Create(m);
/external/clang/test/Lexer/
H A Dconstants.c45 float t0[] = { variable
/external/llvm/test/MC/MachO/
H A Dvariable-exprs.s40 t0: label
193 // CHECK-I386: ('_string', 't0')
394 // CHECK-X86_64: ('_string', 't0')
/external/dropbear/libtomcrypt/src/hashes/sha2/
H A Dsha256.c74 ulong32 S[8], W[64], t0, t1; local
98 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
100 d += t0; \
101 h = t0 + t1;
110 t0 = h + Sigma1(e) + Ch(e, f, g) + ki + W[i]; \
112 d += t0; \
113 h = t0 + t1;
H A Dsha512.c99 ulong64 S[8], W[80], t0, t1; local
120 t0 = S[7] + Sigma1(S[4]) + Ch(S[4], S[5], S[6]) + K[i] + W[i];
125 S[4] = S[3] + t0;
129 S[0] = t0 + t1;
133 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
135 d += t0; \
136 h = t0 + t1;
/external/dropbear/libtomcrypt/src/mac/pelican/
H A Dpelican.c57 ulong32 s0, s1, s2, s3, t0, t1, t2, t3; local
65 t0 =
85 s0 = t0; s1 = t1; s2 = t2; s3 = t3;
/external/openssl/crypto/des/
H A Dede_cbcm_enc.c141 register DES_LONG t0,t1; local
158 t0=tin0;
184 xor0=t0;
H A Dqud_cksm.c79 DES_LONG z0,z1,t0,t1; local
107 t0= (DES_LONG)(*(cp++));
108 t0|=(DES_LONG)Q_B1(*(cp++));
112 t0= (DES_LONG)(*(cp++));
115 t0+=z0;
116 t0&=0xffffffffL;
119 z0=((((t0*t0)&0xffffffffL)+((t1*t1)&0xffffffffL))
121 z1=((t0*((t1+NOISE)&0xffffffffL))&0xffffffffL)%0x7fffffffL;
/external/skia/src/core/
H A DSkCubicClipper.cpp40 SkScalar t0; local
45 t0 = t1;
46 SkScalar y01 = SkScalarInterp(ycrv[0], ycrv[1], t0);
47 SkScalar y12 = SkScalarInterp(ycrv[1], ycrv[2], t0);
48 SkScalar y23 = SkScalarInterp(ycrv[2], ycrv[3], t0);
49 SkScalar y012 = SkScalarInterp(y01, y12, t0);
50 SkScalar y123 = SkScalarInterp(y12, y23, t0);
51 SkScalar y0123 = SkScalarInterp(y012, y123, t0);
59 converged = SkScalarAbs(t1 - t0) <= tol; // NaN-safe
/external/webkit/Source/WebCore/platform/graphics/
H A DUnitBezier.h65 double t0; local
84 t0 = 0.0;
88 if (t2 < t0)
89 return t0;
93 while (t0 < t1) {
98 t0 = t2;
101 t2 = (t1 - t0) * .5 + t0;
/external/webkit/Source/WebKit2/Platform/
H A DWorkItem.h90 MemberFunctionWorkItem1(C* ptr, FunctionType function, T0 t0) argument
93 , m_t0(t0)
120 MemberFunctionWorkItem2(C* ptr, FunctionType function, T0 t0, T1 t1) argument
123 , m_t0(t0)
152 PassOwnPtr<WorkItem> WorkItem::create(C* ptr, void (C::*function)(T0), T0 t0) argument
154 return adoptPtr(static_cast<WorkItem*>(new MemberFunctionWorkItem1<C, T0>(ptr, function, t0)));
158 PassOwnPtr<WorkItem> WorkItem::create(C* ptr, void (C::*function)(T0, T1), T0 t0, T1 t1) argument
160 return adoptPtr(static_cast<WorkItem*>(new MemberFunctionWorkItem2<C, T0, T1>(ptr, function, t0, t1)));
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-internal-enc.c25 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
87 s0 = TE41(t0) ^ TE42(t1) ^ TE43(t2) ^ TE44(t3) ^ rk[0];
89 s1 = TE41(t1) ^ TE42(t2) ^ TE43(t3) ^ TE44(t0) ^ rk[1];
91 s2 = TE41(t2) ^ TE42(t3) ^ TE43(t0) ^ TE44(t1) ^ rk[2];
93 s3 = TE41(t3) ^ TE42(t0) ^ TE43(t1) ^ TE44(t2) ^ rk[3];
/external/wpa_supplicant_8/src/crypto/
H A Daes-internal-enc.c25 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
87 s0 = TE41(t0) ^ TE42(t1) ^ TE43(t2) ^ TE44(t3) ^ rk[0];
89 s1 = TE41(t1) ^ TE42(t2) ^ TE43(t3) ^ TE44(t0) ^ rk[1];
91 s2 = TE41(t2) ^ TE42(t3) ^ TE43(t0) ^ TE44(t1) ^ rk[2];
93 s3 = TE41(t3) ^ TE42(t0) ^ TE43(t1) ^ TE44(t2) ^ rk[3];

Completed in 4465 milliseconds

123456