/third_party/flutter/skia/third_party/externals/angle2/scripts/ |
D | export_targets.py | 118 descs = json.loads(p.stdout.decode()) variable 125 def flattened_target(target_name: str, descs: dict, stop_at_lib: bool =True) -> dict: 126 flattened = dict(descs[target_name]) 131 dep = descs[k] 150 dag_traverse(descs[target_name]['deps'], pre) 191 def has_all_includes(target_name: str, descs: dict) -> bool: 192 flat = flattened_target(target_name, descs, stop_at_lib=False) 197 desc = descs[target_name] 232 def gather_libraries(roots: Sequence[str], descs: dict) -> Set[str]: 235 cur = descs[target_name] [all …]
|
/third_party/skia/third_party/externals/angle2/scripts/ |
D | export_targets.py | 127 descs = json.loads(p.stdout.decode()) variable 134 def flattened_target(target_name: str, descs: dict, stop_at_lib: bool =True) -> dict: 135 flattened = dict(descs[target_name]) 140 dep = descs[k] 165 dag_traverse(descs[target_name]['deps'], pre) 266 def has_all_includes(target_name: str, descs: dict) -> bool: 271 flat = flattened_target(target_name, descs, stop_at_lib=False) 276 desc = descs[target_name] 311 def gather_libraries(roots: Sequence[str], descs: dict) -> Set[str]: 314 cur = descs[target_name] [all …]
|
/third_party/mesa3d/src/asahi/lib/ |
D | pool.h | 107 const struct agx_desc_alloc_info *descs) in agx_pool_alloc_descs() argument 110 unsigned align = descs[0].align; in agx_pool_alloc_descs() 112 for (unsigned i = 0; descs[i].size; i++) { in agx_pool_alloc_descs() 113 assert(!(size & (descs[i].align - 1))); in agx_pool_alloc_descs() 114 size += descs[i].size * descs[i].nelems; in agx_pool_alloc_descs()
|
/third_party/mesa3d/src/panfrost/vulkan/ |
D | panvk_vX_cs.h | 45 void *descs); 49 void *descs); 56 void *descs); 63 void *descs); 71 void *descs); 122 const struct panfrost_ptr *descs);
|
D | panvk_vX_descriptor_set.c | 61 set->descs = vk_alloc(&device->vk.alloc, in panvk_per_arch() 62 sizeof(*set->descs) * layout->num_descs, 8, in panvk_per_arch() 64 if (!set->descs) in panvk_per_arch() 98 set->descs[layout->bindings[i].desc_idx].image.sampler = in panvk_per_arch() 110 vk_free(&device->vk.alloc, set->descs); in panvk_per_arch() 206 view->descs.tex, pan_size(TEXTURE)); in panvk_per_arch() 238 struct panvk_descriptor *descs = &set->descs[binding_layout->desc_idx + dest_offset]; in panvk_per_arch() local 268 panvk_set_image_desc(&descs[i], &pDescriptorWrite->pImageInfo[src_offset + i]); in panvk_per_arch() 274 … panvk_set_texel_buffer_view_desc(&descs[i], &pDescriptorWrite->pTexelBufferView[src_offset + i]); in panvk_per_arch() 289 panvk_set_buffer_info_desc(&descs[i], &pDescriptorWrite->pBufferInfo[src_offset + i]); in panvk_per_arch() [all …]
|
D | panvk_vX_cs.c | 165 void *descs) in panvk_per_arch() 167 struct mali_attribute_packed *attrib = descs; in panvk_per_arch() 198 void *descs) in panvk_per_arch() 200 struct mali_attribute_buffer_packed *buf = descs; in panvk_per_arch() 266 void *descs) in panvk_per_arch() 268 struct mali_attribute_buffer_packed *buf = descs; in panvk_per_arch() 329 void *descs) in panvk_per_arch() 331 struct mali_attribute_packed *attrib = descs; in panvk_per_arch() 349 void *descs) in panvk_per_arch() 351 struct mali_uniform_buffer_packed *ubos = descs; in panvk_per_arch() [all …]
|
D | panvk_vX_image.c | 152 &view->descs.tex : view->bo->ptr.cpu; in panvk_per_arch() 154 STATIC_ASSERT(sizeof(view->descs.tex) >= pan_size(TEXTURE)); in panvk_per_arch()
|
D | panvk_vX_device.c | 55 if (batch->tiler.descs.cpu) { in panvk_queue_submit_batch() 56 memcpy(batch->tiler.descs.cpu, batch->tiler.templ, in panvk_queue_submit_batch()
|
D | panvk_vX_cmd_buffer.c | 162 PAN_ARCH >= 6 ? batch->tiler.descs.gpu : 0, in panvk_per_arch() 499 if (batch->tiler.descs.cpu) in panvk_per_arch() 502 batch->tiler.descs = in panvk_per_arch() 510 .gpu = batch->tiler.descs.gpu, in panvk_per_arch() 515 memcpy(batch->tiler.descs.cpu, batch->tiler.templ, in panvk_per_arch() 517 batch->tiler.ctx.bifrost = batch->tiler.descs.gpu; in panvk_per_arch()
|
/third_party/mesa3d/src/panfrost/lib/ |
D | pan_pool.h | 111 const struct pan_desc_alloc_info *descs) in pan_pool_alloc_descs() argument 114 unsigned align = descs[0].align; in pan_pool_alloc_descs() 116 for (unsigned i = 0; descs[i].size; i++) { in pan_pool_alloc_descs() 117 assert(!(size & (descs[i].align - 1))); in pan_pool_alloc_descs() 118 size += descs[i].size * descs[i].nelems; in pan_pool_alloc_descs()
|
D | pan_indirect_dispatch.c | 66 return dev->indirect_dispatch.descs->ptr.gpu; in get_rsd() 72 return dev->indirect_dispatch.descs->ptr.gpu + in get_tls() 242 dev->indirect_dispatch.descs = in GENX() 254 void *rsd = dev->indirect_dispatch.descs->ptr.cpu; in GENX() 259 void *tsd = dev->indirect_dispatch.descs->ptr.cpu + in GENX() 270 panfrost_bo_unreference(dev->indirect_dispatch.descs); in GENX()
|
D | pan_device.h | 137 struct panfrost_bo *descs; member
|
/third_party/node/lib/internal/ |
D | freeze_intrinsics.js | 396 const descs = ObjectGetOwnPropertyDescriptors(obj); 398 ArrayPrototypeForEach(ReflectOwnKeys(descs), (name) => { 407 const desc = descs[name]; 503 const descs = ObjectGetOwnPropertyDescriptors(obj); 504 if (!descs) { 508 return enableDerivedOverride(obj, prop, descs[prop]); 511 return enableDerivedOverride(obj, prop, descs[prop]);
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_descriptors.c | 522 struct si_descriptors *descs = si_sampler_and_image_descriptors(sctx, shader); in si_set_sampler_views() local 531 uint32_t *restrict desc = descs->list + desc_slot * 16; in si_set_sampler_views() 592 uint32_t * restrict desc = descs->list + desc_slot * 16; in si_set_sampler_views() 704 struct si_descriptors *descs = si_sampler_and_image_descriptors(ctx, shader); in si_disable_shader_image() local 710 memcpy(descs->list + desc_slot * 8, null_image_descriptor, 8 * 4); in si_disable_shader_image() 803 struct si_descriptors *descs = si_sampler_and_image_descriptors(ctx, shader); in si_set_shader_image() local 813 si_set_shader_image_desc(ctx, view, skip_decompress, descs->list + si_get_image_slot(slot) * 8, in si_set_shader_image() 814 descs->list + si_get_image_slot(slot + SI_NUM_IMAGES) * 8); in si_set_shader_image() 914 struct si_descriptors *descs = &sctx->descriptors[SI_DESCS_INTERNAL]; in si_update_ps_colorbuf0_slot() local 961 uint32_t *desc = descs->list + slot * 4; in si_update_ps_colorbuf0_slot() [all …]
|
D | si_debug.c | 763 struct si_descriptors *descs = in si_dump_descriptors() local 803 si_dump_descriptor_list(sctx->screen, &descs[SI_SHADER_DESCS_CONST_AND_SHADER_BUFFERS], name, in si_dump_descriptors() 806 si_dump_descriptor_list(sctx->screen, &descs[SI_SHADER_DESCS_CONST_AND_SHADER_BUFFERS], name, in si_dump_descriptors() 809 si_dump_descriptor_list(sctx->screen, &descs[SI_SHADER_DESCS_SAMPLERS_AND_IMAGES], name, in si_dump_descriptors() 812 si_dump_descriptor_list(sctx->screen, &descs[SI_SHADER_DESCS_SAMPLERS_AND_IMAGES], name, in si_dump_descriptors()
|
/third_party/mesa3d/src/gallium/drivers/lima/ |
D | lima_texture.c | 286 uint32_t *descs = in lima_update_textures() local 295 descs[i] = lima_ctx_buff_va(ctx, lima_ctx_buff_pp_tex_desc) + offset; in lima_update_textures() 296 lima_update_tex_desc(ctx, sampler, texture, (void *)descs + offset, desc_size); in lima_update_textures() 301 job->dump, descs, size, false, "add textures_desc at va %x\n", in lima_update_textures() 305 job->dump, descs, size, in lima_update_textures()
|
/third_party/mesa3d/src/virtio/vulkan/ |
D | vn_instance.c | 357 VkCommandStreamDescriptionMESA *descs = local_descs; in vn_instance_submission_get_cs() local 359 descs = in vn_instance_submission_get_cs() 361 if (!descs) in vn_instance_submission_get_cs() 369 descs[desc_count++] = (VkCommandStreamDescriptionMESA){ in vn_instance_submission_get_cs() 378 desc_count, descs, NULL, 0, NULL, 0); in vn_instance_submission_get_cs() 383 if (descs != local_descs) in vn_instance_submission_get_cs() 384 free(descs); in vn_instance_submission_get_cs() 393 descs, NULL, 0, NULL, 0); in vn_instance_submission_get_cs() 396 if (descs != local_descs) in vn_instance_submission_get_cs() 397 free(descs); in vn_instance_submission_get_cs()
|
/third_party/mesa3d/src/gallium/drivers/d3d12/ |
D | d3d12_draw.cpp | 88 D3D12_CPU_DESCRIPTOR_HANDLE descs[PIPE_MAX_SHADER_SAMPLER_VIEWS]; in fill_srv_descriptors() local 105 descs[desc_idx] = view->handle.cpu_handle; in fill_srv_descriptors() 125 descs[desc_idx] = screen->null_srvs[shader->srv_bindings[i].dimension].cpu_handle; in fill_srv_descriptors() 129 …d3d12_descriptor_heap_append_handles(batch->view_heap, descs, shader->end_srv_binding - shader->be… in fill_srv_descriptors() 141 D3D12_CPU_DESCRIPTOR_HANDLE descs[PIPE_MAX_SHADER_SAMPLER_VIEWS]; in fill_sampler_descriptors() local 159 descs[desc_idx] = sampler->handle_without_shadow.cpu_handle; in fill_sampler_descriptors() 161 descs[desc_idx] = sampler->handle.cpu_handle; in fill_sampler_descriptors() 163 descs[desc_idx] = ctx->null_sampler.cpu_handle; in fill_sampler_descriptors() 166 …d3d12_descriptor_heap_append_handles(batch->sampler_heap, descs, shader->end_srv_binding - shader-… in fill_sampler_descriptors()
|
/third_party/grpc/src/ruby/lib/grpc/generic/ |
D | service.rb | 149 descs = rpc_descs 163 descs.each_pair do |name, desc|
|
/third_party/node/deps/npm/node_modules/yargs/lib/ |
D | completion.js | 74 const descs = usage.getDescriptions() 83 const desc = descs[key] || ''
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/ |
D | vktPipelineMatchedAttachmentsTests.cpp | 110 const VkAttachmentDescription descs[2] = in testMatchedAttachments() local 168 descs, // const VkAttachmentDescription* pAttachments; in testMatchedAttachments()
|
/third_party/mesa3d/src/microsoft/clc/ |
D | compute_test.h | 78 descs.push_back(res); in add() 94 range.OffsetInDescriptorsFromTableStart = descs.size() - 1; in add() 100 std::vector<ComPtr<ID3D12Resource>> descs; member
|
/third_party/NuttX/drivers/usbdev/gadget/fconfig/src/ |
D | f_generic.c | 455 priv->eps[i].descs[j] = priv->eps_descs[i][j]; in generic_eps_alloc() 460 desc = priv->eps[i].descs[2]; in generic_eps_alloc() 463 desc = priv->eps[i].descs[1]; in generic_eps_alloc() 466 desc = priv->eps[i].descs[1]; in generic_eps_alloc()
|
/third_party/mesa3d/src/imgui/ |
D | imgui_memory_editor.h | 538 …const char* descs[] = { "Int8", "Uint8", "Int16", "Uint16", "Int32", "Uint32", "Int64", "Uint64", … in DataTypeGetDesc() local 540 return descs[data_type]; in DataTypeGetDesc() 552 const char* descs[] = { "Bin", "Dec", "Hex" }; in DataFormatGetDesc() local 554 return descs[data_format]; in DataFormatGetDesc()
|
/third_party/mesa3d/src/gallium/drivers/panfrost/ |
D | pan_compute.c | 72 panfrost_shader_compile(pctx->screen, &ctx->shaders, &ctx->descs, in panfrost_create_compute_state()
|