/external/mesa3d/src/gallium/state_trackers/va/ |
D | config.c | 111 vlVaGetConfigAttributes(VADriverContextP ctx, VAProfile profile, VAEntrypoint entrypoint, in vlVaGetConfigAttributes() argument 124 if (entrypoint == VAEntrypointVLD) { in vlVaGetConfigAttributes() 137 } else if (entrypoint == VAEntrypointEncSlice) { in vlVaGetConfigAttributes() 155 } else if (entrypoint == VAEntrypointVideoProc) { in vlVaGetConfigAttributes() 176 vlVaCreateConfig(VADriverContextP ctx, VAProfile profile, VAEntrypoint entrypoint, in vlVaCreateConfig() argument 197 if (profile == VAProfileNone && entrypoint == VAEntrypointVideoProc) { in vlVaCreateConfig() 198 config->entrypoint = PIPE_VIDEO_ENTRYPOINT_UNKNOWN; in vlVaCreateConfig() 232 switch (entrypoint) { in vlVaCreateConfig() 240 config->entrypoint = PIPE_VIDEO_ENTRYPOINT_BITSTREAM; in vlVaCreateConfig() 250 config->entrypoint = PIPE_VIDEO_ENTRYPOINT_ENCODE; in vlVaCreateConfig() [all …]
|
D | context.c | 240 context->templat.entrypoint = config->entrypoint; in vlVaCreateContext() 255 if (config->entrypoint != PIPE_VIDEO_ENTRYPOINT_ENCODE) { in vlVaCreateContext() 291 context->desc.base.entry_point = config->entrypoint; in vlVaCreateContext() 292 if (config->entrypoint == PIPE_VIDEO_ENTRYPOINT_ENCODE) { in vlVaCreateContext()
|
/external/icu/icu4c/source/common/ |
D | icuplug.cpp | 52 UPlugEntrypoint *entrypoint; /**< plugin entrypoint */ member 279 token = (*(plug->entrypoint))(plug, reason, status); in uplug_callPlug() 357 plug->entrypoint=NULL; in uplug_allocateEmptyPlug() 363 static UPlugData *uplug_allocatePlug(UPlugEntrypoint *entrypoint, const char *config, void *lib, co… in uplug_allocatePlug() argument 382 plug->entrypoint = entrypoint; in uplug_allocatePlug() 407 plug->entrypoint=0; in uplug_deallocatePlug() 531 static UPlugData* uplug_initPlugFromEntrypointAndLibrary(UPlugEntrypoint *entrypoint, const char *c… in uplug_initPlugFromEntrypointAndLibrary() argument 535 plug = uplug_allocatePlug(entrypoint, config, lib, sym, status); in uplug_initPlugFromEntrypointAndLibrary() 546 uplug_loadPlugFromEntrypoint(UPlugEntrypoint *entrypoint, const char *config, UErrorCode *status) { in uplug_loadPlugFromEntrypoint() argument 547 UPlugData* plug = uplug_initPlugFromEntrypointAndLibrary(entrypoint, config, NULL, NULL, status); in uplug_loadPlugFromEntrypoint() [all …]
|
/external/mesa3d/src/mapi/glapi/ |
D | glapi_entrypoint.c | 120 fill_in_entrypoint_offset(_glapi_proc entrypoint, unsigned int offset) in fill_in_entrypoint_offset() argument 122 GLubyte * const code = (GLubyte *) entrypoint; in fill_in_entrypoint_offset() 301 fill_in_entrypoint_offset(_glapi_proc entrypoint, GLuint offset) in fill_in_entrypoint_offset() argument 303 unsigned int *code = (unsigned int *) entrypoint; in fill_in_entrypoint_offset() 328 fill_in_entrypoint_offset(_glapi_proc entrypoint, GLuint offset) in fill_in_entrypoint_offset() argument 331 (void) entrypoint; in fill_in_entrypoint_offset()
|
D | glapi_getproc.c | 271 _glapi_proc entrypoint = NULL; in add_function_name() local 284 entrypoint = generate_entrypoint(~0); in add_function_name() 286 if (entrypoint == NULL) { in add_function_name() 297 entry->dispatch_stub = entrypoint; in add_function_name()
|
/external/mesa3d/src/compiler/nir/ |
D | nir_lower_io_to_temporaries.c | 37 nir_function_impl *entrypoint; member 96 } else if (impl == state->entrypoint) { in emit_output_copies_impl() 117 if (impl == state->entrypoint) { in emit_input_copies_impl() 150 nir_lower_io_to_temporaries(nir_shader *shader, nir_function_impl *entrypoint, in nir_lower_io_to_temporaries() argument 159 state.entrypoint = entrypoint; in nir_lower_io_to_temporaries()
|
/external/vulkan-validation-layers/tests/ |
D | vktestframework.cpp | 63 #define GET_INSTANCE_PROC_ADDR(inst, entrypoint) … argument 65 …m_fp##entrypoint = (PFN_vk##entrypoint)vkGetInstanceProcAddr(inst, "vk" #entrypoint); … 66 …if (m_fp##entrypoint == NULL) { … 67 …ERR_EXIT("vkGetInstanceProcAddr failed to find vk" #entrypoint, "vkGetInstanceProcAddr Failure"); \ 71 #define GET_DEVICE_PROC_ADDR(dev, entrypoint) … argument 73 …m_fp##entrypoint = (PFN_vk##entrypoint)vkGetDeviceProcAddr(dev, "vk" #entrypoint); \ 74 …if (m_fp##entrypoint == NULL) { \ 75 … ERR_EXIT("vkGetDeviceProcAddr failed to find vk" #entrypoint, "vkGetDeviceProcAddr Failure"); \
|
/external/deqp-deps/glslang/SPIRV/ |
D | disassemble.cpp | 519 unsigned entrypoint = stream[word - 1]; in disassembleInstruction() local 521 if (entrypoint < GLSLstd450Count) { in disassembleInstruction() 522 out << "(" << GlslStd450DebugNames[entrypoint] << ")"; in disassembleInstruction() 526 out << "(" << GLSLextAMDGetDebugNames(name, entrypoint) << ")"; in disassembleInstruction() 531 out << "(" << GLSLextNVGetDebugNames(name, entrypoint) << ")"; in disassembleInstruction() 654 static const char* GLSLextAMDGetDebugNames(const char* name, unsigned entrypoint) in GLSLextAMDGetDebugNames() argument 657 switch (entrypoint) { in GLSLextAMDGetDebugNames() 665 switch (entrypoint) { in GLSLextAMDGetDebugNames() 678 switch (entrypoint) { in GLSLextAMDGetDebugNames() 684 switch (entrypoint) { in GLSLextAMDGetDebugNames() [all …]
|
/external/mesa3d/src/gallium/auxiliary/vl/ |
D | vl_decoder.c | 37 enum pipe_video_entrypoint entrypoint) in vl_profile_supported() argument 42 return entrypoint != PIPE_VIDEO_ENTRYPOINT_ENCODE; in vl_profile_supported() 78 templat->entrypoint, in vl_create_decoder()
|
D | vl_mpeg12_decoder.c | 198 if (dec->base.entrypoint <= PIPE_VIDEO_ENTRYPOINT_IDCT) in init_zscan_buffer() 500 if (dec->base.entrypoint <= PIPE_VIDEO_ENTRYPOINT_IDCT) { in vl_mpeg12_destroy() 556 if (dec->base.entrypoint <= PIPE_VIDEO_ENTRYPOINT_IDCT) in vl_mpeg12_get_decode_buffer() 563 if (dec->base.entrypoint == PIPE_VIDEO_ENTRYPOINT_BITSTREAM) in vl_mpeg12_get_decode_buffer() 609 if (dec->base.entrypoint == PIPE_VIDEO_ENTRYPOINT_BITSTREAM) { in vl_mpeg12_begin_frame() 646 if (dec->base.entrypoint >= PIPE_VIDEO_ENTRYPOINT_IDCT) { in vl_mpeg12_begin_frame() 811 if (dec->base.entrypoint <= PIPE_VIDEO_ENTRYPOINT_IDCT) in vl_mpeg12_end_frame() 828 if (dec->base.entrypoint <= PIPE_VIDEO_ENTRYPOINT_IDCT) in vl_mpeg12_end_frame() 945 num_channels = dec->base.entrypoint <= PIPE_VIDEO_ENTRYPOINT_IDCT ? 4 : 1; in init_zscan() 1075 if (dec->base.entrypoint <= PIPE_VIDEO_ENTRYPOINT_IDCT) { in mc_vert_shader_callback() [all …]
|
D | vl_stubs.c | 16 enum pipe_video_entrypoint entrypoint) in vl_profile_supported() argument 53 enum pipe_video_entrypoint entrypoint) in vl_video_buffer_is_format_supported() argument
|
/external/mesa3d/src/intel/vulkan/ |
D | anv_nir_lower_multiview.c | 168 nir_function_impl *entrypoint = nir_shader_get_entrypoint(shader); in anv_nir_lower_multiview() local 170 nir_builder_init(&state.builder, entrypoint); in anv_nir_lower_multiview() 173 nir_foreach_block(block, entrypoint) { in anv_nir_lower_multiview() 210 assert(view_index->parent_instr->block == nir_start_block(entrypoint)); in anv_nir_lower_multiview() 229 nir_metadata_preserve(entrypoint, nir_metadata_block_index | in anv_nir_lower_multiview()
|
D | anv_pipeline.c | 353 const char *entrypoint, in anv_pipeline_hash_shader() argument 371 _mesa_sha1_update(&ctx, entrypoint, strlen(entrypoint)); in anv_pipeline_hash_shader() 386 const char *entrypoint, in anv_pipeline_compile() argument 396 module, entrypoint, stage, in anv_pipeline_compile() 500 const char *entrypoint, in anv_pipeline_compile_vs() argument 512 anv_pipeline_hash_shader(pipeline, module, entrypoint, in anv_pipeline_compile_vs() 531 module, entrypoint, in anv_pipeline_compile_vs() 763 const char *entrypoint, in anv_pipeline_compile_gs() argument 775 anv_pipeline_hash_shader(pipeline, module, entrypoint, in anv_pipeline_compile_gs() 794 module, entrypoint, in anv_pipeline_compile_gs() [all …]
|
/external/mesa3d/src/gallium/state_trackers/omx_bellagio/ |
D | Makefile.sources | 2 entrypoint.c \ 3 entrypoint.h \
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | radeon_video.h | 76 enum pipe_video_entrypoint entrypoint, 83 enum pipe_video_entrypoint entrypoint);
|
D | radeon_video.c | 218 enum pipe_video_entrypoint entrypoint, in rvid_get_video_param() argument 227 if (entrypoint == PIPE_VIDEO_ENTRYPOINT_ENCODE) { in rvid_get_video_param() 337 enum pipe_video_entrypoint entrypoint) in rvid_is_format_supported() argument 348 return vl_video_buffer_is_format_supported(screen, format, profile, entrypoint); in rvid_is_format_supported()
|
/external/selinux/python/sepolicy/sepolicy/help/ |
D | files_exec.txt | 4 …entrypoint to an confined domain. If you have an alternate executable that you would like to run …
|
/external/vulkan-validation-layers/layers/ |
D | shader_validation.cpp | 619 …_t, interface_var> CollectInterfaceByLocation(shader_module const *src, spirv_inst_iter entrypoint, in CollectInterfaceByLocation() argument 664 while (entrypoint.word(word) & 0xff000000u) { in CollectInterfaceByLocation() 671 for (; word < entrypoint.len(); word++) { in CollectInterfaceByLocation() 672 auto insn = src->get_def(entrypoint.word(word)); in CollectInterfaceByLocation() 860 shader_module const *vs, spirv_inst_iter entrypoint) { in ValidateViAgainstVsInputs() argument 863 auto inputs = CollectInterfaceByLocation(vs, entrypoint, spv::StorageClassInput, false); in ValidateViAgainstVsInputs() 922 … spirv_inst_iter entrypoint, PIPELINE_STATE const *pipeline, uint32_t subpass_index) { in ValidateFsOutputsAgainstRenderPass() argument 939 auto outputs = CollectInterfaceByLocation(fs, entrypoint, spv::StorageClassOutput, false); in ValidateFsOutputsAgainstRenderPass() 1008 …tSizeWritten(shader_module const *src, spirv_inst_iter builtin_instr, spirv_inst_iter entrypoint) { in IsPointSizeWritten() argument 1015 auto insn = entrypoint; in IsPointSizeWritten() [all …]
|
/external/u-boot/cmd/ |
D | armflash.c | 26 u32 entrypoint; member 108 afi->entrypoint = readl((void *)imginfo + 0x10); in parse_bank() 128 afi->entrypoint = readl((void *)imginfo+0x08); in parse_bank() 231 printf(" Entry point: 0x%08X\n", afi->entrypoint); in print_images()
|
/external/virglrenderer/src/gallium/include/pipe/ |
D | p_screen.h | 98 enum pipe_video_entrypoint entrypoint, 141 enum pipe_video_entrypoint entrypoint );
|
/external/mesa3d/src/gallium/drivers/radeonsi/ |
D | si_get.c | 555 enum pipe_video_entrypoint entrypoint, in si_get_video_param_no_decode() argument 560 return vl_profile_supported(screen, profile, entrypoint); in si_get_video_param_no_decode() 583 enum pipe_video_entrypoint entrypoint, in si_get_video_param() argument 589 if (entrypoint == PIPE_VIDEO_ENTRYPOINT_ENCODE) { in si_get_video_param() 711 enum pipe_video_entrypoint entrypoint) in si_vid_is_format_supported() argument 722 return vl_video_buffer_is_format_supported(screen, format, profile, entrypoint); in si_vid_is_format_supported()
|
/external/mesa3d/src/gallium/include/pipe/ |
D | p_screen.h | 116 enum pipe_video_entrypoint entrypoint, 169 enum pipe_video_entrypoint entrypoint );
|
/external/mesa3d/src/gallium/drivers/nouveau/ |
D | nouveau_vp3_video.c | 437 enum pipe_video_entrypoint entrypoint, in nouveau_vp3_screen_get_video_param() argument 447 return entrypoint == PIPE_VIDEO_ENTRYPOINT_BITSTREAM && in nouveau_vp3_screen_get_video_param() 499 enum pipe_video_entrypoint entrypoint) in nouveau_vp3_screen_video_supported() argument 504 return vl_video_buffer_is_format_supported(screen, format, profile, entrypoint); in nouveau_vp3_screen_video_supported()
|
D | nouveau_vp3_video.h | 235 enum pipe_video_entrypoint entrypoint, 242 enum pipe_video_entrypoint entrypoint);
|
/external/mesa3d/src/amd/vulkan/ |
D | radv_entrypoints_gen.py | 271 for entrypoint in extension.findall('./require/command'): 272 fullname = entrypoint.attrib['name']
|