Searched refs:resultOut (Results 1 – 8 of 8) sorted by relevance
/external/angle/src/libANGLE/ |
D | formatutils.h | 141 ANGLE_NO_DISCARD bool computeBufferRowLength(uint32_t width, uint32_t *resultOut) const; 142 ANGLE_NO_DISCARD bool computeBufferImageHeight(uint32_t height, uint32_t *resultOut) const; 148 GLuint *resultOut) const; 152 GLuint *resultOut) const; 159 GLuint *resultOut) const; 161 ANGLE_NO_DISCARD bool computeCompressedImageSize(const Extents &size, GLuint *resultOut) const; 170 GLuint *resultOut) const; 176 GLuint *resultOut) const;
|
D | formatutils.cpp | 29 bool CheckedMathResult(const CheckedNumeric<GLuint> &value, GLuint *resultOut) in CheckedMathResult() argument 37 *resultOut = value.ValueOrDie(); in CheckedMathResult() 1488 bool InternalFormat::computeBufferRowLength(uint32_t width, uint32_t *resultOut) const in computeBufferRowLength() 1497 return CheckedMathResult(checkedRowLength, resultOut); in computeBufferRowLength() 1500 return CheckedMathResult(checkedWidth, resultOut); in computeBufferRowLength() 1503 bool InternalFormat::computeBufferImageHeight(uint32_t height, uint32_t *resultOut) const in computeBufferImageHeight() 1512 return CheckedMathResult(checkedImageHeight, resultOut); in computeBufferImageHeight() 1515 return CheckedMathResult(checkedHeight, resultOut); in computeBufferImageHeight() 1522 GLuint *resultOut) const in computeRowPitch() 1528 return computeCompressedImageSize(Extents(width, 1, 1), resultOut); in computeRowPitch() [all …]
|
/external/angle/src/libANGLE/renderer/d3d/d3d11/ |
D | Buffer11.cpp | 127 CopyResult *resultOut) = 0; 171 CopyResult *resultOut) override; 249 CopyResult *resultOut) override; 283 CopyResult *resultOut) override; 325 CopyResult *resultOut) override; 1153 CopyResult *resultOut) in copyFromStorage() argument 1162 *resultOut = CopyResult::RECREATED; in copyFromStorage() 1166 *resultOut = CopyResult::NOT_RECREATED; in copyFromStorage() 1647 CopyResult *resultOut) in copyFromStorage() argument 1655 *resultOut = CopyResult::RECREATED; in copyFromStorage() [all …]
|
/external/angle/src/tests/test_utils/runner/ |
D | TestSuite.cpp | 411 TestResult &resultOut = resultsOut->results[resultsOut->currentTest]; in UpdateCurrentTestResult() local 416 resultOut.type = TestResultType::Skip; in UpdateCurrentTestResult() 420 resultOut.type = TestResultType::Fail; in UpdateCurrentTestResult() 424 resultOut.type = TestResultType::Pass; in UpdateCurrentTestResult() 427 resultOut.elapsedTimeSeconds = resultsOut->currentTestTimer.getElapsedTime(); in UpdateCurrentTestResult()
|
/external/python/cpython3/Lib/unittest/test/ |
D | test_case.py | 573 resultOut = unittest.TestResult() 581 return resultOut 585 self.assertIs(retval, resultOut)
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | vk_helpers.h | 501 QueryResult *resultOut, 503 angle::Result getUint64Result(ContextVk *contextVk, QueryResult *resultOut); 521 QueryResult *resultOut);
|
D | vk_helpers.cpp | 2920 QueryResult *resultOut, in getUint64ResultNonBlocking() argument 2931 result = getResultImpl(contextVk, kFlags, resultOut); in getUint64ResultNonBlocking() 2936 *resultOut = 0; in getUint64ResultNonBlocking() 2952 angle::Result QueryHelper::getUint64Result(ContextVk *contextVk, QueryResult *resultOut) in getUint64Result() argument 2958 ANGLE_VK_TRY(contextVk, getResultImpl(contextVk, kFlags, resultOut)); in getUint64Result() 2962 *resultOut = 0; in getUint64Result() 2969 QueryResult *resultOut) in getResultImpl() argument 2979 resultOut->setResults(results.data(), mQueryCount); in getResultImpl()
|
/external/angle/src/libANGLE/renderer/metal/ |
D | mtl_render_utils.mm | 162 angle::Result *resultOut) 163 : mContextMtl(contextMtl), mEncoder(encoder), mResultOut(resultOut)
|