Searched refs:positive_value (Results 1 – 3 of 3) sorted by relevance
/external/libchrome/base/time/ |
D | time.h | 305 static constexpr TimeDelta FromProduct(int64_t value, int64_t positive_value); 796 int64_t positive_value) { in FromProduct() argument 797 DCHECK(positive_value > 0); in FromProduct() 798 return value > std::numeric_limits<int64_t>::max() / positive_value in FromProduct() 800 : value < std::numeric_limits<int64_t>::min() / positive_value in FromProduct() 802 : TimeDelta(value * positive_value); in FromProduct()
|
/external/deqp/external/openglcts/modules/gl/ |
D | gl4cShaderImageLoadStoreTests.cpp | 9697 static bool verifyFloat(GLint original_value, GLint positive_value, GLint negated_value) in verifyFloat() argument 9699 if (original_value != positive_value) in verifyFloat() 9709 const T* positive_elements = (T*)&positive_value; in verifyFloat() 9750 static bool verifyFloatSignedNorm(GLint original_value, GLint positive_value, GLint negated_value) in verifyFloatSignedNorm() argument 9752 if (original_value != positive_value) in verifyFloatSignedNorm() 9759 const T* positive_elements = (T*)&positive_value; in verifyFloatSignedNorm() 9791 static bool verifyInteger(GLint original_value, GLint positive_value, GLint negated_value) in verifyInteger() argument 9793 if (original_value != positive_value) in verifyInteger() 9798 Integer<T, R, 0> positive_red(positive_value); in verifyInteger() 9801 Integer<T, G, R> positive_green(positive_value); in verifyInteger() [all …]
|
/external/swiftshader/tests/GLESUnitTests/ |
D | unittests.cpp | 930 GLint positive_value = glGetUniformLocation(ph.program, "positive_value"); in TEST_F() local 931 ASSERT_NE(-1, positive_value); in TEST_F() 934 glUniform1f(positive_value, 1.0); in TEST_F()
|