Searched defs:t2 (Results 51 - 75 of 552) sorted by relevance

1234567891011>>

/external/libcxx/test/containers/sequences/array/
H A Dindexing.pass.cpp55 constexpr T t2 = c[2]; local
56 static_assert (t2 == 3.5, "");
/external/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/
H A Dremove_if.pass.cpp31 const T t2[] = {5, 5, 5}; local
33 C c2(std::begin(t2), std::end(t2));
50 const T t2[] = {5, 5, 5}; local
52 C c2(std::begin(t2), std::end(t2));
68 const T t2[] = {5, 5, 5}; local
70 C c2(std::begin(t2), std::end(t2));
79 const T t2[] local
98 const T t2[] = {5, 5, 5}; local
116 const T t2[] = {5, 5, 5}; local
[all...]
H A Dunique_pred.pass.cpp31 const T t2[] = {0, 5, 0, 5}; local
33 C c2(std::begin(t2), std::end(t2));
41 const T t2[] = {0}; local
43 C c2(std::begin(t2), std::end(t2));
51 const T t2[] = {5}; local
53 C c2(std::begin(t2), std::end(t2));
69 const T t2[] local
80 const T t2[] = {0, 5, 0, 5}; local
90 const T t2[] = {0}; local
100 const T t2[] = {5}; local
118 const T t2[] = {5, 0}; local
[all...]
/external/libcxx/test/numerics/complex.number/complex.transcendentals/
H A Datan.pass.cpp43 std::complex<double> t2 = atanh(t1); local
44 std::complex<double> z(imag(t2), -real(t2));
H A Dsin.pass.cpp44 std::complex<double> t2 = sinh(t1); local
45 std::complex<double> z(imag(t2), -real(t2));
H A Dtan.pass.cpp45 std::complex<double> t2 = tanh(t1); local
46 std::complex<double> z(imag(t2), -real(t2));
/external/libcxx/test/utilities/intseq/intseq.general/
H A Dinteger_seq.pass.cpp74 auto t2 = extract ( tup, size2 ()); local
75 static_assert ( std::tuple_size<decltype(t2)>::value == size2::size (), "t2 size wrong");
76 assert ( t2 == std::make_tuple ( 10, 11 ));
/external/libcxx/test/utilities/time/time.point/time.point.comparisons/
H A Dop_equal.fail.cpp38 T2 t2(Duration2(3000));
39 t1 == t2; local
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/
H A Dtuple.by.type.pass.cpp29 auto t2 = std::tuple<int, std::string, int, cf> { 42, "Hi", 23, { 1,2 }}; local
31 assert ( std::get<std::string>(t2) == "Hi" );
32 assert (( std::get<cf>(t2) == cf{ 1,2 } ));
/external/llvm/unittests/Support/
H A DErrorOrTest.cpp20 ErrorOr<int> t2() { return errc::invalid_argument; } function in namespace:__anon26532
32 a = t2();
/external/valgrind/main/coregrind/
H A Dm_vki.c106 vki_sigaction_toK_t t2; local
109 vg_assert(sizeof(t1.sa_handler) == sizeof(t2.ksa_handler));
110 vg_assert(sizeof(t1.sa_tramp) == sizeof(t2.sa_tramp));
111 vg_assert(sizeof(t1.sa_mask) == sizeof(t2.sa_mask));
112 vg_assert(sizeof(t1.sa_flags) == sizeof(t2.sa_flags));
117 vg_assert(offsetof(t1,sa_handler) == offsetof(t2.ksa_handler));
118 vg_assert(offsetof(t1.sa_tramp) == offsetof(t2.sa_tramp));
119 vg_assert(offsetof(t1.sa_mask) == offsetof(t2.sa_mask));
120 vg_assert(offsetof(t1.sa_flags) == offsetof(t2.sa_flags));
/external/valgrind/main/helgrind/tests/
H A Dhg02_deadlock.c17 static void *t2(void *v) function
36 pthread_create(&b, NULL, t2, NULL);
H A Dhg03_inherit.c23 static void *t2(void *v) function
46 pthread_create(&b, NULL, t2, (void *)&shared[1]);
/external/chromium_org/net/http/
H A Dhttp_vary_data_unittest.cc63 TestTransaction t2; local
64 t2.Init("Foo: 1\r\nbar: 23", "HTTP/1.1 200 OK\nVary: *\n\n");
65 EXPECT_FALSE(v.Init(t2.request, *t2.response.get()));
/external/chromium_org/third_party/boringssl/src/crypto/dh/
H A Dcheck.c104 BIGNUM *t1 = NULL, *t2 = NULL; local
116 t2 = BN_CTX_get(ctx);
117 if (t2 == NULL) {
139 if (!BN_div(t1, t2, dh->p, dh->q, ctx)) {
142 if (!BN_is_one(t2)) {
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-utf-private.hh68 unsigned int t1, t2; local
71 (t2 = text[1] - 0x80u) <= 0x3Fu))
73 c = ((c&0xFu)<<12) | (t1<<6) | t2;
83 unsigned int t1, t2, t3; local
86 (t2 = text[1] - 0x80u) <= 0x3Fu &&
89 c = ((c&0x7u)<<18) | (t1<<12) | (t2<<6) | t3;
/external/chromium_org/third_party/openmax_dl/dl/sp/src/x86/
H A Dx86SP_FFT_CToC_FC32_Fwd_Radix4_fs.c37 OMX_FC32 t2; local
48 // CADD t2, out1, out3
49 t2.Re = out1[0] + out3[0];
50 t2.Im = out1[n] + out3[n];
56 // CADD out0, t0, t2
57 out0[0] = t0.Re + t2.Re;
58 out0[n] = t0.Im + t2.Im;
60 // CSUB out2, t0, t2
61 out2[0] = t0.Re - t2.Re;
62 out2[n] = t0.Im - t2
[all...]
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsLine.h23 static SkDLine SubDivide(const SkPoint a[2], double t1, double t2) { argument
26 return line.subDivide(t1, t2);
39 SkDLine subDivide(double t1, double t2) const;
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-binop-nosse2.js155 function t2(a, b) {return a/b} function
156 assertEquals(t2(1,2), 1/2);
157 assertEquals(t2(null,2), 0/2);
158 assertEquals(t2(null,-2), 0/-2);
159 assertEquals(t2(2,null), 2/0);
160 assertEquals(t2(-2,null), -2/0);
161 assertEquals(t2(1,2.4), 1/2.4);
162 assertEquals(t2(1.3,2.4), 1.3/2.4);
163 assertEquals(t2(null,2.4), 0/2.4);
164 assertEquals(t2(1.
[all...]
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
H A Dp7-0x-fixits.cpp22 struct {T t;} t2 = {700}; local
/external/clang/test/CXX/temp/temp.param/
H A Dp3.cpp25 ::T t2 = ::i; // global namespace members T and i \ local
/external/clang/test/CodeGen/
H A Dasm_arm64.c12 long t2() function
/external/clang/test/CodeGenCXX/
H A Dbitfield-layout.cpp13 } t2; variable in typeref:union:Test2
/external/clang/test/Sema/
H A Dattr-cleanup.c29 void t2() function
H A Dms-inline-asm.c54 int t2(int *arr, int i) { function

Completed in 669 milliseconds

1234567891011>>