Home
last modified time | relevance | path

Searched refs:m_z (Results 1 – 4 of 4) sorted by relevance

/external/zopfli/src/zopfli/
Dsqueeze.c76 unsigned int m_w, m_z; member
81 state->m_z = 2; in InitRanState()
86 state->m_z = 36969 * (state->m_z & 65535) + (state->m_z >> 16); in Ran()
88 return (state->m_z << 16) + state->m_w; /* 32-bit result. */ in Ran()
/external/deqp/external/vulkancts/modules/vulkan/compute/
DvktComputeZeroInitializeWorkgroupMemoryTests.cpp1059 m_z(z) in SpecializeWorkgroupInstance()
1066 deUint32 m_z; member in vkt::compute::__anon2592526b0111::SpecializeWorkgroupInstance
1079 m_z(z) in SpecializeWorkgroupTest()
1086 return new SpecializeWorkgroupInstance(context, m_x, m_y, m_z); in createInstance()
1092 deUint32 m_z; member in vkt::compute::__anon2592526b0111::SpecializeWorkgroupTest
1102 if (m_x * m_y * m_z > properties.limits.maxComputeWorkGroupInvocations) in checkSupport()
1128 const deUint32 size = (deUint32)sizeof(deUint32) * m_x * m_y * m_z; in iterate()
1129 return runCompute(m_context, size, 1, 1, 1, {m_x, m_y, m_z}); in iterate()
/external/deqp/external/openglcts/modules/gl/
Dgl4cShaderSubroutineTests.cpp3718 …m4f(input_data_location, expected_results[0].m_x, expected_results[0].m_y, expected_results[0].m_z, in testDraw()
3740 results[0].m_z = feedback_data[2]; in testDraw()
3745 results[1].m_z = feedback_data[6]; in testDraw()
3750 results[2].m_z = feedback_data[10]; in testDraw()
3755 results[3].m_z = feedback_data[14]; in testDraw()
3760 results[4].m_z = feedback_data[18]; in testDraw()
4160 gl.uniform4f(m_uniform_locations[i], input_data[i].m_x, input_data[i].m_y, input_data[i].m_z, in testDraw()
4184 out_first_routine_result.m_z = float_ptr[2]; in testDraw()
4190 out_second_routine_result.m_z = float_ptr[6]; in testDraw()
4196 out_third_routine_result.m_z = float_ptr[10]; in testDraw()
[all …]
Dgl4cShaderSubroutineTests.hpp169 vec4(T x, T y, T z, T w) : m_x(x), m_y(y), m_z(z), m_w(w) in vec4()
179 result = result && compare(m_z, val.m_z); in operator ==()
187 message << "[ " << m_x << ", " << m_y << ", " << m_z << ", " << m_w << " ]"; in log()
192 T m_z; member