Home
last modified time | relevance | path

Searched refs:outResult (Results 1 – 25 of 36) sorted by relevance

12

/external/angle/src/libANGLE/renderer/d3d/d3d11/
DFence11.cpp144 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 …]
DFence11.h54 GLenum *outResult) override;
58 angle::Result getStatus(const gl::Context *context, GLint *outResult) override;
/external/angle/src/libANGLE/renderer/vulkan/
DSyncVk.cpp67 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 …]
DSyncVk.h41 VkResult *outResult);
69 GLenum *outResult) override;
73 angle::Result getStatus(const gl::Context *context, GLint *outResult) override;
94 EGLint *outResult) override;
DFenceNVVk.cpp47 VkResult outResult; in finish() local
49 return mFenceSync.clientWait(contextVk, contextVk, true, UINT64_MAX, &outResult); in finish()
/external/angle/src/libANGLE/
DFence.cpp46 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()
DFence.h37 angle::Result test(const Context *context, GLboolean *outResult);
68 GLenum *outResult);
70 angle::Result getStatus(const Context *context, GLint *outResult) const;
DEGLSync.cpp56 EGLint *outResult) in clientWait() argument
58 return mFence->clientWait(display, context, flags, timeout, outResult); in clientWait()
/external/angle/src/libANGLE/renderer/null/
DSyncNULL.cpp29 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()
DSyncNULL.h27 GLenum *outResult) override;
31 angle::Result getStatus(const gl::Context *context, GLint *outResult) override;
/external/angle/samples/shader_translator/
Dshader_translator.cpp44 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/
DSyncGL.cpp48 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()
DSyncGL.h30 GLenum *outResult) override;
34 angle::Result getStatus(const gl::Context *context, GLint *outResult) override;
/external/skia/src/codec/
DSkCodec.cpp67 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/
DSkCodec.cpp61 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/
DSyncImpl.h37 GLenum *outResult) = 0;
41 virtual angle::Result getStatus(const gl::Context *context, GLint *outResult) = 0;
DEGLSyncImpl.h45 EGLint *outResult) = 0;
/external/angle/src/libANGLE/renderer/gl/egl/
DSyncEGL.cpp64 EGLint *outResult) in clientWait() argument
74 *outResult = result; in clientWait()
DSyncEGL.h39 EGLint *outResult) override;
/external/angle/third_party/VulkanMemoryAllocator/src/
DTests.cpp218 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/
DSkSLExternalValue.h88 virtual void call(int index, float* arguments, float* outResult) { in call() argument
/external/skia/tools/flags/
DCommonFlagsConfig.cpp564 SkCommandLineConfigArray* outResult) { in ParseConfigs() argument
565 outResult->reset(); in ParseConfigs()
616 outResult->emplace_back(parsedConfig); in ParseConfigs()
/external/skqp/tools/flags/
DSkCommonFlagsConfig.cpp521 SkCommandLineConfigArray* outResult) { in ParseConfigs() argument
522 outResult->reset(); in ParseConfigs()
573 outResult->emplace_back(parsedConfig); in ParseConfigs()
/external/icu/icu4c/source/common/unicode/
Duloc.h1065 UAcceptResult *outResult,
1085 UAcceptResult *outResult, const char **acceptList,
/external/icu/libandroidicu/include/unicode/
Duloc.h1065 UAcceptResult *outResult,
1085 UAcceptResult *outResult, const char **acceptList,

12