Home
last modified time | relevance | path

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

/frameworks/native/libs/math/tests/
Dmat_test.cpp37 mat4 m0; in TEST_F() local
38 EXPECT_EQ(sizeof(m0), sizeof(float)*16); in TEST_F()
42 mat4 m0; in TEST_F() local
45 EXPECT_TRUE(m0 == m0); in TEST_F()
46 EXPECT_TRUE(m0 != m1); in TEST_F()
47 EXPECT_FALSE(m0 != m0); in TEST_F()
48 EXPECT_FALSE(m0 == m1); in TEST_F()
52 mat4 m0; in TEST_F() local
53 ASSERT_EQ(m0[0].x, 1); in TEST_F()
54 ASSERT_EQ(m0[0].y, 0); in TEST_F()
[all …]
/frameworks/av/include/media/
DInterpolator.h143 S m0, m1; in findY() local
146 m0 = low2 != this->end() in findY()
155 m0 = (sec0 + sec) * 0.5f; in findY()
166 m0 = constrainSlope(m0, maxSlope); in findY()
169 m0 = constrainSlope(m0, 3 * sec0); in findY()
177 m0 *= interval; in findY()
181 const S c1 = m0; in findY()
182 const S c2 = 3 * dy - 2 * m0 - m1; in findY()
183 const S c3 = m0 + m1 - 2 * dy; in findY()
193 return h00 * low->second + (h10 * m0 + h11 * m1) * interval + h01 * high->second; in findY()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DWifiLinkLayerStatsTest.java53 int m0 = a & b; in bumpCounters() local
57 assertEquals(-1, m0 + m1 + m2 + m3); in bumpCounters()
59 s.rxmpdu_be += rxg & m0; in bumpCounters()
60 s.txmpdu_be += txg & m0; in bumpCounters()
61 s.lostmpdu_be += txb & m0; in bumpCounters()
62 s.retries_be += txr & m0; in bumpCounters()
/frameworks/native/opengl/libagl/
Dlight.cpp50 const GLfixed* m0, const GLfixed* m1, const GLfixed* a);
52 const GLfixed* m0, const GLfixed* m1);
163 const GLfixed* m0, const GLfixed* m1, const GLfixed* a) in vmla3() argument
165 d[0] = gglMulAddx(m0[0], m1[0], a[0]); in vmla3()
166 d[1] = gglMulAddx(m0[1], m1[1], a[1]); in vmla3()
167 d[2] = gglMulAddx(m0[2], m1[2], a[2]); in vmla3()
171 void vmul3(GLfixed* d, const GLfixed* m0, const GLfixed* m1) { in vmul3() argument
172 d[0] = gglMulx(m0[0], m1[0]); in vmul3()
173 d[1] = gglMulx(m0[1], m1[1]); in vmul3()
174 d[2] = gglMulx(m0[2], m1[2]); in vmul3()
/frameworks/base/libs/hwui/tests/unit/
DClipAreaTests.cpp50 Matrix4 m0; in TEST() local
51 TransformedRectangle tr0(r2, m0); in TEST()