HomeSort by relevance Sort by last modified time
    Searched refs:mtx (Results 1 - 25 of 28) sorted by null

1 2

  /external/llvm/include/llvm/Support/
Mutex.h 138 SmartMutex<mt_only>& mtx; member in class:llvm::sys::SmartScopedLock
141 SmartScopedLock(SmartMutex<mt_only>& m) : mtx(m) {
142 mtx.acquire();
146 mtx.release();
  /frameworks/native/libs/gui/tests/
SurfaceTextureClient_test.cpp 523 float mtx[16] = {}; local
528 mST->getTransformMatrix(mtx);
530 EXPECT_EQ(1.f, mtx[0]);
531 EXPECT_EQ(0.f, mtx[1]);
532 EXPECT_EQ(0.f, mtx[2]);
533 EXPECT_EQ(0.f, mtx[3]);
535 EXPECT_EQ(0.f, mtx[4]);
536 EXPECT_EQ(-1.f, mtx[5]);
537 EXPECT_EQ(0.f, mtx[6]);
538 EXPECT_EQ(0.f, mtx[7])
553 float mtx[16] = {}; local
584 float mtx[16] = {}; local
    [all...]
  /frameworks/base/graphics/java/android/graphics/
SurfaceTexture.java 215 * @param mtx the array into which the 4x4 matrix will be stored. The array must have exactly
218 public void getTransformMatrix(float[] mtx) {
219 // Note we intentionally don't check mtx for null, so this will result in a
221 if (mtx.length != 16) {
224 nativeGetTransformMatrix(mtx);
303 private native void nativeGetTransformMatrix(float[] mtx);
  /hardware/invensense/mlsdk/mllite/
accel.c 137 signed char *mtx = mldl_cfg->pdata->accel.orientation; local
178 data[ii] = ((long)tmp[0] * mtx[3 * ii] +
179 (long)tmp[1] * mtx[3 * ii + 1] +
180 (long)tmp[2] * mtx[3 * ii + 2]);
ml.c 112 unsigned short inv_orientation_matrix_to_scalar(const signed char *mtx);
    [all...]
  /external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_collision_shapes_CompoundCollisionShape.cpp 74 btMatrix3x3 mtx = btMatrix3x3(); local
75 btTransform trans = btTransform(mtx);
  /external/valgrind/main/drd/
drd.h 128 * and a lock on the mutex at address mtx is now held. Since DRD always inserts
134 #define ANNOTATE_CONDVAR_LOCK_WAIT(cv, mtx) do { } while(0)
161 #define ANNOTATE_PURE_HAPPENS_BEFORE_MUTEX(mtx) do { } while(0)
164 #define ANNOTATE_MUTEX_IS_USED_AS_CONDVAR(mtx) do { } while(0)
  /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/base/tools/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);
Canvas_Delegate.java 184 float[] mtx = Matrix_Delegate.getSkew(kx, ky); local
185 AffineTransform matrixTx = Matrix_Delegate.getAffineTransform(mtx);
945 final AffineTransform mtx = matrixDelegate.getAffineTransform(); local
    [all...]
Matrix_Delegate.java 786 private static void reset(float[] mtx) {
789 mtx[k] = ((i==j) ? 1 : 0);
    [all...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
PhysicsGhostObject.java 194 Matrix3f mtx = new Matrix3f(); local
195 getPhysicsRotationMatrix(objectId, mtx);
196 return mtx;
PhysicsRigidBody.java 228 Matrix3f mtx = new Matrix3f(); local
229 getPhysicsRotationMatrix(objectId, mtx);
230 return mtx;
  /external/webkit/Source/WebCore/rendering/
EllipsisBox.cpp 110 int mtx = tx + m_logicalWidth - m_markupBox->x(); local
112 if (m_markupBox->nodeAtPoint(request, result, x, y, mtx, mty, lineTop, lineBottom)) {
113 renderer()->updateHitTestResult(result, IntPoint(x - mtx, y - mty));
  /frameworks/base/core/jni/android/graphics/
SurfaceTexture.cpp 244 float* mtx = env->GetFloatArrayElements(jmtx, NULL); local
245 surfaceTexture->getTransformMatrix(mtx);
246 env->ReleaseFloatArrayElements(jmtx, mtx, 0);
  /external/webp/src/enc/
dsp_sse2.c 688 int n, const VP8Matrix* const mtx) {
701 const __m128i sharpen0 = _mm_loadu_si128((__m128i*)&mtx->sharpen_[0]);
702 const __m128i sharpen8 = _mm_loadu_si128((__m128i*)&mtx->sharpen_[8]);
703 const __m128i iq0 = _mm_loadu_si128((__m128i*)&mtx->iq_[0]);
704 const __m128i iq8 = _mm_loadu_si128((__m128i*)&mtx->iq_[8]);
705 const __m128i bias0 = _mm_loadu_si128((__m128i*)&mtx->bias_[0]);
706 const __m128i bias8 = _mm_loadu_si128((__m128i*)&mtx->bias_[8]);
707 const __m128i q0 = _mm_loadu_si128((__m128i*)&mtx->q_[0]);
708 const __m128i q8 = _mm_loadu_si128((__m128i*)&mtx->q_[8]);
709 const __m128i zthresh0 = _mm_loadu_si128((__m128i*)&mtx->zthresh_[0])
    [all...]
quant.c 422 const VP8Matrix* const mtx,
437 const int thresh = mtx->q_[1] * mtx->q_[1] / 4;
468 const int Q = mtx->q_[j];
469 const int iQ = mtx->iq_[j];
474 int coeff0 = (sign ? -in[j] : in[j]) + mtx->sharpen_[j];
566 in[j] = out[n] * mtx->q_[j];
dsp.c 629 int n, const VP8Matrix* const mtx) {
634 int coeff = (sign ? -in[j] : in[j]) + mtx->sharpen_[j];
636 if (coeff > mtx->zthresh_[j]) {
637 const int Q = mtx->q_[j];
638 const int iQ = mtx->iq_[j];
639 const int B = mtx->bias_[j];
vp8enci.h 486 int n, const VP8Matrix* const mtx);
  /frameworks/native/include/gui/
SurfaceTexture.h 117 void getTransformMatrix(float mtx[16]);
  /packages/apps/VideoEditor/src/com/android/videoeditor/util/
ImageUtils.java 201 final Matrix mtx = new Matrix(); local
202 mtx.postRotate(orientation);
205 scaledBmp.getWidth(), scaledBmp.getHeight(), mtx, true);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
GcSnapshot.java 643 AffineTransform mtx = getTransform(); local
645 layer.getGraphics().setTransform(mtx);
  /frameworks/native/libs/gui/
SurfaceTexture.cpp 522 void SurfaceTexture::getTransformMatrix(float mtx[16]) {
524 memcpy(mtx, mCurrentTransformMatrix, sizeof(mCurrentTransformMatrix));
  /external/chromium/third_party/libjingle/source/talk/base/
sigslot.h 288 lock_block(mt_policy *mtx)
289 : m_mutex(mtx)
    [all...]
  /prebuilts/sdk/12/
android.jar 

Completed in 486 milliseconds

1 2