HomeSort by relevance Sort by last modified time
    Searched defs:t1 (Results 226 - 250 of 1682) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.class/
try_lock.pass.cpp 39 time_point t1 = Clock::now(); local
41 ns d = t1 - t0 - ms(250);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.mutex.requirements/thread.mutex.requirements.mutex/thread.mutex.recursive/
lock.pass.cpp 37 time_point t1 = Clock::now(); local
41 ns d = t1 - t0 - ms(250);
try_lock.pass.cpp 39 time_point t1 = Clock::now(); local
43 ns d = t1 - t0 - ms(250);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.mutex.requirements/thread.shared_mutex.requirements/thread.shared_mutex.class/
try_lock.pass.cpp 40 time_point t1 = Clock::now(); local
42 ns d = t1 - t0 - ms(250);
try_lock_shared.pass.cpp 43 time_point t1 = Clock::now(); local
45 ns d = t1 - t0 - ms(250);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/
try_lock.pass.cpp 40 time_point t1 = Clock::now(); local
42 ns d = t1 - t0 - ms(250);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.class/
lock.pass.cpp 37 time_point t1 = Clock::now(); local
39 ns d = t1 - t0 - ms(250);
try_lock.pass.cpp 39 time_point t1 = Clock::now(); local
41 ns d = t1 - t0 - ms(250);
try_lock_for.pass.cpp 36 time_point t1 = Clock::now(); local
38 ns d = t1 - t0 - ms(250);
46 time_point t1 = Clock::now();
47 ns d = t1 - t0 - ms(250);
try_lock_until.pass.cpp 36 time_point t1 = Clock::now(); local
38 ns d = t1 - t0 - ms(250);
46 time_point t1 = Clock::now();
47 ns d = t1 - t0 - ms(250);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.mutex.requirements/thread.timedmutex.requirements/thread.timedmutex.recursive/
lock.pass.cpp 37 time_point t1 = Clock::now(); local
41 ns d = t1 - t0 - ms(250);
try_lock.pass.cpp 39 time_point t1 = Clock::now(); local
43 ns d = t1 - t0 - ms(250);
try_lock_for.pass.cpp 36 time_point t1 = Clock::now(); local
40 ns d = t1 - t0 - ms(250);
48 time_point t1 = Clock::now();
49 ns d = t1 - t0 - ms(250);
try_lock_until.pass.cpp 36 time_point t1 = Clock::now(); local
40 ns d = t1 - t0 - ms(250);
48 time_point t1 = Clock::now();
49 ns d = t1 - t0 - ms(250);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.threads/thread.thread.class/thread.thread.assign/
copy.fail.cpp 48 std::thread t1; local
49 t1 = t0;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.threads/thread.thread.class/thread.thread.constr/
copy.fail.cpp 59 std::thread t1 = t0; local
60 assert(t1.get_id() == id);
62 t1.join();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.assign/
convert_copy.pass.cpp 40 typedef std::tuple<long long> T1;
42 T1 t1; local
43 t1 = t0;
44 assert(std::get<0>(t1) == 2);
48 typedef std::tuple<long long, int> T1;
50 T1 t1; local
51 t1 = t0;
52 assert(std::get<0>(t1) == 2)
59 T1 t1; local
    [all...]
move_pair.pass.cpp 43 typedef std::tuple<long long, std::unique_ptr<B>> T1;
45 T1 t1; local
46 t1 = std::move(t0);
47 assert(std::get<0>(t1) == 2);
48 assert(std::get<1>(t1)->id_ == 3);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
move_pair.pass.cpp 42 typedef std::tuple<long long, std::unique_ptr<B>> T1;
44 T1 t1 = std::move(t0); local
45 assert(std::get<0>(t1) == 2);
46 assert(std::get<1>(t1)->id_ == 3);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.elem/
tuple.by.type.fail.cpp 18 std::tuple<long, long, char, std::string, char, UserType, char> t1; local
19 (void)std::get<int>(t1); // expected-error@tuple:* {{type not found}}
20 (void)std::get<long>(t1); // expected-note {{requested here}}
21 (void)std::get<char>(t1); // expected-note {{requested here}}
tuple.by.type.pass.cpp 25 auto t1 = std::tuple<int, std::string, cf> { 42, "Hi", { 1,2 }}; local
26 assert ( std::get<int>(t1) == 42 ); // find at the beginning
27 assert ( std::get<std::string>(t1) == "Hi" ); // find in the middle
28 assert ( std::get<cf>(t1).real() == 1 ); // find at the end
29 assert ( std::get<cf>(t1).imag() == 2 );
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/pairs/pair.astuple/
pairs.by.type.pass.cpp 24 auto t1 = std::make_pair<int, cf> ( 42, { 1,2 } ); local
25 assert ( std::get<int>(t1) == 42 );
26 assert ( std::get<cf>(t1).real() == 1 );
27 assert ( std::get<cf>(t1).imag() == 2 );
  /system/bt/osi/test/
time_test.cc 40 uint32_t t1 = time_get_os_boottime_ms();
41 ASSERT_TRUE(t1 > 0);
49 uint64_t t1 = time_get_os_boottime_us(); local
50 ASSERT_TRUE(t1 > 0);
58 uint32_t t1 = time_get_os_boottime_ms(); local
60 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS);
68 uint64_t t1 = time_get_os_boottime_us(); local
70 ASSERT_TRUE((t2 - t1) < TEST_TIME_DELTA_UPPER_BOUND_MS * 1000);
85 uint32_t t1 = time_get_os_boottime_ms(); local
90 ASSERT_TRUE((t2 - t1) >= TEST_TIME_SLEEP_MS)
106 uint64_t t1 = time_get_os_boottime_us(); local
120 uint64_t t1 = time_gettimeofday_us(); local
129 uint64_t t1 = time_gettimeofday_us(); local
146 uint64_t t1 = time_gettimeofday_us(); local
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/m68hc11/
opers12.s 90 t1: label
93 leax t2-t1,y
  /art/test/1909-per-agent-tls/src/art/
Test1909.java 88 ThreadWaiter t1 = new ThreadWaiter(); local
94 checkEq(0, t1.getTLS(e1));
96 checkEq(0, t1.getTLS(e2));
101 checkEq(0, t1.getTLS(e1));
103 checkEq(0, t1.getTLS(e2));
106 t1.setTLS(e1, 2);
108 checkEq(2, t1.getTLS(e1));
110 checkEq(0, t1.getTLS(e2));
115 checkEq(2, t1.getTLS(e1));
117 checkEq(0, t1.getTLS(e2))
    [all...]

Completed in 403 milliseconds

1 2 3 4 5 6 7 8 91011>>