OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Mtx
(Results
1 - 3
of
3
) sorted by null
/external/compiler-rt/test/tsan/
race_on_mutex2.c
13
pthread_mutex_t
Mtx
;
14
pthread_mutex_init(&
Mtx
, 0);
16
pthread_create(&t, 0, Thread, &
Mtx
);
18
pthread_mutex_destroy(&
Mtx
);
race_on_mutex.c
4
pthread_mutex_t
Mtx
;
13
pthread_mutex_lock(&
Mtx
);
15
pthread_mutex_unlock(&
Mtx
);
23
pthread_mutex_init(&
Mtx
, 0);
24
pthread_mutex_lock(&
Mtx
);
26
pthread_mutex_unlock(&
Mtx
);
38
pthread_mutex_destroy(&
Mtx
);
/external/eigen/unsupported/test/
cxx11_tensor_morphing.cpp
131
typedef Matrix<float, Dynamic, Dynamic, DataLayout>
Mtx
;
132
Mtx
m1(7,7);
133
Mtx
m2(3,3);
137
Mtx
m3 = m1.block(1, 2, 3, 3) * m2.block(0, 2, 3, 1);
151
Map<
Mtx
> res(tensor3.data(), 3, 1);
Completed in 76 milliseconds