Searched refs:positive_value (Results 1 – 2 of 2) sorted by relevance
/external/libchrome/base/time/ |
D | time.h | 277 static constexpr TimeDelta FromProduct(int64_t value, int64_t positive_value); 687 int64_t positive_value) { in FromProduct() argument 693 DCHECK(positive_value > 0), in FromProduct() 695 value > std::numeric_limits<int64_t>::max() / positive_value in FromProduct() 697 : value < -std::numeric_limits<int64_t>::max() / positive_value in FromProduct() 699 : TimeDelta(value * positive_value)); in FromProduct()
|
/external/deqp/external/openglcts/modules/gl/ |
D | gl4cShaderImageLoadStoreTests.cpp | 9616 static bool verifyFloat(GLint original_value, GLint positive_value, GLint negated_value) in verifyFloat() argument 9618 if (original_value != positive_value) in verifyFloat() 9628 const T* positive_elements = (T*)&positive_value; in verifyFloat() 9669 static bool verifyFloatSignedNorm(GLint original_value, GLint positive_value, GLint negated_value) in verifyFloatSignedNorm() argument 9671 if (original_value != positive_value) in verifyFloatSignedNorm() 9678 const T* positive_elements = (T*)&positive_value; in verifyFloatSignedNorm() 9710 static bool verifyInteger(GLint original_value, GLint positive_value, GLint negated_value) in verifyInteger() argument 9712 if (original_value != positive_value) in verifyInteger() 9717 Integer<T, R, 0> positive_red(positive_value); in verifyInteger() 9720 Integer<T, G, R> positive_green(positive_value); in verifyInteger() [all …]
|