HomeSort by relevance Sort by last modified time
    Searched refs:m_input (Results 1 - 7 of 7) sorted by null

  /external/webrtc/webrtc/common_audio/resampler/
sinc_resampler_sse.cc 23 __m128 m_input; local
31 m_input = _mm_loadu_ps(input_ptr + i);
32 m_sums1 = _mm_add_ps(m_sums1, _mm_mul_ps(m_input, _mm_load_ps(k1 + i)));
33 m_sums2 = _mm_add_ps(m_sums2, _mm_mul_ps(m_input, _mm_load_ps(k2 + i)));
37 m_input = _mm_load_ps(input_ptr + i);
38 m_sums1 = _mm_add_ps(m_sums1, _mm_mul_ps(m_input, _mm_load_ps(k1 + i)));
39 m_sums2 = _mm_add_ps(m_sums2, _mm_mul_ps(m_input, _mm_load_ps(k2 + i)));
sinc_resampler_neon.cc 23 float32x4_t m_input; local
29 m_input = vld1q_f32(input_ptr);
31 m_sums1 = vmlaq_f32(m_sums1, m_input, vld1q_f32(k1));
33 m_sums2 = vmlaq_f32(m_sums2, m_input, vld1q_f32(k2));
  /external/deqp/modules/glshared/
glsRandomShaderCase.hpp 52 const char* getName (void) const { return m_input->getVariable()->getName(); }
53 int getNumComponents (void) const { return m_input->getVariable()->getType().getNumElements(); }
54 rsg::ConstValueRangeAccess getValueRange (void) const { return m_input->getValueRange(); }
57 const rsg::ShaderInput* m_input; member in class:deqp::gls::VertexArray
glsRandomShaderCase.cpp 79 : m_input (input)
  /external/deqp/modules/gles31/functional/
es31fShaderUniformIntegerFunctionTests.cpp 61 int m_input; member in class:deqp::gles31::Functional::UniformIntegerFunctionCase
71 , m_input(inputValue)
101 "comparison = (" << getFunctionName() << "(value) == " << computeExpectedResult(m_input) << ");\n";
124 m_context.getRenderContext().getFunctions().uniform1i(m_value, m_input);
127 int expectedResult = computeExpectedResult(m_input);
129 m_testCtx.getLog() << TestLog::Message << "ERROR: comparison failed for " << getFunctionName() << "(" << m_input << ") == " << expectedResult << TestLog::EndMessage;
130 m_testCtx.getLog() << TestLog::Message << "input: " << m_input << TestLog::EndMessage;
135 m_testCtx.getLog() << TestLog::Message << "ERROR: result is as expected, but not when use in condition statement (" << getFunctionName() << "(" << m_input << ") == " << expectedResult << ") == true" << TestLog::EndMessage;
136 m_testCtx.getLog() << TestLog::Message << "input:" << m_input << TestLog::EndMessage;
  /external/deqp/external/openglcts/modules/common/
glcShaderLibrary.cpp 186 std::string m_input; member in class:deqp::sl::ShaderParser
1092 m_input = input;
1093 m_curPtr = m_input.c_str();
  /external/deqp/framework/opengl/
gluShaderLibrary.cpp 428 vector<char> m_input; member in class:glu::sl::ShaderParser
    [all...]

Completed in 108 milliseconds