/third_party/ffmpeg/libavfilter/ |
D | opencl.h | 197 #define CL_CREATE_BUFFER_FLAGS(ctx, buffer_name, flags, size, host_ptr) do { \ argument 198 ctx->buffer_name = clCreateBuffer( \ 205 CL_FAIL_ON_ERROR(AVERROR(EIO), "Failed to create buffer %s: %d.\n", #buffer_name, cle); \ 237 #define CL_CREATE_BUFFER(ctx, buffer_name, size) CL_CREATE_BUFFER_FLAGS(ctx, buffer_name, 0, size, … argument
|
/third_party/vk-gl-cts/external/amber/src/docs/ |
D | amber_script.md | 647 # Attach |buffer_name| as an output color attachment at location |idx|. 651 BIND BUFFER {buffer_name} AS color LOCATION _idx_ \ 654 # Attach |buffer_name| as the depth/stencil buffer. The provided buffer must 658 BIND BUFFER {buffer_name} AS depth_stencil 660 # Attach |buffer_name| as a multisample resolve target. The order of resolve 663 BIND BUFFER {buffer_name} AS resolve 665 # Attach |buffer_name| as the push_constant buffer. There can be only one 667 BIND BUFFER {buffer_name} AS push_constant 672 BIND BUFFER {buffer_name} [ AS {buffer_type} (default computed)] \ 679 BIND BUFFER {buffer_name} [ AS {buffer_type} (default computed)] \ [all …]
|
D | amber.md | 51 structure. You must set the `buffer_name` for each of the buffers you want to
|
/third_party/skia/third_party/externals/spirv-cross/ |
D | spirv_cpp.cpp | 41 auto buffer_name = to_name(type.self); in emit_buffer_block() local 43 …statement("internal::Resource<", buffer_name, type_to_array_glsl(type), "> ", instance_name, "__;"… in emit_buffer_block() 61 string buffer_name; in emit_interface_block() local 66 buffer_name = to_name(type.self); in emit_interface_block() 69 buffer_name = type_to_glsl(type); in emit_interface_block() 71 …statement("internal::", qual, "<", buffer_name, type_to_array_glsl(type), "> ", instance_name, "__… in emit_interface_block() 130 auto buffer_name = to_name(type.self); in emit_push_constant_block() local 133 …statement("internal::PushConstant<", buffer_name, type_to_array_glsl(type), "> ", instance_name, "… in emit_push_constant_block()
|
D | spirv_hlsl.cpp | 2118 auto buffer_name = to_name(type.self, false); in emit_buffer_block() local 2120 resource_names.find(buffer_name) != end(resource_names) || in emit_buffer_block() 2121 block_names.find(buffer_name) != end(block_names)) in emit_buffer_block() 2123 buffer_name = get_block_fallback_name(var.self); in emit_buffer_block() 2126 add_variable(block_names, resource_names, buffer_name); in emit_buffer_block() 2130 if (buffer_name.empty()) in emit_buffer_block() 2131 buffer_name = join("_", get<SPIRType>(var.basetype).self, "_", var.self); in emit_buffer_block() 2138 SPIRV_CROSS_THROW(join("cbuffer ID ", var.self, " (name: ", buffer_name, "), member index ", in emit_buffer_block() 2143 block_names.insert(buffer_name); in emit_buffer_block() 2146 declared_block_names[var.self] = buffer_name; in emit_buffer_block() [all …]
|
D | spirv_glsl.cpp | 2152 string buffer_name; in emit_buffer_reference_block() local 2159 buffer_name = to_name(type.self, false); in emit_buffer_reference_block() 2165 block_ssbo_names.find(buffer_name) != end(block_ssbo_names) || in emit_buffer_reference_block() 2166 resource_names.find(buffer_name) != end(resource_names)) in emit_buffer_reference_block() 2168 buffer_name = join("_", type.self); in emit_buffer_reference_block() 2173 add_variable(block_ssbo_names, resource_names, buffer_name); in emit_buffer_reference_block() 2178 if (buffer_name.empty()) in emit_buffer_reference_block() 2179 buffer_name = join("_", type.self); in emit_buffer_reference_block() 2181 block_names.insert(buffer_name); in emit_buffer_reference_block() 2182 block_ssbo_names.insert(buffer_name); in emit_buffer_reference_block() [all …]
|
/third_party/skia/third_party/externals/tint/src/transform/ |
D | first_index_offset.cc | 141 Symbol buffer_name = ctx.dst->Sym(); in Run() local 142 ctx.dst->Global(buffer_name, ctx.dst->ty.Of(struct_), in Run() 158 ctx.dst->MemberAccessor(buffer_name, it->second)); in Run() 166 ctx.dst->MemberAccessor(buffer_name, it->second)); in Run()
|
/third_party/mesa3d/src/intel/tools/ |
D | aubinator_error_decode.c | 286 const char *buffer_name; member 384 if (strcmp(sa->buffer_name, "HW Context") == 0) in qsort_hw_context_first() 386 if (strcmp(sb->buffer_name, "HW Context") == 0) in qsort_hw_context_first() 481 sections[num_sections].buffer_name = b->name; in read_data_file() 629 if (strcmp(sections[s].buffer_name, "ring buffer") != 0) in read_data_file() 692 sections[s].buffer_name, sections[s].ring_name, in read_data_file() 696 bool is_ring_buffer = strcmp(sections[s].buffer_name, "ring buffer") == 0; in read_data_file() 698 strcmp(sections[s].buffer_name, "batch buffer") == 0 || in read_data_file() 699 strcmp(sections[s].buffer_name, "HW Context") == 0) { in read_data_file()
|
/third_party/vk-gl-cts/external/amber/src/samples/ |
D | amber.cc | 166 opts->buffer_to_dump.back().buffer_name = args[i]; in ParseArgs() 583 options.buffer_to_dump.back().buffer_name = "0:0"; 604 buffer_info.buffer_name = fb_name; 652 if (buffer_info.buffer_name == options.fb_names[i]) { 656 "Framebuffer (" + buffer_info.buffer_name + ") size (" + 664 result = amber::Result("Framebuffer (" + buffer_info.buffer_name + 710 return s == buffer_info.buffer_name; 712 buffer_info.buffer_name == kGeneratedColorBuffer) { 716 buffer_file << buffer_info.buffer_name << std::endl;
|
/third_party/vk-gl-cts/external/amber/src/src/ |
D | amber.cc | 189 auto* buffer = script->GetBuffer(buffer_info.buffer_name); in ExecuteWithShaderData() 200 r = p.Parse(buffer_info.buffer_name); in ExecuteWithShaderData()
|
/third_party/skia/third_party/externals/harfbuzz/test/api/ |
D | test-buffer.c | 937 const char *buffer_name = buffer_names[i]; in main() local 939 hb_test_add_fixture_flavor (fixture, buffer_type, buffer_name, test_buffer_properties); in main() 940 hb_test_add_fixture_flavor (fixture, buffer_type, buffer_name, test_buffer_contents); in main() 941 hb_test_add_fixture_flavor (fixture, buffer_type, buffer_name, test_buffer_positions); in main()
|
/third_party/vk-gl-cts/external/amber/src/include/amber/ |
D | amber.h | 64 std::string buffer_name; member
|
/third_party/mesa3d/src/gallium/frontends/va/ |
D | va_private.h | 419 unsigned int *buffer_name, void **buffer);
|
D | surface.c | 399 unsigned int *buffer_name, void **buffer) in vlVaLockSurface() argument
|
/third_party/mindspore/patches/ |
D | 0005-micro-for-ohos.patch | 12622 << "extern unsigned char *" << ctx->buffer_name() << ";\n" 12789 cofs << "unsigned char *" << ctx_->buffer_name() << " = 0; \n";
|