HomeSort by relevance Sort by last modified time
    Searched defs:t1 (Results 76 - 100 of 793) sorted by null

1 2 34 5 6 7 8 91011>>

  /cts/suite/cts/deviceTests/opengl/jni/reference/
GLReference.cpp 46 double t1 = GLUtils::currentTimeMillis(); local
49 updates[i] = t1 - t0;
50 renders[i] = t2 - t1;
  /external/chromium_org/v8/test/webkit/
closure-inside-extra-arg-call.js 49 function t1() { function
54 t1();
  /external/clang/test/CodeGen/
ms-inline-asm-64.c 4 void t1() { function
7 // CHECK: t1
ms-inline-asm.c 4 void t1() { function
5 // CHECK: @t1
  /external/clang/test/PCH/Inputs/
namespaces.h 4 typedef int t1; typedef in namespace:N1
16 typedef float t1; typedef in namespace:N2
  /external/clang/test/Parser/
ms-inline-asm.c 7 void t1(void) { M } function
  /external/compiler-rt/lib/tsan/lit_tests/
load_shared_lib.cc 23 pthread_t t1, t2; local
24 pthread_create(&t1, NULL, access_callback, NULL);
26 pthread_join(t1, NULL);
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_string.cc 44 ScopedThread t1, t2; local
45 t1.Memcpy(data, data1, 10);
56 ScopedThread t1, t2; local
57 t1.Memcpy(data+5, data1, 1);
66 ScopedThread t1, t2; local
67 t1.Memcpy(data, data1, 10);
74 ScopedThread t1, t2; local
75 t1.Memcpy(data, data1, 10);
81 ScopedThread t1, t2; local
82 t1.Memset(data, 1, 10)
    [all...]
tsan_test.cc 21 ScopedThread t1, t2; local
23 t1.Write1(l);
tsan_thread.cc 21 ScopedThread t1; local
22 t1.Write1(l);
28 ScopedThread t1(true);
30 t1.Write1(l);
34 ScopedThread t1; local
36 t1.Write1(l);
37 t1.Detach();
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_import.c 28 void *prime, *b, *t1, *t2; local
31 if ((err = mp_init_multi(&prime, &b, &t1, &t2, NULL)) != CRYPT_OK) {
40 if ((err = mp_sqr(key->pubkey.y, t1)) != CRYPT_OK) { goto error; }
48 if ((err = mp_sub(t1, t2, t1)) != CRYPT_OK) { goto error; }
51 if ((err = mp_add(t1, key->pubkey.x, t1)) != CRYPT_OK) { goto error; }
52 if ((err = mp_add(t1, key->pubkey.x, t1)) != CRYPT_OK) { goto error; }
53 if ((err = mp_add(t1, key->pubkey.x, t1)) != CRYPT_OK) { goto error;
    [all...]
  /external/dropbear/libtommath/etc/
2kprime.c 13 clock_t t1; local
25 t1 = clock();
35 if (clock() - t1 > CLOCKS_PER_SEC) {
37 // sleep((clock() - t1 + CLOCKS_PER_SEC/2)/CLOCKS_PER_SEC);
38 t1 = clock();
  /external/qemu/distrib/sdl-1.2.15/test/
testtimer.c 30 SDL_TimerID t1, t2, t3; local
63 t1 = SDL_AddTimer(100, callback, (void*)1);
64 if(!t1)
78 SDL_RemoveTimer(t1);
  /external/valgrind/main/coregrind/
m_vki.c 104 { struct __sigaction t1; local
108 vg_assert(sizeof(t1.sa_handler) == sizeof(t2.ksa_handler));
109 vg_assert(sizeof(t1.sa_tramp) == sizeof(t2.sa_tramp));
110 vg_assert(sizeof(t1.sa_mask) == sizeof(t2.sa_mask));
111 vg_assert(sizeof(t1.sa_flags) == sizeof(t2.sa_flags));
116 vg_assert(offsetof(t1,sa_handler) == offsetof(t2.ksa_handler));
117 vg_assert(offsetof(t1.sa_tramp) == offsetof(t2.sa_tramp));
118 vg_assert(offsetof(t1.sa_mask) == offsetof(t2.sa_mask));
119 vg_assert(offsetof(t1.sa_flags) == offsetof(t2.sa_flags));
  /external/valgrind/main/helgrind/tests/
hg03_inherit.c 13 static void *t1(void *v) function
44 pthread_create(&a, NULL, t1, (void *)&shared[0]);
  /libcore/luni/src/test/java/libcore/java/sql/
OldTimestampTest.java 29 Timestamp t1 = new Timestamp(Long.MIN_VALUE); local
30 assertEquals("292278994-08-17 07:12:55.192", t1.toString());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.cons/
assign_move.pass.cpp 30 T t1[] = {10, 11, 12, 13}; local
33 C c1(I(std::begin(t1)), I(std::end(t1)), A(10));
47 T t1[] = {10, 11, 12, 13}; local
50 C c1(I(std::begin(t1)), I(std::end(t1)), A(11));
64 T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
67 C c1(I(std::begin(t1)), I(std::end(t1)), A(10));
81 T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9} local
99 T t1[] = {10, 11, 12, 13}; local
116 T t1[] = {10, 11, 12, 13}; local
133 T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
150 T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
168 T t1[] = {10, 11, 12, 13}; local
185 T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/
remove_if.pass.cpp 30 const T t1[] = {0, 5, 5, 0, 0, 0, 5}; local
32 C c1(std::begin(t1), std::end(t1));
40 const T t1[] = {0, 0, 0, 0}; local
41 C c1(std::begin(t1), std::end(t1));
49 const T t1[] = {5, 5, 5}; local
51 C c1(std::begin(t1), std::end(t1));
67 const T t1[] = {5, 5, 5, 0} local
78 const T t1[] = {0, 5, 5, 0, 0, 0, 5}; local
88 const T t1[] = {0, 0, 0, 0}; local
97 const T t1[] = {5, 5, 5}; local
115 const T t1[] = {5, 5, 5, 0}; local
    [all...]
splice_after_flist.pass.cpp 21 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7}; variable
23 const int size_t1 = std::end(t1) - std::begin(t1);
33 assert(*i == t1[n1]);
37 assert(*i == t1[n1]);
50 C c1(std::begin(t1), std::end(t1));
66 C c1(std::begin(t1), std::end(t1));
unique_pred.pass.cpp 30 const T t1[] = {0, 5, 5, 0, 0, 0, 5}; local
32 C c1(std::begin(t1), std::end(t1));
40 const T t1[] = {0, 0, 0, 0}; local
42 C c1(std::begin(t1), std::end(t1));
50 const T t1[] = {5, 5, 5}; local
52 C c1(std::begin(t1), std::end(t1));
68 const T t1[] = {5, 5, 5, 0} local
79 const T t1[] = {0, 5, 5, 0, 0, 0, 5}; local
89 const T t1[] = {0, 0, 0, 0}; local
99 const T t1[] = {5, 5, 5}; local
117 const T t1[] = {5, 5, 5, 0}; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/
notify_all_at_thread_exit.pass.cpp 40 Clock::time_point t1 = Clock::now(); local
41 assert(t1-t0 > ms(250));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.guard/
adopt_lock.pass.cpp 32 time_point t1; local
36 t1 = Clock::now();
38 ns d = t1 - t0 - ms(250);
mutex.pass.cpp 32 time_point t1; local
35 t1 = Clock::now();
37 ns d = t1 - t0 - ms(250);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/
mutex.pass.cpp 32 time_point t1; local
35 t1 = Clock::now();
37 ns d = t1 - t0 - ms(250);
mutex_duration.pass.cpp 35 time_point t1 = Clock::now(); local
36 ns d = t1 - t0 - ms(250);
45 time_point t1 = Clock::now();
46 ns d = t1 - t0 - ms(250);

Completed in 471 milliseconds

1 2 34 5 6 7 8 91011>>