Home
last modified time | relevance | path

Searched refs:mtx1 (Results 1 – 5 of 5) sorted by relevance

/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_timedwait/
D2-5.c66 pthread_mutex_t mtx1, mtx2; /* The two mutex m1 and m2 */ member
88 ret = pthread_mutex_lock(&(data.mtx1)); in threaded()
98 ret = pthread_cond_wait(&(data.cnd), &(data.mtx1)); in threaded()
100 ret = pthread_cond_timedwait(&(data.cnd), &(data.mtx1), in threaded()
108 ret = pthread_mutex_trylock(&(data.mtx1)); in threaded()
112 ret = pthread_mutex_unlock(&(data.mtx1)); in threaded()
117 ret = pthread_mutex_unlock(&(data.mtx1)); in threaded()
121 ret = pthread_mutex_unlock(&(data.mtx1)); in threaded()
268 ret = pthread_mutex_init(&(data.mtx1), &ma); in main()
312 ret = pthread_mutex_lock(&(data.mtx1)); in main()
[all …]
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_destroy/
D2-1.c202 pthread_mutex_t mtx1; member
218 ret = pthread_mutex_lock(&td->mtx1); in child()
240 ret = pthread_cond_timedwait(&td->cnd, &td->mtx1, &ts); in child()
242 ret = pthread_cond_wait(&td->cnd, &td->mtx1); in child()
257 ret = pthread_mutex_unlock(&td->mtx1); in child()
503 ret = pthread_mutex_init(&td->mtx1, &ma); in main()
564 ret = pthread_mutex_lock(&td->mtx1); in main()
571 ret = pthread_mutex_unlock(&td->mtx1); in main()
578 ret = pthread_mutex_lock(&td->mtx1); in main()
606 ret = pthread_mutex_unlock(&td->mtx1); in main()
[all …]
/third_party/skia/third_party/externals/spirv-cross/reference/shaders-msl/comp/
Dmat3-row-maj-read-write-const.comp16 …float3x3 mtx1 = mtx_cm * float3x3(float3(4.0, -3.0, 1.0), float3(-7.0, 7.0, -7.0), float3(-5.0, 6.…
17 if ((isunordered(mtx1[0].x, 0.0) || mtx1[0].x != 0.0))
/third_party/skia/third_party/externals/spirv-cross/shaders-msl/comp/
Dmat3-row-maj-read-write-const.comp12 mat3 mtx1 = mtx_cm * mat3(vec3(4.0, -3.0, 1.0), vec3(-7.0, 7.0, -7.0), vec3(-5.0, 6.0, -8.0));
13 if (mtx1[0][0] != 0.0)
/third_party/skia/gm/
Druntimeintrinsics.cpp449 std::array<float, N*N> mtx1, in plot_matrix_comp_mult() argument
463 builder.uniform("m1") = mtx1; in plot_matrix_comp_mult()