Home
last modified time | relevance | path

Searched refs:entrypoint (Results 1 – 25 of 212) sorted by relevance

123456789

/external/mesa3d/src/gallium/state_trackers/va/
Dconfig.c111 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 …]
Dcontext.c240 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/
Dicuplug.cpp52 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/
Dglapi_entrypoint.c120 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()
Dglapi_getproc.c271 _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/
Dnir_lower_io_to_temporaries.c37 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/
Dvktestframework.cpp63 #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/
Ddisassemble.cpp519 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/
Dvl_decoder.c37 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()
Dvl_mpeg12_decoder.c198 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 …]
Dvl_stubs.c16 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/
Danv_nir_lower_multiview.c168 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()
Danv_pipeline.c353 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/
DMakefile.sources2 entrypoint.c \
3 entrypoint.h \
/external/mesa3d/src/gallium/drivers/r600/
Dradeon_video.h76 enum pipe_video_entrypoint entrypoint,
83 enum pipe_video_entrypoint entrypoint);
Dradeon_video.c218 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/
Dfiles_exec.txt4entrypoint to an confined domain. If you have an alternate executable that you would like to run …
/external/vulkan-validation-layers/layers/
Dshader_validation.cpp619 …_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/
Darmflash.c26 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/
Dp_screen.h98 enum pipe_video_entrypoint entrypoint,
141 enum pipe_video_entrypoint entrypoint );
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_get.c555 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/
Dp_screen.h116 enum pipe_video_entrypoint entrypoint,
169 enum pipe_video_entrypoint entrypoint );
/external/mesa3d/src/gallium/drivers/nouveau/
Dnouveau_vp3_video.c437 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()
Dnouveau_vp3_video.h235 enum pipe_video_entrypoint entrypoint,
242 enum pipe_video_entrypoint entrypoint);
/external/mesa3d/src/amd/vulkan/
Dradv_entrypoints_gen.py271 for entrypoint in extension.findall('./require/command'):
272 fullname = entrypoint.attrib['name']

123456789