/external/angle/src/libANGLE/renderer/d3d/d3d11/ |
D | Fence11.cpp | 144 GLenum *outResult) in clientWait() argument 146 ASSERT(outResult); in clientWait() 150 *outResult = GL_WAIT_FAILED; in clientWait() 157 *outResult = GL_ALREADY_SIGNALED; in clientWait() 163 *outResult = GL_TIMEOUT_EXPIRED; in clientWait() 188 *outResult = GL_WAIT_FAILED; in clientWait() 195 *outResult = GL_WAIT_FAILED; in clientWait() 203 *outResult = GL_TIMEOUT_EXPIRED; in clientWait() 207 *outResult = GL_CONDITION_SATISFIED; in clientWait() 221 angle::Result Sync11::getStatus(const gl::Context *context, GLint *outResult) in getStatus() argument [all …]
|
D | Fence11.h | 54 GLenum *outResult) override; 58 angle::Result getStatus(const gl::Context *context, GLint *outResult) override;
|
/external/angle/src/libANGLE/renderer/vulkan/ |
D | SyncVk.cpp | 67 VkResult *outResult) in clientWait() argument 76 *outResult = VK_EVENT_SET; in clientWait() 83 *outResult = VK_TIMEOUT; in clientWait() 103 *outResult = status; in clientWait() 149 GLenum *outResult) in clientWait() argument 164 *outResult = GL_ALREADY_SIGNALED; in clientWait() 168 *outResult = GL_CONDITION_SATISFIED; in clientWait() 172 *outResult = GL_TIMEOUT_EXPIRED; in clientWait() 177 *outResult = GL_WAIT_FAILED; in clientWait() 191 angle::Result SyncVk::getStatus(const gl::Context *context, GLint *outResult) in getStatus() argument [all …]
|
D | SyncVk.h | 41 VkResult *outResult); 69 GLenum *outResult) override; 73 angle::Result getStatus(const gl::Context *context, GLint *outResult) override; 94 EGLint *outResult) override;
|
D | FenceNVVk.cpp | 47 VkResult outResult; in finish() local 49 return mFenceSync.clientWait(contextVk, contextVk, true, UINT64_MAX, &outResult); in finish()
|
/external/angle/src/libANGLE/ |
D | Fence.cpp | 46 angle::Result FenceNV::test(const Context *context, GLboolean *outResult) in test() argument 51 *outResult = mStatus; in test() 107 GLenum *outResult) in clientWait() argument 110 return mFence->clientWait(context, flags, timeout, outResult); in clientWait() 118 angle::Result Sync::getStatus(const Context *context, GLint *outResult) const in getStatus() 120 return mFence->getStatus(context, outResult); in getStatus()
|
D | Fence.h | 37 angle::Result test(const Context *context, GLboolean *outResult); 68 GLenum *outResult); 70 angle::Result getStatus(const Context *context, GLint *outResult) const;
|
D | EGLSync.cpp | 56 EGLint *outResult) in clientWait() argument 58 return mFence->clientWait(display, context, flags, timeout, outResult); in clientWait()
|
/external/angle/src/libANGLE/renderer/null/ |
D | SyncNULL.cpp | 29 GLenum *outResult) in clientWait() argument 31 *outResult = GL_ALREADY_SIGNALED; in clientWait() 40 angle::Result SyncNULL::getStatus(const gl::Context *context, GLint *outResult) in getStatus() argument 42 *outResult = GL_SIGNALED; in getStatus()
|
D | SyncNULL.h | 27 GLenum *outResult) override; 31 angle::Result getStatus(const gl::Context *context, GLint *outResult) override;
|
/external/angle/samples/shader_translator/ |
D | shader_translator.cpp | 44 static bool ParseGLSLOutputVersion(const std::string &, ShShaderOutput *outResult); 779 static bool ParseGLSLOutputVersion(const std::string &num, ShShaderOutput *outResult) in ParseGLSLOutputVersion() argument 783 *outResult = SH_GLSL_COMPATIBILITY_OUTPUT; in ParseGLSLOutputVersion() 796 *outResult = SH_GLSL_130_OUTPUT; in ParseGLSLOutputVersion() 799 *outResult = SH_GLSL_140_OUTPUT; in ParseGLSLOutputVersion() 802 *outResult = SH_GLSL_150_CORE_OUTPUT; in ParseGLSLOutputVersion() 805 *outResult = SH_GLSL_330_CORE_OUTPUT; in ParseGLSLOutputVersion() 808 *outResult = SH_GLSL_400_CORE_OUTPUT; in ParseGLSLOutputVersion() 811 *outResult = SH_GLSL_410_CORE_OUTPUT; in ParseGLSLOutputVersion() 814 *outResult = SH_GLSL_420_CORE_OUTPUT; in ParseGLSLOutputVersion() [all …]
|
/external/angle/src/libANGLE/renderer/gl/ |
D | SyncGL.cpp | 48 GLenum *outResult) in clientWait() argument 51 *outResult = mFunctions->clientWaitSync(mSyncObject, flags, timeout); in clientWait() 62 angle::Result SyncGL::getStatus(const gl::Context *context, GLint *outResult) in getStatus() argument 65 mFunctions->getSynciv(mSyncObject, GL_SYNC_STATUS, 1, nullptr, outResult); in getStatus()
|
D | SyncGL.h | 30 GLenum *outResult) override; 34 angle::Result getStatus(const gl::Context *context, GLint *outResult) override;
|
/external/skia/src/codec/ |
D | SkCodec.cpp | 67 std::unique_ptr<SkStream> stream, Result* outResult, in MakeFromStream() argument 70 if (!outResult) { in MakeFromStream() 71 outResult = &resultStorage; in MakeFromStream() 75 *outResult = kInvalidInput; in MakeFromStream() 81 *outResult = kInvalidParameters; in MakeFromStream() 108 *outResult = kCouldNotRewind; in MakeFromStream() 117 return SkPngCodec::MakeFromStream(std::move(stream), outResult, chunkReader); in MakeFromStream() 123 return proc.MakeFromStream(std::move(stream), outResult); in MakeFromStream() 129 return SkHeifCodec::MakeFromStream(std::move(stream), selectionPolicy, outResult); in MakeFromStream() 135 return SkRawCodec::MakeFromStream(std::move(stream), outResult); in MakeFromStream() [all …]
|
/external/skqp/src/codec/ |
D | SkCodec.cpp | 61 Result* outResult, SkPngChunkReader* chunkReader) { in MakeFromStream() argument 63 if (!outResult) { in MakeFromStream() 64 outResult = &resultStorage; in MakeFromStream() 68 *outResult = kInvalidInput; in MakeFromStream() 95 *outResult = kCouldNotRewind; in MakeFromStream() 104 return SkPngCodec::MakeFromStream(std::move(stream), outResult, chunkReader); in MakeFromStream() 110 return proc.MakeFromStream(std::move(stream), outResult); in MakeFromStream() 116 return SkRawCodec::MakeFromStream(std::move(stream), outResult); in MakeFromStream() 121 *outResult = kIncompleteInput; in MakeFromStream() 123 *outResult = kUnimplemented; in MakeFromStream()
|
/external/angle/src/libANGLE/renderer/ |
D | SyncImpl.h | 37 GLenum *outResult) = 0; 41 virtual angle::Result getStatus(const gl::Context *context, GLint *outResult) = 0;
|
D | EGLSyncImpl.h | 45 EGLint *outResult) = 0;
|
/external/angle/src/libANGLE/renderer/gl/egl/ |
D | SyncEGL.cpp | 64 EGLint *outResult) in clientWait() argument 74 *outResult = result; in clientWait()
|
D | SyncEGL.h | 39 EGLint *outResult) override;
|
/external/angle/third_party/VulkanMemoryAllocator/src/ |
D | Tests.cpp | 218 static void InitResult(Result& outResult) in InitResult() argument 220 outResult.TotalTime = duration::zero(); in InitResult() 221 outResult.AllocationTimeMin = duration::max(); in InitResult() 222 outResult.AllocationTimeAvg = duration::zero(); in InitResult() 223 outResult.AllocationTimeMax = duration::min(); in InitResult() 224 outResult.DeallocationTimeMin = duration::max(); in InitResult() 225 outResult.DeallocationTimeAvg = duration::zero(); in InitResult() 226 outResult.DeallocationTimeMax = duration::min(); in InitResult() 227 outResult.TotalMemoryAllocated = 0; in InitResult() 228 outResult.FreeRangeSizeAvg = 0; in InitResult() [all …]
|
/external/skia/src/sksl/ |
D | SkSLExternalValue.h | 88 virtual void call(int index, float* arguments, float* outResult) { in call() argument
|
/external/skia/tools/flags/ |
D | CommonFlagsConfig.cpp | 564 SkCommandLineConfigArray* outResult) { in ParseConfigs() argument 565 outResult->reset(); in ParseConfigs() 616 outResult->emplace_back(parsedConfig); in ParseConfigs()
|
/external/skqp/tools/flags/ |
D | SkCommonFlagsConfig.cpp | 521 SkCommandLineConfigArray* outResult) { in ParseConfigs() argument 522 outResult->reset(); in ParseConfigs() 573 outResult->emplace_back(parsedConfig); in ParseConfigs()
|
/external/icu/icu4c/source/common/unicode/ |
D | uloc.h | 1065 UAcceptResult *outResult, 1085 UAcceptResult *outResult, const char **acceptList,
|
/external/icu/libandroidicu/include/unicode/ |
D | uloc.h | 1065 UAcceptResult *outResult, 1085 UAcceptResult *outResult, const char **acceptList,
|