HomeSort by relevance Sort by last modified time
    Searched refs:mtx (Results 101 - 125 of 170) sorted by null

1 2 3 45 6 7

  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_mutex_init/
stress.c 95 pthread_mutex_t mtx; local
109 pmtx = &mtx;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_deadlock_detector1.cc 37 SpinMutex mtx; member in struct:__sanitizer::DD
109 SpinMutexLock lk(&mtx);
164 SpinMutexLock lk(&mtx);
181 SpinMutexLock lk(&mtx);
  /external/f2fs-tools/tools/sg_write_buffer/include/
freebsd_nvme_ioctl.h 146 struct mtx * driver_lock;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_broadcast/
4-2.c 68 pthread_mutex_t mtx; member in struct:__anon28584
135 ret = pthread_mutex_lock(&(data.mtx));
140 ret = pthread_cond_wait(&(data.cnd), &(data.mtx));
148 ret = pthread_mutex_unlock(&(data.mtx));
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_timedwait/
4-3.c 73 pthread_mutex_t mtx; member in struct:__anon28597
150 ret = pthread_mutex_lock(&(data.mtx));
169 pthread_cond_timedwait(&(data.cnd), &(data.mtx),
184 ret = pthread_mutex_unlock(&(data.mtx));
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_wait/
4-1.c 101 pthread_mutex_t mtx; member in struct:__anon28602
173 ret = pthread_mutex_lock(&(data.mtx));
179 ret = pthread_cond_wait(&(data.cnd), &(data.mtx));
194 ret = pthread_mutex_unlock(&(data.mtx));
  /external/compiler-rt/lib/tsan/rtl/
tsan_sync.cc 23 : mtx(MutexTypeSyncVar, StatMtxSyncVar) {
226 s->mtx.Lock();
228 s->mtx.ReadLock();
250 mys->mtx.Lock();
252 mys->mtx.ReadLock();
tsan_rtl_mutex.cc 81 s->mtx.Unlock();
92 s->mtx.Unlock();
111 s->mtx.Unlock();
128 s->mtx.Unlock();
179 s->mtx.Unlock();
221 s->mtx.Unlock();
257 s->mtx.ReadUnlock();
288 s->mtx.Unlock();
336 s->mtx.Unlock();
351 s->mtx.Unlock()
    [all...]
tsan_mman.cc 67 Mutex mtx; member in struct:__tsan::GlobalProc
71 : mtx(MutexTypeGlobalProc, StatMtxGlobalProc)
100 gp->mtx.Lock();
110 gp->mtx.Unlock();
tsan_sync.h 32 Mutex mtx; member in struct:__tsan::SyncVar
46 // with the mtx. This reduces contention for hot sync objects.
tsan_interface_ann.cc 76 Mutex mtx; member in struct:__tsan::DynamicAnnContext
81 : mtx(MutexTypeAnnotations, StatMtxAnnotations) {
150 ReadLock lock(&dyn_ann_ctx->mtx);
183 Lock lock(&dyn_ann_ctx->mtx);
305 Lock lock(&dyn_ann_ctx->mtx);
352 Lock lock(&dyn_ann_ctx->mtx);
360 Lock lock(&dyn_ann_ctx->mtx);
  /external/adhd/cras/src/server/
cras_fmt_conv.c 385 static void surround51_to_stereo_downmix_mtx(float **mtx,
389 mtx[STEREO_L][layout[CRAS_CH_FC]] = 0.707;
390 mtx[STEREO_R][layout[CRAS_CH_FC]] = 0.707;
393 mtx[STEREO_L][layout[CRAS_CH_FL]] = 1.0;
394 mtx[STEREO_R][layout[CRAS_CH_FR]] = 1.0;
397 mtx[STEREO_L][layout[CRAS_CH_SL]] = 1.0;
398 mtx[STEREO_R][layout[CRAS_CH_SR]] = 1.0;
402 mtx[STEREO_L][layout[CRAS_CH_RL]] = 0.866;
403 mtx[STEREO_R][layout[CRAS_CH_RL]] = 0.5;
404 mtx[STEREO_R][layout[CRAS_CH_RR]] = 0.866
    [all...]
  /external/webp/src/dsp/
enc_mips32.c 192 const VP8Matrix* const mtx) {
199 const uint16_t* ppsharpen = &mtx->sharpen_[0];
200 const uint32_t* ppzthresh = &mtx->zthresh_[0];
201 const uint16_t* ppq = &mtx->q_[0];
202 const uint16_t* ppiq = &mtx->iq_[0];
203 const uint32_t* ppbias = &mtx->bias_[0];
243 const VP8Matrix* const mtx) {
245 nz = QuantizeBlock_MIPS32(in + 0 * 16, out + 0 * 16, mtx) << 0;
246 nz |= QuantizeBlock_MIPS32(in + 1 * 16, out + 1 * 16, mtx) << 1;
    [all...]
enc_neon.c 823 const VP8Matrix* const mtx, int offset) {
824 const uint16x8_t sharp = vld1q_u16(&mtx->sharpen_[offset]);
825 const uint16x8_t q = vld1q_u16(&mtx->q_[offset])
    [all...]
enc.c 654 const VP8Matrix* const mtx) {
660 const uint32_t coeff = (sign ? -in[j] : in[j]) + mtx->sharpen_[j];
661 if (coeff > mtx->zthresh_[j]) {
662 const uint32_t Q = mtx->q_[j];
663 const uint32_t iQ = mtx->iq_[j];
664 const uint32_t B = mtx->bias_[j];
681 const VP8Matrix* const mtx) {
683 nz = VP8EncQuantizeBlock(in + 0 * 16, out + 0 * 16, mtx) << 0;
684 nz |= VP8EncQuantizeBlock(in + 1 * 16, out + 1 * 16, mtx) << 1;
  /external/deqp/framework/common/
tcuMatrix.hpp 86 Vector<T, Rows> operator* (const Matrix<T, Rows, Cols>& mtx, const Vector<T, Cols>& vec);
90 Vector<T, Cols> operator* (const Vector<T, Rows>& vec, const Matrix<T, Rows, Cols>& mtx);
461 Vector<T, Rows> operator* (const Matrix<T, Rows, Cols>& mtx, const Vector<T, Cols>& vec)
468 v += mtx(row,col) * vec.m_data[col];
476 Vector<T, Cols> operator* (const Vector<T, Rows>& vec, const Matrix<T, Rows, Cols>& mtx)
483 v += mtx(row,col) * vec.m_data[row];
511 Matrix<T, Rows, Cols> operator+ (const Matrix<T, Rows, Cols>& mtx, T scalar)
516 res(row, col) = mtx(row, col) + scalar;
521 Matrix<T, Rows, Cols> operator- (const Matrix<T, Rows, Cols>& mtx, T scalar)
526 res(row, col) = mtx(row, col) - scalar
    [all...]
  /external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
EASLib.c 122 pthread_mutex_t mtx; variable
350 pthread_mutex_lock(&mtx);
362 pthread_mutex_unlock(&mtx);
379 pthread_mutex_unlock(&mtx);
409 pthread_mutex_lock(&mtx);
413 pthread_cond_wait(&cond, &mtx);
420 pthread_mutex_unlock(&mtx);
430 pthread_mutex_lock(&mtx);
434 pthread_cond_wait(&cond, &mtx);
440 pthread_mutex_unlock(&mtx);
    [all...]
  /frameworks/layoutlib/bridge/src/android/graphics/
Region_Delegate.java 238 AffineTransform mtx = new AffineTransform(); local
239 mtx.translate(dx, dy);
240 targetRegionDelegate.mArea.transform(mtx);
260 AffineTransform mtx = new AffineTransform(); local
261 mtx.scale(scale, scale);
262 targetRegionDelegate.mArea.transform(mtx);
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_init/
stress.c 92 pthread_mutex_t mtx, *pmtx; local
98 pmtx = &mtx;
  /hardware/libhardware/tests/hwc/
test-arrows.c 48 static GLfloat mtx[16]; variable
96 matrix_init_ortho(mtx, w, h);
134 glUniformMatrix4fv(uTransform, 1, 0, mtx);
  /external/pdfium/third_party/lcms/include/
lcms2_plugin.h 638 typedef void (* _cmsDestroyMutexFnPtrType)(cmsContext ContextID, void* mtx);
639 typedef cmsBool (* _cmsLockMutexFnPtrType)(cmsContext ContextID, void* mtx);
640 typedef void (* _cmsUnlockMutexFnPtrType)(cmsContext ContextID, void* mtx);
653 CMSAPI void CMSEXPORT _cmsDestroyMutex(cmsContext ContextID, void* mtx);
654 CMSAPI cmsBool CMSEXPORT _cmsLockMutex(cmsContext ContextID, void* mtx);
655 CMSAPI void CMSEXPORT _cmsUnlockMutex(cmsContext ContextID, void* mtx);
  /external/adhd/cras/src/common/
cras_audio_format.h 147 void cras_channel_conv_matrix_destroy(float **mtx, size_t out_ch);
  /hardware/interfaces/radio/1.0/vts/functional/
sap_hidl_hal_utils.h 100 std::mutex mtx; member in class:SapHidlTest
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/
ml_math_func.h 93 unsigned short inv_orientation_matrix_to_scalar(const signed char *mtx);
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/
ml_math_func.h 93 unsigned short inv_orientation_matrix_to_scalar(const signed char *mtx);

Completed in 1395 milliseconds

1 2 3 45 6 7