Home
last modified time | relevance | path

Searched refs:descs (Results 1 – 25 of 65) sorted by relevance

123

/third_party/flutter/skia/third_party/externals/angle2/scripts/
Dexport_targets.py118 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/
Dexport_targets.py127 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/
Dpool.h107 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/
Dpanvk_vX_cs.h45 void *descs);
49 void *descs);
56 void *descs);
64 void *descs);
72 void *descs);
128 const struct panfrost_ptr *descs);
Dpanvk_vX_cs.c118 void *descs) in panvk_per_arch()
120 struct mali_attribute_packed *attrib = descs; in panvk_per_arch()
143 void *descs) in panvk_per_arch()
145 struct mali_attribute_buffer_packed *buf = descs; in panvk_per_arch()
229 void *descs) in panvk_per_arch()
231 struct mali_attribute_buffer_packed *buf = descs; in panvk_per_arch()
296 void *descs) in panvk_per_arch()
298 struct mali_attribute_packed *attrib = descs; in panvk_per_arch()
316 void *descs) in panvk_per_arch()
318 struct mali_uniform_buffer_packed *ubos = descs; in panvk_per_arch()
[all …]
Dpanvk_vX_image.c129 STATIC_ASSERT(sizeof(view->descs.tex) >= pan_size(TEXTURE)); in panvk_per_arch()
130 GENX(panfrost_new_texture)(pdev, &view->pview, &view->descs.tex, &view->bo->ptr); in panvk_per_arch()
134 uint8_t *attrib_buf = (uint8_t *)view->descs.img_attrib_buf; in panvk_per_arch()
207 pan_pack(&view->descs.tex, TEXTURE, cfg) { in panvk_per_arch()
222 uint8_t *attrib_buf = (uint8_t *)view->descs.img_attrib_buf; in panvk_per_arch()
Dpanvk_vX_device.c56 if (batch->tiler.descs.cpu) { in panvk_queue_submit_batch()
57 memcpy(batch->tiler.descs.cpu, batch->tiler.templ, in panvk_queue_submit_batch()
/third_party/mesa3d/src/panfrost/lib/
Dpan_pool.h111 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()
Dpan_indirect_dispatch.c46 return dev->indirect_dispatch.descs->ptr.gpu; in get_rsd()
52 return dev->indirect_dispatch.descs->ptr.gpu + in get_tls()
175 dev->indirect_dispatch.descs = in GENX()
183 void *rsd = dev->indirect_dispatch.descs->ptr.cpu; in GENX()
188 void *tsd = dev->indirect_dispatch.descs->ptr.cpu + in GENX()
199 panfrost_bo_unreference(dev->indirect_dispatch.descs); in GENX()
Dpan_device.h138 struct panfrost_bo *descs; member
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dsi_descriptors.c526 struct si_descriptors *descs = si_sampler_and_image_descriptors(sctx, shader); in si_set_sampler_views() local
535 uint32_t *restrict desc = descs->list + desc_slot * 16; in si_set_sampler_views()
605 uint32_t * restrict desc = descs->list + desc_slot * 16; in si_set_sampler_views()
723 struct si_descriptors *descs = si_sampler_and_image_descriptors(ctx, shader); in si_disable_shader_image() local
729 memcpy(descs->list + desc_slot * 8, null_image_descriptor, 8 * 4); in si_disable_shader_image()
834 struct si_descriptors *descs = si_sampler_and_image_descriptors(ctx, shader); in si_set_shader_image() local
844 si_set_shader_image_desc(ctx, view, skip_decompress, descs->list + si_get_image_slot(slot) * 8, in si_set_shader_image()
845 descs->list + si_get_image_slot(slot + SI_NUM_IMAGES) * 8); in si_set_shader_image()
945 struct si_descriptors *descs = &sctx->descriptors[SI_DESCS_INTERNAL]; in si_update_ps_colorbuf0_slot() local
998 uint32_t *desc = descs->list + slot * 4; in si_update_ps_colorbuf0_slot()
[all …]
Dsi_debug.c750 struct si_descriptors *descs = in si_dump_descriptors() local
790 si_dump_descriptor_list(sctx->screen, &descs[SI_SHADER_DESCS_CONST_AND_SHADER_BUFFERS], name, in si_dump_descriptors()
793 si_dump_descriptor_list(sctx->screen, &descs[SI_SHADER_DESCS_CONST_AND_SHADER_BUFFERS], name, in si_dump_descriptors()
796 si_dump_descriptor_list(sctx->screen, &descs[SI_SHADER_DESCS_SAMPLERS_AND_IMAGES], name, in si_dump_descriptors()
799 si_dump_descriptor_list(sctx->screen, &descs[SI_SHADER_DESCS_SAMPLERS_AND_IMAGES], name, in si_dump_descriptors()
/third_party/node/lib/internal/
Dfreeze_intrinsics.js396 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/amd/vulkan/
Dradv_perfcounter.c157 if (descs) { \
158 descs[*count] = PC_DESC((op), unit, name, category, description, uuid, __VA_ARGS__); \
218 struct radv_perfcounter_desc *descs) in radv_query_perfcounter_descs() argument
305 struct radv_perfcounter_desc *descs = malloc(sizeof(*descs) * count); in radv_init_perfcounter_descs() local
306 if (!descs) in radv_init_perfcounter_descs()
309 radv_query_perfcounter_descs(pdev, &count, descs); in radv_init_perfcounter_descs()
311 pdev->perfcounters = descs; in radv_init_perfcounter_descs()
330 const struct radv_perfcounter_desc *descs = pdevice->perfcounters; in radv_get_counter_registers() local
332 unsigned full_reg_cnt = num_indices * ARRAY_SIZE(descs->impl.regs); in radv_get_counter_registers()
341 for (unsigned j = 0; j < ARRAY_SIZE(descs[index].impl.regs) && descs[index].impl.regs[j]; in radv_get_counter_registers()
[all …]
/third_party/mesa3d/src/gallium/drivers/lima/
Dlima_texture.c318 uint32_t *descs = in lima_update_textures() local
327 descs[i] = lima_ctx_buff_va(ctx, lima_ctx_buff_pp_tex_desc) + offset; in lima_update_textures()
328 lima_update_tex_desc(ctx, sampler, texture, (void *)descs + offset, desc_size); in lima_update_textures()
333 job->dump, descs, size, false, "add textures_desc at va %x\n", in lima_update_textures()
337 job->dump, descs, size, in lima_update_textures()
/third_party/mesa3d/src/virtio/vulkan/
Dvn_instance.c367 VkCommandStreamDescriptionMESA *descs = local_descs; in vn_instance_submission_get_cs() local
369 descs = in vn_instance_submission_get_cs()
371 if (!descs) in vn_instance_submission_get_cs()
379 descs[desc_count++] = (VkCommandStreamDescriptionMESA){ in vn_instance_submission_get_cs()
388 desc_count, descs, NULL, 0, NULL, 0); in vn_instance_submission_get_cs()
393 if (descs != local_descs) in vn_instance_submission_get_cs()
394 free(descs); in vn_instance_submission_get_cs()
403 descs, NULL, 0, NULL, 0); in vn_instance_submission_get_cs()
406 if (descs != local_descs) in vn_instance_submission_get_cs()
407 free(descs); in vn_instance_submission_get_cs()
/third_party/node/deps/npm/node_modules/yargs/lib/
Dcompletion.js74 const descs = usage.getDescriptions()
83 const desc = descs[key] || ''
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
DvktPipelineMatchedAttachmentsTests.cpp116 const VkAttachmentDescription descs[2] = in testMatchedAttachments() local
174 descs, // const VkAttachmentDescription* pAttachments; in testMatchedAttachments()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineMatchedAttachmentsTests.cpp116 const VkAttachmentDescription descs[2] = in testMatchedAttachments() local
174 descs, // const VkAttachmentDescription* pAttachments; in testMatchedAttachments()
/third_party/mesa3d/src/microsoft/clc/
Dcompute_test.h78 descs.push_back(res); in add()
94 range.OffsetInDescriptorsFromTableStart = descs.size() - 1; in add()
100 std::vector<ComPtr<ID3D12Resource>> descs; member
Dcompute_test.cpp428 handle = offset_cpu_handle(handle, resources.descs.size() * uav_heap_incr); in add_uav_resource()
453 handle = offset_cpu_handle(handle, resources.descs.size() * uav_heap_incr); in add_cbv_resource()
624 if (!resources.descs[i].Get()) in run_shader_with_raw_args()
627 resource_barrier(resources.descs[i], in run_shader_with_raw_args()
/third_party/mesa3d/src/gallium/drivers/d3d12/
Dd3d12_draw.cpp98 D3D12_CPU_DESCRIPTOR_HANDLE descs[PIPE_MAX_SHADER_SAMPLER_VIEWS]; in fill_srv_descriptors() local
115 descs[desc_idx] = view->handle.cpu_handle; in fill_srv_descriptors()
142 descs[desc_idx] = screen->null_srvs[shader->srv_bindings[i].dimension].cpu_handle; in fill_srv_descriptors()
146 …d3d12_descriptor_heap_append_handles(batch->view_heap, descs, shader->end_srv_binding - shader->be… in fill_srv_descriptors()
197 D3D12_CPU_DESCRIPTOR_HANDLE descs[PIPE_MAX_SHADER_SAMPLER_VIEWS]; in fill_sampler_descriptors() local
215 descs[desc_idx] = sampler->handle_without_shadow.cpu_handle; in fill_sampler_descriptors()
217 descs[desc_idx] = sampler->handle.cpu_handle; in fill_sampler_descriptors()
219 descs[desc_idx] = ctx->null_sampler.cpu_handle; in fill_sampler_descriptors()
222 …d3d12_descriptor_heap_append_handles(batch->sampler_heap, descs, shader->end_srv_binding - shader-… in fill_sampler_descriptors()
/third_party/NuttX/drivers/usbdev/gadget/fconfig/src/
Df_generic.c455 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/mindspore/patches/
D0035-nnrt-delegate-support-metagraph.patch79 +/// \param[in] descs NNRT device description array.
83 +OH_AI_API NNRTDeviceDesc *OH_AI_GetElementOfNNRTDeviceDescs(NNRTDeviceDesc *descs, size_t index);
154 +/// \param[in] descs NNRT device description array.
158 +OH_AI_API NNRTDeviceDesc *OH_AI_GetElementOfNNRTDeviceDescs(NNRTDeviceDesc *descs, size_t index);
291 +NNRTDeviceDesc *OH_AI_GetElementOfNNRTDeviceDescs(NNRTDeviceDesc *descs, size_t index) {
292 + if (descs == nullptr) {
293 + MS_LOG(ERROR) << "descs is null";
296 + return descs + index;
/third_party/mesa3d/src/imgui/
Dimgui_memory_editor.h538 …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()

123