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

1 2 3 4 5

  /frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
matrix_helpers.h 13 float m22, float m23, float m30, float m31, float m32,
17 matrix << m00, m01, m02, m03, m10, m11, m12, m13, m20, m21, m22, m23, m30, local
  /external/swiftshader/src/Renderer/
Matrix.hpp 31 float m21, float m22, float m23,
34 float m21, float m22, float m23, float m24,
44 static Matrix diag(float m11, float m22, float m33, float m44);
80 float m21, float m22);
82 float m21, float m22, float m23,
85 float m21, float m22, float m23, float m24,
150 float m21, float m22, float m23,
156 M(2, 1) = m21; M(2, 2) = m22; M(2, 3) = m23; M(2, 4) = 0;
162 float m21, float m22, float m23, float m24,
169 M(2, 1) = m21; M(2, 2) = m22; M(2, 3) = m23; M(2, 4) = m24
    [all...]
Matrix.cpp 22 Matrix Matrix::diag(float m11, float m22, float m33, float m44)
25 0, m22, 0, 0,
263 float m21, float m22)
265 return m11 * m22 - m12 * m21;
269 float m21, float m22, float m23,
272 return m11 * (m22 * m33 - m32 * m23) -
274 m31 * (m12 * m23 - m22 * m13);
278 float m21, float m22, float m23, float m24,
289 return m11 * (m22 * M3344 - m32 * M2344 + m42 * M2334) -
291 m31 * (m12 * M2344 - m22 * M1344 + m42 * M1324)
    [all...]
  /external/autotest/client/deps/webgl_mpd/src/resources/
J3DIMath.js 158 this.$matrix.m22 = matrix.m22;
183 this.$matrix.m22 = matrix[5];
207 this.$matrix.m21, this.$matrix.m22, this.$matrix.m23, this.$matrix.m24,
238 J3DIMatrix4.setUniformArray[5] = this.$matrix.m22;
264 this.$matrix.m22 = 1;
330 this.$matrix.m22 /= det;
405 matrix.$matrix.m22 = y;
468 mat.$matrix.m22 = 1 - 2 * sinA2;
481 mat.$matrix.m22 = 1
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusmatrix.h 51 Matrix(REAL m11, REAL m12, REAL m21, REAL m22, REAL dx, REAL dy):
55 m11, m12, m21, m22, dx, dy,
183 Status SetElements(REAL m11, REAL m12, REAL m21, REAL m22,
187 nativeMatrix, m11, m12, m21, m22, dx, dy));
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
frontend.h 199 vZ = _mm_mul_ps(vZ, _mm_set1_ps(vpMatrix.m22));
211 simdscalar m22 = _simd_load1_ps(&vpMatrices.m22[0]); local
218 v[i].z = _simd_fmadd_ps(v[i].z, m22, m32);
231 simdscalar m22 = _simd_i32gather_ps(&vpMatrices.m22[0], vViewportIdx, 4); local
238 v[i].z = _simd_fmadd_ps(v[i].z, m22, m32);
state.h 848 float m22; member in struct:SWR_VIEWPORT_MATRIX
861 float m22[KNOB_NUM_VIEWPORTS_SCISSORS]; member in struct:SWR_VIEWPORT_MATRICES
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d2d1_1helper.h 50 FLOAT m21, FLOAT m22, FLOAT m23, FLOAT m24,
55 _21 = m21; _22 = m22; _23 = m23; _24 = m24;
  /external/swiftshader/src/OpenGL/compiler/
Intermediate.cpp 1249 float m20, float m21, float m22)
1251 return m00 * determinant2(m11, m12, m21, m22) -
1252 m10 * determinant2(m01, m02, m21, m22) +
1342 float m22 = unionArray[8].getFConst(); local
1366 float m22 = unionArray[10].getFConst(); local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen7_viewport_state.c 71 vp[i].viewport.m22 = scale[2];
brw_structs.h 620 float m22; member in struct:brw_sf_viewport::__anon30501
638 float m22; member in struct:gen6_sf_viewport
650 float m22; member in struct:gen7_sf_clip_viewport::__anon30503
gen6_viewport_state.c 159 sfv[i].m22 = scale[2];
brw_sf_state.c 75 sfv->viewport.m22 = scale[2];
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
trsMatrix.cpp 43 double m22; local
  /frameworks/native/libs/math/include/math/
mat3.h 237 G m20, H m21, I m22);
305 G m20, H m21, I m22) {
308 m_value[2] = col_type(m20, m21, m22);
mat4.h 240 I m20, J m21, K m22, L m23,
353 I m20, J m21, K m22, L m23,
357 m_value[2] = col_type(m20, m21, m22, m23);
  /cts/hostsidetests/compilation/app/src/android/cts/compilation/
CompilationTargetActivity.java 117 case 22: return m22();
321 public int m22() { return new Random(22).nextInt(); } method in class:CompilationTargetActivity
  /external/deqp/modules/gles2/scripts/
genutil.py 662 def __init__(self, m00, m01, m02, m10, m11, m12, m20, m21, m22):
665 m02, m12, m22])
668 def __init__(self, m00, m01, m02, m03, m10, m11, m12, m13, m20, m21, m22, m23, m30, m31, m32, m33):
671 m02, m12, m22, m32,
  /packages/apps/Email/tests/src/com/android/email/provider/
AttachmentProviderTests.java 193 Message m22 = createMessage(mMockContext, b2); local
212 createAttachment(a1, m22.mId, null);
213 createAttachment(a1, m22.mId, "file:///path/to/file2");
  /external/dng_sdk/source/
dng_reference.cpp 1307 real32 m22 = (real32) cameraToRGB [2] [2]; local
1322 real32 b = m20 * A + m21 * B + m22 * C;
1367 real32 m22 = (real32) cameraToRGB [2] [2]; local
1385 real32 b = m20 * A + m21 * B + m22 * C + m23 * D;
1681 real32 m22 = (real32) matrix [2] [2]; local
    [all...]
  /external/deqp/modules/gles3/scripts/
genutil.py 809 def __init__(self, m00, m01, m02, m10, m11, m12, m20, m21, m22):
812 m02, m12, m22])
815 def __init__(self, m00, m01, m02, m03, m10, m11, m12, m13, m20, m21, m22, m23, m30, m31, m32, m33):
818 m02, m12, m22, m32,
  /external/deqp/modules/gles31/scripts/
genutil.py 811 def __init__(self, m00, m01, m02, m10, m11, m12, m20, m21, m22):
814 m02, m12, m22])
817 def __init__(self, m00, m01, m02, m03, m10, m11, m12, m13, m20, m21, m22, m23, m30, m31, m32, m33):
820 m02, m12, m22, m32,
  /external/eigen/Eigen/src/Geometry/
Transform.h 760 other.m12(), other.m22(), other.dy();
763 other.m12(), other.m22(), other.dy(),
    [all...]
  /external/pdfium/core/fxge/win32/
fx_win32_dwrite.cpp 249 transform.m22 = pMatrix->d;
  /external/skia/include/core/
SkMatrix44.h 335 SkMScalar m20, SkMScalar m21, SkMScalar m22);

Completed in 923 milliseconds

1 2 3 4 5