Home
last modified time | relevance | path

Searched refs:m_commands (Results 1 – 7 of 7) sorted by relevance

/external/deqp/modules/gles31/functional/
Des31fIndirectComputeDispatchTests.cpp133 vector<DispatchCommand> m_commands; member in deqp::gles31::Functional::__anon65cd8efe0111::IndirectDispatchCase
187 …for (vector<DispatchCommand>::const_iterator cmdIter = m_commands.begin(); cmdIter != m_commands.e… in createCmdBufferUpload()
227 …for (vector<DispatchCommand>::const_iterator cmdIter = m_commands.begin(); cmdIter != m_commands.e… in createCmdBufferCompute()
267 const int resultBufferSize = resultBlockSize*(int)m_commands.size(); in createResultBuffer()
270 for (size_t cmdNdx = 0; cmdNdx < m_commands.size(); cmdNdx++) in createResultBuffer()
274 …*(deUint32*)(dstPtr + RESULT_BLOCK_EXPECTED_COUNT_OFFSET + 0*4) = m_commands[cmdNdx].numWorkGroups… in createResultBuffer()
275 …*(deUint32*)(dstPtr + RESULT_BLOCK_EXPECTED_COUNT_OFFSET + 1*4) = m_commands[cmdNdx].numWorkGroups… in createResultBuffer()
276 …*(deUint32*)(dstPtr + RESULT_BLOCK_EXPECTED_COUNT_OFFSET + 2*4) = m_commands[cmdNdx].numWorkGroups… in createResultBuffer()
297 const int resultBufferSize = resultBlockSize*(int)m_commands.size(); in verifyResultBuffer()
310 for (size_t cmdNdx = 0; cmdNdx < m_commands.size(); cmdNdx++) in verifyResultBuffer()
[all …]
/external/pdfium/core/fxge/skia/
Dfx_skia_device.cpp746 int drawIndex = SkTMin(m_drawIndex, m_commands.count()); in DrawPath()
878 int drawIndex = SkTMin(m_drawIndex, m_commands.count()); in DrawText()
1022 bool IsEmpty() const { return !m_commands.count(); } in IsEmpty()
1056 if (m_commandIndex < m_commands.count()) { in SetClip()
1057 if (m_commands[m_commandIndex] == Clip::kPath && in SetClip()
1068 } while (m_commands[m_clipIndex] != Clip::kSave); in SetClip()
1071 if (m_commandIndex < m_commands.count()) { in SetClip()
1072 m_commands[m_commandIndex] = Clip::kPath; in SetClip()
1075 m_commands.push_back(Clip::kPath); in SetClip()
1125 int count = m_commands.count(); in ClipSave()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/memory/
DvktMemoryPipelineBarrierTests.cpp1819 vector<CmdCommand*> m_commands; member in vkt::memory::__anon58c89e6c0111::SubmitCommandBuffer
1824 : m_commands (commands) in SubmitCommandBuffer()
1830 for (size_t cmdNdx = 0; cmdNdx < m_commands.size(); cmdNdx++) in ~SubmitCommandBuffer()
1831 delete m_commands[cmdNdx]; in ~SubmitCommandBuffer()
1842 for (size_t cmdNdx = 0; cmdNdx < m_commands.size(); cmdNdx++) in prepare()
1844 CmdCommand& command = *m_commands[cmdNdx]; in prepare()
1852 for (size_t cmdNdx = 0; cmdNdx < m_commands.size(); cmdNdx++) in prepare()
1854 CmdCommand& command = *m_commands[cmdNdx]; in prepare()
1892 for (size_t cmdNdx = 0; cmdNdx < m_commands.size(); cmdNdx++) in verify()
1893 m_commands[cmdNdx]->verify(context, cmdNdx); in verify()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/binding_model/
DvktBindingDescriptorCopyTests.cpp426 DescriptorCommandsSp m_commands; member in vkt::BindingModel::__anone49c327d0111::DescriptorCopyTestInstance
438 DescriptorCommandsSp m_commands; member in vkt::BindingModel::__anone49c327d0111::DescriptorCopyTestCase
2256 , m_commands (commands) in DescriptorCopyTestInstance()
2269 , m_commands (commands) in DescriptorCopyTestCase()
2279 if (m_commands->getPipelineType() == PIPELINE_TYPE_COMPUTE) in initPrograms()
2284 + m_commands->getShaderDeclarations() + in initPrograms()
2289 + m_commands->getDescriptorVerifications() + in initPrograms()
2290 "storageBuffer" + de::toString(m_commands->getResultBufferId()) + ".data = result;\n" in initPrograms()
2315 + m_commands->getShaderDeclarations() + in initPrograms()
2321 + m_commands->getDescriptorVerifications() + in initPrograms()
[all …]
/external/llvm-project/lldb/source/Commands/
DCommandObjectBreakpoint.cpp74 m_commands.push_back(std::string(option_arg)); in SetOptionValue()
143 m_commands.clear(); in OptionParsingStarting()
147 if (!m_commands.empty()) { in OptionParsingFinished()
150 for (std::string &str : m_commands) in OptionParsingFinished()
161 std::vector<std::string> m_commands; member in lldb_private::BreakpointOptionGroup
/external/llvm-project/lldb/include/lldb/Target/
DTarget.h1218 StringList &GetCommands() { return m_commands; } in GetCommands()
1228 StringList m_commands;
/external/llvm-project/lldb/source/Target/
DTarget.cpp3305 if (m_commands.GetSize() == 1) in GetSubclassDescription()
3306 s->PutCString(m_commands.GetStringAtIndex(0)); in GetSubclassDescription()
3311 uint32_t num_commands = m_commands.GetSize(); in GetSubclassDescription()
3313 s->Indent(m_commands.GetStringAtIndex(i)); in GetSubclassDescription()
3336 if (!m_commands.GetSize()) in HandleStop()