Searched refs:fs_module (Results 1 – 12 of 12) sorted by relevance
/external/python/pyfakefs/pyfakefs/pytest_tests/ |
D | pytest_module_fixture_test.py | 18 def use_fs(fs_module): argument 19 fs_module.create_file(os.path.join("foo", "bar")) 20 yield fs_module
|
D | conftest.py | 23 from pyfakefs.pytest_plugin import fs, fs_module # noqa: F401
|
/external/mesa3d/src/amd/vulkan/meta/ |
D | radv_meta_blit2d.c | 507 nir_shader *fs_module = in get_color_pipeline() local 522 .module = vk_shader_module_handle_from_nir(fs_module), in get_color_pipeline() 594 ralloc_free(fs_module); in get_color_pipeline() 632 nir_shader *fs_module = build_nir_copy_fragment_shader_depth(device, src_func, name, in get_depth_only_pipeline() local 647 .module = vk_shader_module_handle_from_nir(fs_module), in get_depth_only_pipeline() 743 ralloc_free(fs_module); in get_depth_only_pipeline() 781 nir_shader *fs_module = build_nir_copy_fragment_shader_stencil( in get_stencil_only_pipeline() local 796 .module = vk_shader_module_handle_from_nir(fs_module), in get_stencil_only_pipeline() 887 ralloc_free(fs_module); in get_stencil_only_pipeline()
|
D | radv_meta_resolve_fs.c | 178 …nir_shader *fs_module = build_depth_stencil_resolve_fragment_shader(device, samples, index, resolv… in get_depth_stencil_resolve_pipeline() local 195 .module = vk_shader_module_handle_from_nir(fs_module), in get_depth_stencil_resolve_pipeline() 295 ralloc_free(fs_module); in get_depth_stencil_resolve_pipeline() 323 nir_shader *fs_module = build_resolve_fragment_shader(device, is_integer, samples); in get_color_resolve_pipeline() local 337 .module = vk_shader_module_handle_from_nir(fs_module), in get_color_resolve_pipeline() 409 ralloc_free(fs_module); in get_color_resolve_pipeline()
|
D | radv_meta_decompress.c | 73 nir_shader *fs_module = radv_meta_build_nir_fs_noop(device); in get_pipeline_gfx() local 101 .module = vk_shader_module_handle_from_nir(fs_module), in get_pipeline_gfx() 180 ralloc_free(fs_module); in get_pipeline_gfx()
|
D | radv_meta_fast_clear.c | 139 nir_shader *fs_module = radv_meta_build_nir_fs_noop(device); in get_pipeline() local 175 .module = vk_shader_module_handle_from_nir(fs_module), in get_pipeline() 250 ralloc_free(fs_module); in get_pipeline()
|
D | radv_meta_clear.c | 91 nir_shader *vs_module, *fs_module; in get_color_pipeline() local 93 build_color_shaders(device, &vs_module, &fs_module, frag_output); in get_color_pipeline() 104 .stageCount = fs_module ? 2 : 1, in get_color_pipeline() 116 .module = vk_shader_module_handle_from_nir(fs_module), in get_color_pipeline() 204 ralloc_free(fs_module); in get_color_pipeline() 356 nir_shader *vs_module, *fs_module; in get_depth_stencil_pipeline() local 358 build_depthstencil_shader(device, &vs_module, &fs_module, unrestricted); in get_depth_stencil_pipeline() 374 .stageCount = fs_module ? 2 : 1, in get_depth_stencil_pipeline() 386 .module = vk_shader_module_handle_from_nir(fs_module), in get_depth_stencil_pipeline() 481 ralloc_free(fs_module); in get_depth_stencil_pipeline()
|
D | radv_meta_resolve.c | 45 nir_shader *fs_module = build_nir_fs(device); in get_pipeline() local 67 .module = vk_shader_module_handle_from_nir(fs_module), in get_pipeline() 145 ralloc_free(fs_module); in get_pipeline()
|
/external/python/pyfakefs/pyfakefs/ |
D | pytest_plugin.py | 56 def fs_module(request): function
|
/external/python/pyfakefs/docs/ |
D | troubleshooting.rst | 302 * If you use the module- or session based variants of the ``fs`` fixture (e.g. ``fs_module`` or 309 def use_fs(fs_module): 311 yield fs_module 320 ``fs_module`` or ``fs_session`` fixture), this will be ignored. For example:
|
D | usage.rst | 47 functionality are provided, named ``fs_class``, ``fs_module`` and ``fs_session``,
|
/external/python/pyfakefs/ |
D | CHANGES.md | 347 inside an `fs_session` or `fs_module` fixture) will just reference the outer 421 (`fs_module` and `fs_session`)
|