Home
last modified time | relevance | path

Searched refs:commandList (Results 1 – 15 of 15) sorted by relevance

/external/ms-tpm-20-ref/TPMCmd/tpm/src/subsystem/
DPP.c142 TPML_CC *commandList // OUT: list of TPM_CC in PhysicalPresenceCapGetCCList() argument
149 commandList->count = 0; in PhysicalPresenceCapGetCCList()
161 if(commandList->count < count) in PhysicalPresenceCapGetCCList()
165 commandList->commandCodes[commandList->count] in PhysicalPresenceCapGetCCList()
167 commandList->count++; in PhysicalPresenceCapGetCCList()
DCommandAudit.c192 TPML_CC *commandList // OUT: list of TPM_CC in CommandAuditCapGetCCList() argument
199 commandList->count = 0; in CommandAuditCapGetCCList()
213 if(commandList->count < count) in CommandAuditCapGetCCList()
221 commandList->commandCodes[commandList->count] = cc; in CommandAuditCapGetCCList()
222 commandList->count++; in CommandAuditCapGetCCList()
/external/ms-tpm-20-ref/TPMCmd/tpm/src/support/
DCommandCodeAttributes.c506 TPML_CCA *commandList // OUT: list of TPMA_CC in CommandCapGetCCList() argument
513 commandList->count = 0; in CommandCapGetCCList()
524 if(commandList->count < count) in CommandCapGetCCList()
527 commandList->commandAttributes[commandList->count] in CommandCapGetCCList()
529 commandList->count++; in CommandCapGetCCList()
/external/skia/src/gpu/ganesh/d3d/
DGrD3DCommandList.cpp23 gr_cp<ID3D12GraphicsCommandList> commandList) in GrD3DCommandList() argument
24 : fCommandList(std::move(commandList)) in GrD3DCommandList()
276 gr_cp<ID3D12GraphicsCommandList> commandList; in Make() local
279 IID_PPV_ARGS(&commandList))); in Make()
281 auto grCL = new GrD3DDirectCommandList(std::move(allocator), std::move(commandList), in Make()
287 gr_cp<ID3D12GraphicsCommandList> commandList, in GrD3DDirectCommandList() argument
289 : GrD3DCommandList(std::move(allocator), std::move(commandList)) in GrD3DDirectCommandList()
604 gr_cp<ID3D12GraphicsCommandList> commandList; in Make() local
606 nullptr, IID_PPV_ARGS(&commandList))); in Make()
607 auto grCL = new GrD3DCopyCommandList(std::move(allocator), std::move(commandList)); in Make()
[all …]
DGrD3DPipelineState.cpp157 GrD3DDirectCommandList* commandList) { in bindBuffers() argument
174 commandList->setVertexBuffers(0, std::move(vertexBuffer), fVertexStride, in bindBuffers()
182 commandList->setIndexBuffer(std::move(indexBuffer)); in bindBuffers()
DGrD3DCommandList.h121 gr_cp<ID3D12GraphicsCommandList> commandList);
214 gr_cp<ID3D12GraphicsCommandList> commandList,
244 gr_cp<ID3D12GraphicsCommandList> commandList);
DGrD3DResourceProvider.cpp46 std::unique_ptr<GrD3DDirectCommandList> commandList) { in recycleDirectCommandList() argument
47 commandList->reset(); in recycleDirectCommandList()
48 fAvailableDirectCommandLists.push_back(std::move(commandList)); in recycleDirectCommandList()
DGrD3DPipelineState.h55 GrD3DDirectCommandList* commandList);
DGrD3DGpu.h326 OutstandingCommandList(std::unique_ptr<GrD3DDirectCommandList> commandList, in OutstandingCommandList()
328 : fCommandList(std::move(commandList)), fFenceValue(fenceValue) { in OutstandingCommandList()
/external/skia/src/gpu/graphite/
DDrawWriter.cpp15 DrawWriter::DrawWriter(DrawPassCommands::List* commandList, DrawBufferManager* bufferManager) in DrawWriter() argument
16 : fCommandList(commandList) in DrawWriter()
28 SkASSERT(commandList && bufferManager); in DrawWriter()
DDrawPass.cpp176 void bindUniforms(UniformSlot slot, DrawPassCommands::List* commandList) { in bindUniforms() argument
182 commandList->bindUniformBuffer(binding, slot); in bindUniforms()
228 void bindTextures(DrawPassCommands::List* commandList) { in bindTextures() argument
233 commandList->bindDeferredTexturesAndSamplers(binding.numTextures()); in bindTextures()
290 void bindIfNeeded(DrawPassCommands::List* commandList) const { in bindIfNeeded()
292 commandList->bindUniformBuffer(fBufferInfo, UniformSlot::kGradient); in bindIfNeeded()
/external/ms-tpm-20-ref/TPMCmd/tpm/include/prototypes/
DPP_fp.h95 TPML_CC *commandList // OUT: list of TPM_CC
DCommandAudit_fp.h118 TPML_CC *commandList // OUT: list of TPM_CC
DCommandCodeAttributes_fp.h169 TPML_CCA *commandList // OUT: list of TPMA_CC
/external/deqp/external/vulkancts/scripts/
Dgen_framework.py370 def __init__ (self, operation, comment, enumList, typeList, commandList, featureList): argument
375 self.commandList = commandList # list of strings, each representing required function name
690 commandList = []
721 commandList.append(requirementName)
727 commandList,
1074 if fun.name in featureRequirement.commandList:
1092 if fun.name not in featureRequirement.commandList:
1227 for commandName in requirement.commandList:
1803 for promotedFun in featureRequirement.commandList:
1902 if n in r.commandList:
[all …]