/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/ |
D | BlitFramebufferPerf.cpp | 19 enum class BufferType enum 27 const char *BufferTypeString(BufferType type) in BufferTypeString() 31 case BufferType::COLOR: in BufferTypeString() 33 case BufferType::DEPTH: in BufferTypeString() 35 case BufferType::STENCIL: in BufferTypeString() 37 case BufferType::DEPTH_STENCIL: in BufferTypeString() 44 GLbitfield BufferTypeMask(BufferType type) in BufferTypeMask() 48 case BufferType::COLOR: in BufferTypeMask() 50 case BufferType::DEPTH: in BufferTypeMask() 52 case BufferType::STENCIL: in BufferTypeMask() [all …]
|
/third_party/vk-gl-cts/external/amber/src/src/vulkan/ |
D | engine_vulkan.cc | 233 auto type = BufferCommand::BufferType::kSSBO; in CreatePipeline() 234 if (buf_info.type == BufferType::kStorageImage) { in CreatePipeline() 235 type = BufferCommand::BufferType::kStorageImage; in CreatePipeline() 236 } else if (buf_info.type == BufferType::kSampledImage) { in CreatePipeline() 237 type = BufferCommand::BufferType::kSampledImage; in CreatePipeline() 238 } else if (buf_info.type == BufferType::kCombinedImageSampler) { in CreatePipeline() 239 type = BufferCommand::BufferType::kCombinedImageSampler; in CreatePipeline() 240 } else if (buf_info.type == BufferType::kUniformTexelBuffer) { in CreatePipeline() 241 type = BufferCommand::BufferType::kUniformTexelBuffer; in CreatePipeline() 242 } else if (buf_info.type == BufferType::kStorageTexelBuffer) { in CreatePipeline() [all …]
|
D | pipeline_test.cc | 31 auto cmd = MakeUnique<BufferCommand>(BufferCommand::BufferType::kPushConstant, in TEST_F() 43 auto cmd = MakeUnique<BufferCommand>(BufferCommand::BufferType::kUniform, in TEST_F()
|
D | device.cc | 833 BufferType type) { in IsFormatSupportedByPhysicalDevice() 842 case BufferType::kColor: in IsFormatSupportedByPhysicalDevice() 843 case BufferType::kStorageImage: in IsFormatSupportedByPhysicalDevice() 847 case BufferType::kDepthStencil: in IsFormatSupportedByPhysicalDevice() 851 case BufferType::kSampledImage: in IsFormatSupportedByPhysicalDevice() 852 case BufferType::kCombinedImageSampler: in IsFormatSupportedByPhysicalDevice() 856 case BufferType::kVertex: in IsFormatSupportedByPhysicalDevice()
|
/third_party/curl/lib/vauth/ |
D | digest_sspi.c | 180 chlg_buf.BufferType = SECBUFFER_TOKEN; in Curl_auth_create_digest_md5_message() 188 resp_buf.BufferType = SECBUFFER_TOKEN; in Curl_auth_create_digest_md5_message() 448 chlg_buf[0].BufferType = SECBUFFER_TOKEN; in Curl_auth_create_digest_http_message() 451 chlg_buf[1].BufferType = SECBUFFER_PKG_PARAMS; in Curl_auth_create_digest_http_message() 454 chlg_buf[2].BufferType = SECBUFFER_PKG_PARAMS; in Curl_auth_create_digest_http_message() 457 chlg_buf[3].BufferType = SECBUFFER_PKG_PARAMS; in Curl_auth_create_digest_http_message() 460 chlg_buf[4].BufferType = SECBUFFER_PADDING; in Curl_auth_create_digest_http_message() 546 chlg_buf[0].BufferType = SECBUFFER_TOKEN; in Curl_auth_create_digest_http_message() 549 chlg_buf[1].BufferType = SECBUFFER_PKG_PARAMS; in Curl_auth_create_digest_http_message() 552 chlg_buf[2].BufferType = SECBUFFER_PKG_PARAMS; in Curl_auth_create_digest_http_message() [all …]
|
D | krb5_sspi.c | 186 chlg_buf.BufferType = SECBUFFER_TOKEN; in Curl_auth_create_gssapi_user_message() 195 resp_buf.BufferType = SECBUFFER_TOKEN; in Curl_auth_create_gssapi_user_message() 299 input_buf[0].BufferType = SECBUFFER_STREAM; in Curl_auth_create_gssapi_security_message() 302 input_buf[1].BufferType = SECBUFFER_DATA; in Curl_auth_create_gssapi_security_message() 383 wrap_buf[0].BufferType = SECBUFFER_TOKEN; in Curl_auth_create_gssapi_security_message() 386 wrap_buf[1].BufferType = SECBUFFER_DATA; in Curl_auth_create_gssapi_security_message() 389 wrap_buf[2].BufferType = SECBUFFER_PADDING; in Curl_auth_create_gssapi_security_message()
|
D | ntlm_sspi.c | 164 type_1_buf.BufferType = SECBUFFER_TOKEN; in Curl_auth_create_ntlm_type1_message() 268 type_2_bufs[0].BufferType = SECBUFFER_TOKEN; in Curl_auth_create_ntlm_type3_message() 292 type_2_bufs[1].BufferType = SECBUFFER_CHANNEL_BINDINGS; in Curl_auth_create_ntlm_type3_message() 303 type_3_buf.BufferType = SECBUFFER_TOKEN; in Curl_auth_create_ntlm_type3_message()
|
D | spnego_sspi.c | 204 chlg_buf[0].BufferType = SECBUFFER_TOKEN; in Curl_auth_decode_spnego_message() 228 chlg_buf[1].BufferType = SECBUFFER_CHANNEL_BINDINGS; in Curl_auth_decode_spnego_message() 240 resp_buf.BufferType = SECBUFFER_TOKEN; in Curl_auth_decode_spnego_message()
|
/third_party/skia/experimental/graphite/src/ |
D | Buffer.h | 26 Buffer(size_t size, BufferType type, PrioritizeGpuReads prioritizeGpuReads) in Buffer() 37 BufferType bufferType() const { return fType; } in bufferType() 41 BufferType fType;
|
D | ResourceTypes.h | 32 enum class BufferType { enum 39 static const int kBufferTypeCount = static_cast<int>(BufferType::kUniform) + 1;
|
D | DrawBufferManager.cpp | 51 BufferType::kVertex, in getVertexWriter() 80 BufferType::kIndex, in getIndexWriter() 113 BufferType::kUniform, in getUniformWriter()
|
D | ResourceProvider.h | 35 sk_sp<Buffer> findOrCreateBuffer(size_t size, BufferType type, PrioritizeGpuReads); 45 virtual sk_sp<Buffer> createBuffer(size_t size, BufferType type, PrioritizeGpuReads) = 0;
|
/third_party/vk-gl-cts/external/amber/src/src/ |
D | command.h | 490 enum class BufferType { enum 503 BufferCommand(BufferType type, Pipeline* pipeline); 506 bool IsSSBO() const { return buffer_type_ == BufferType::kSSBO; } in IsSSBO() 508 return buffer_type_ == BufferType::kSSBODynamic; in IsSSBODynamic() 510 bool IsUniform() const { return buffer_type_ == BufferType::kUniform; } in IsUniform() 512 return buffer_type_ == BufferType::kUniformDynamic; in IsUniformDynamic() 515 return buffer_type_ == BufferType::kStorageImage; in IsStorageImage() 518 return buffer_type_ == BufferType::kSampledImage; in IsSampledImage() 521 return buffer_type_ == BufferType::kCombinedImageSampler; in IsCombinedImageSampler() 524 return buffer_type_ == BufferType::kUniformTexelBuffer; in IsUniformTexelBuffer() [all …]
|
D | pipeline.cc | 381 info.type = BufferType::kColor; in AddColorAttachment() 408 depth_stencil_buffer_.type = BufferType::kDepthStencil; in SetDepthStencilBuffer() 437 vertex_buffers_.back().type = BufferType::kVertex; in AddVertexBuffer() 450 push_constant_buffer_.type = BufferType::kPushConstant; in SetPushConstantBuffer() 467 push_constant_buffer_.type = BufferType::kPushConstant; in CreatePushConstantBuffer() 515 BufferType type, in AddBuffer() 536 BufferType type, in AddBuffer() 558 void Pipeline::AddBuffer(Buffer* buf, BufferType type, uint32_t arg_no) { in AddBuffer() 696 if (info.type == BufferType::kUnknown) { in UpdateOpenCLBufferBindings() 701 info.type = BufferType::kUniform; in UpdateOpenCLBufferBindings() [all …]
|
D | pipeline.h | 200 BufferType type = BufferType::kUnknown; 343 BufferType type, 351 void AddBuffer(Buffer* buf, BufferType type, const std::string& arg_name); 353 void AddBuffer(Buffer* buf, BufferType type, uint32_t arg_no);
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/protected_memory/ |
D | vktProtectedMemBufferValidator.cpp | 57 const char* generateShaderBufferString (TestType testType, BufferType bufferType) in generateShaderBufferString() 75 …idatorPrograms (vk::SourceCollections& programCollection, TestType testType, BufferType bufferType) in initBufferValidatorPrograms() 182 vk::VkDescriptorType getDescriptorType (BufferType bufferType) in getDescriptorType()
|
D | vktProtectedMemBufferValidator.hpp | 73 enum BufferType { enum 78 …atorPrograms (vk::SourceCollections& programCollection, TestType testType, BufferType bufferType); 79 vk::VkDescriptorType getDescriptorType (BufferType bufferType); 114 BufferType m_bufferType;
|
/third_party/skia/src/shaders/gradients/ |
D | Sk4fGradientBase.h | 46 using BufferType = SkSTArray<8, Sk4fGradientInterval, true>; variable 48 const BufferType* operator->() const { return &fIntervals; } 51 BufferType fIntervals;
|
/third_party/skia/tests/graphite/ |
D | CommandBufferTest.cpp | 78 2*sizeof(UniformData), BufferType::kUniform, PrioritizeGpuReads::kNo); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() 114 4*sizeof(VertexData), BufferType::kVertex, PrioritizeGpuReads::kNo); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() 116 6*sizeof(uint16_t), BufferType::kIndex, PrioritizeGpuReads::kNo); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() 157 2*sizeof(InstanceData), BufferType::kVertex, PrioritizeGpuReads::kNo); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() 181 bufferSize, BufferType::kXferGpuToCpu, PrioritizeGpuReads::kNo); in DEF_GRAPHITE_TEST_FOR_CONTEXTS()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/postmortem/ |
D | vktPostmortemUseAfterFreeTests.cpp | 67 enum BufferType enum 135 const BufferType bufferType); 137 const BufferType m_bufferType; 150 const BufferType bufferType); 155 const BufferType m_bufferType; 176 const BufferType bufferType) in UseAfterFreeTestCase() 302 const BufferType bufferType) in UseAfterFreeTestInstance()
|
/third_party/skia/experimental/graphite/src/mtl/ |
D | MtlBuffer.h | 23 static sk_sp<Buffer> Make(const Gpu*, size_t size, BufferType type, PrioritizeGpuReads); 28 Buffer(size_t size, BufferType type, PrioritizeGpuReads, sk_cfp<id<MTLBuffer>>);
|
D | MtlBuffer.mm | 26 BufferType type, 62 BufferType type,
|
/third_party/vk-gl-cts/external/amber/src/src/amberscript/ |
D | parser.cc | 1039 Result Parser::ToBufferType(const std::string& name, BufferType* type) { in ToBufferType() 1042 *type = BufferType::kColor; in ToBufferType() 1044 *type = BufferType::kDepthStencil; in ToBufferType() 1046 *type = BufferType::kPushConstant; in ToBufferType() 1048 *type = BufferType::kUniform; in ToBufferType() 1050 *type = BufferType::kUniformDynamic; in ToBufferType() 1052 *type = BufferType::kStorage; in ToBufferType() 1054 *type = BufferType::kStorageDynamic; in ToBufferType() 1056 *type = BufferType::kStorageImage; in ToBufferType() 1058 *type = BufferType::kSampledImage; in ToBufferType() [all …]
|
D | parser_bind_test.cc | 1393 EXPECT_EQ(BufferType::kUniform, bufs[0].type); in TEST_F() 1431 EXPECT_EQ(BufferType::kUniform, bufs[0].type); in TEST_F() 1613 BufferType type; 1617 TEST_P(AmberScriptParserBufferTypeTest, BufferType) { in TEST_P() argument 1651 testing::Values(BufferTypeData{"uniform", BufferType::kUniform}, 1654 BufferType::kStorage})); // NOLINT(whitespace/parens) 2041 EXPECT_EQ(BufferType::kStorageImage, bufs[0].type); in TEST_F() 2072 EXPECT_EQ(BufferType::kStorageImage, bufs[0].type); in TEST_F() 2179 EXPECT_EQ(BufferType::kSampledImage, bufs[0].type); in TEST_F() 2295 EXPECT_EQ(BufferType::kCombinedImageSampler, bufs[0].type); in TEST_F() [all …]
|
/third_party/curl/lib/ |
D | socks_sspi.c | 123 sspi_recv_token.BufferType = SECBUFFER_TOKEN; in Curl_SOCKS5_gssapi_negotiate() 131 sspi_send_token.BufferType = SECBUFFER_TOKEN; in Curl_SOCKS5_gssapi_negotiate() 400 sspi_w_token[0].BufferType = SECBUFFER_TOKEN; in Curl_SOCKS5_gssapi_negotiate() 417 sspi_w_token[2].BufferType = SECBUFFER_PADDING; in Curl_SOCKS5_gssapi_negotiate() 551 sspi_w_token[0].BufferType = SECBUFFER_STREAM; in Curl_SOCKS5_gssapi_negotiate() 552 sspi_w_token[1].BufferType = SECBUFFER_DATA; in Curl_SOCKS5_gssapi_negotiate()
|