Home
last modified time | relevance | path

Searched refs:Mtx (Results 1 – 3 of 3) sorted by relevance

/external/compiler-rt/test/tsan/
Drace_on_mutex.c4 pthread_mutex_t Mtx; variable
13 pthread_mutex_lock(&Mtx); in Thread2()
15 pthread_mutex_unlock(&Mtx); in Thread2()
23 pthread_mutex_init(&Mtx, 0); in Thread1()
24 pthread_mutex_lock(&Mtx); in Thread1()
26 pthread_mutex_unlock(&Mtx); in Thread1()
38 pthread_mutex_destroy(&Mtx); in main()
Drace_on_mutex2.c13 pthread_mutex_t Mtx; in main() local
14 pthread_mutex_init(&Mtx, 0); in main()
16 pthread_create(&t, 0, Thread, &Mtx); in main()
18 pthread_mutex_destroy(&Mtx); in main()
/external/eigen/unsupported/test/
Dcxx11_tensor_morphing.cpp131 typedef Matrix<float, Dynamic, Dynamic, DataLayout> Mtx; in test_slice_in_expr() typedef
132 Mtx m1(7,7); in test_slice_in_expr()
133 Mtx m2(3,3); in test_slice_in_expr()
137 Mtx m3 = m1.block(1, 2, 3, 3) * m2.block(0, 2, 3, 1); in test_slice_in_expr()
151 Map<Mtx> res(tensor3.data(), 3, 1); in test_slice_in_expr()