Home
last modified time | relevance | path

Searched refs:aspects (Results 1 – 25 of 188) sorted by relevance

12345678

/external/guice/core/test/com/google/inject/internal/
DProxyFactoryTest.java38 List<MethodAspect> aspects = Lists.newArrayList(); field in ProxyFactoryTest
45 aspects.add(new MethodAspect(any(), any(), interceptor)); in testSimpleCase()
46 ProxyFactory<Simple> factory = new ProxyFactory<>(injectionPoint, aspects); in testSimpleCase()
79 aspects.add(new MethodAspect(only(Bar.class), annotatedWith(Intercept.class), interceptor)); in testInterceptOneMethod()
82 new ProxyFactory<Foo>(InjectionPoint.forConstructorOf(Foo.class), aspects).create(); in testInterceptOneMethod()
84 new ProxyFactory<Bar>(InjectionPoint.forConstructorOf(Bar.class), aspects).create(); in testInterceptOneMethod()
134 aspects.add(new MethodAspect(any(), any(), interceptor)); in testWithConstructorArguments()
136 new ProxyFactory<A>(InjectionPoint.forConstructorOf(A.class), aspects); in testWithConstructorArguments()
149 aspects.add(new MethodAspect(not(any()), not(any()), interceptor)); in testNotProxied()
151 new ProxyFactory<A>(InjectionPoint.forConstructorOf(A.class), aspects); in testNotProxied()
[all …]
/external/mesa3d/src/intel/vulkan/
Dvk_format_info.h91 const VkImageAspectFlags aspects = vk_format_aspects(format); in vk_format_is_depth_or_stencil() local
92 return aspects & (VK_IMAGE_ASPECT_DEPTH_BIT | VK_IMAGE_ASPECT_STENCIL_BIT); in vk_format_is_depth_or_stencil()
98 const VkImageAspectFlags aspects = vk_format_aspects(format); in vk_format_has_depth() local
99 return aspects & VK_IMAGE_ASPECT_DEPTH_BIT; in vk_format_has_depth()
Danv_image.c126 uint32_t plane = anv_image_aspect_to_plane(image->aspects, aspect); in get_surface()
236 image->aspects & VK_IMAGE_ASPECT_ANY_COLOR_BIT_ANV); in add_fast_clear_state_buffer()
300 const unsigned plane = anv_image_aspect_to_plane(image->aspects, aspect); in make_surface()
546 image->aspects = vk_format_aspects(image->vk_format); in anv_image_create()
565 for_each_bit(b, image->aspects) { in anv_image_create()
655 anv_foreach_image_aspect_bit(aspect_bit, image, image->aspects) { in anv_BindImageMemory()
657 anv_image_aspect_to_plane(image->aspects, 1UL << aspect_bit); in anv_BindImageMemory()
675 VkImageAspectFlags aspects = image->aspects; in anv_BindImageMemory2KHR() local
683 aspects = plane_info->planeAspect; in anv_BindImageMemory2KHR()
693 anv_foreach_image_aspect_bit(aspect_bit, image, aspects) { in anv_BindImageMemory2KHR()
[all …]
Danv_private.h2307 #define anv_foreach_image_aspect_bit(b, image, aspects) \ argument
2308 for_each_bit(b, anv_image_expand_aspects(image, aspects))
2371 VkImageAspectFlags aspects; member
2483 uint32_t plane = anv_image_aspect_to_plane(image->aspects, aspect); in anv_image_aux_levels()
2505 uint32_t plane = anv_image_aspect_to_plane(image->aspects, aspect); in anv_image_aux_layers()
2534 uint32_t plane = anv_image_aspect_to_plane(image->aspects, aspect); in anv_image_get_clear_color_addr()
2560 if (!(image->aspects & VK_IMAGE_ASPECT_DEPTH_BIT)) in anv_can_sample_with_hiz()
2617 VkImageAspectFlags aspects) in anv_image_expand_aspects() argument
2622 if ((image->aspects & VK_IMAGE_ASPECT_PLANES_BITS_ANV) != 0 && in anv_image_expand_aspects()
2623 aspects == VK_IMAGE_ASPECT_COLOR_BIT) in anv_image_expand_aspects()
[all …]
DgenX_cmd_buffer.c419 assert(image->aspects & VK_IMAGE_ASPECT_ANY_COLOR_BIT_ANV); in genX()
440 assert(image->aspects & VK_IMAGE_ASPECT_ANY_COLOR_BIT_ANV); in genX()
469 assert(image->aspects & VK_IMAGE_ASPECT_ANY_COLOR_BIT_ANV); in init_fast_clear_state_entry()
472 uint32_t plane = anv_image_aspect_to_plane(image->aspects, aspect); in init_fast_clear_state_entry()
541 assert(image->aspects & VK_IMAGE_ASPECT_ANY_COLOR_BIT_ANV); in genX()
597 assert(image && image->aspects & VK_IMAGE_ASPECT_ANY_COLOR_BIT_ANV); in transition_color_buffer()
617 uint32_t plane = anv_image_aspect_to_plane(image->aspects, aspect); in transition_color_buffer()
625 assert(image->aspects == VK_IMAGE_ASPECT_COLOR_BIT); in transition_color_buffer()
2943 if (image && (image->aspects & VK_IMAGE_ASPECT_DEPTH_BIT)) { in cmd_buffer_emit_depth_stencil()
2945 anv_image_aspect_to_plane(image->aspects, VK_IMAGE_ASPECT_DEPTH_BIT); in cmd_buffer_emit_depth_stencil()
[all …]
Danv_blorp.c194 uint32_t plane = anv_image_aspect_to_plane(image->aspects, aspect); in get_blorp_surf_for_anv_image()
848 if (image->aspects & VK_IMAGE_ASPECT_DEPTH_BIT) { in anv_CmdClearDepthStencilImage()
856 if (image->aspects & VK_IMAGE_ASPECT_STENCIL_BIT) { in anv_CmdClearDepthStencilImage()
1436 uint32_t plane = anv_image_aspect_to_plane(image->aspects, aspect); in fast_clear_aux_usage()
1483 uint32_t plane = anv_image_aspect_to_plane(image->aspects, aspect); in anv_image_fast_clear()
1600 assert(image->aspects == VK_IMAGE_ASPECT_COLOR_BIT && image->n_planes == 1); in anv_image_copy_to_shadow()
1648 assert(anv_image_aspect_to_plane(image->aspects, in anv_gen8_hiz_op_resolve()
1695 uint32_t plane = anv_image_aspect_to_plane(image->aspects, aspect); in anv_ccs_resolve()
1701 assert(image->aspects & VK_IMAGE_ASPECT_ANY_COLOR_BIT_ANV && image->samples == 1); in anv_ccs_resolve()
/external/guice/core/src/com/google/inject/internal/
DEncounterImpl.java44 private List<MethodAspect> aspects; // lazy field in EncounterImpl
59 return aspects == null ? ImmutableList.<MethodAspect>of() : ImmutableList.copyOf(aspects); in getAspects()
69 if (aspects == null) { in bindInterceptor()
70 aspects = Lists.newArrayList(); in bindInterceptor()
73 aspects.add(new MethodAspect(Matchers.any(), methodMatcher, interceptors)); in bindInterceptor()
/external/mesa3d/src/amd/vulkan/
Dradv_meta_clear.c484 VkImageAspectFlags aspects, in create_depthstencil_pipeline() argument
502 .depthTestEnable = (aspects & VK_IMAGE_ASPECT_DEPTH_BIT), in create_depthstencil_pipeline()
504 .depthWriteEnable = (aspects & VK_IMAGE_ASPECT_DEPTH_BIT), in create_depthstencil_pipeline()
506 .stencilTestEnable = (aspects & VK_IMAGE_ASPECT_STENCIL_BIT), in create_depthstencil_pipeline()
527 if (aspects & VK_IMAGE_ASPECT_DEPTH_BIT) { in create_depthstencil_pipeline()
531 if (aspects & VK_IMAGE_ASPECT_STENCIL_BIT) { in create_depthstencil_pipeline()
544 VkImageAspectFlags aspects, in depth_view_can_fast_clear() argument
557 (((aspects & VK_IMAGE_ASPECT_DEPTH_BIT) && clear_value.depth != 0.0 && in depth_view_can_fast_clear()
559 ((aspects & VK_IMAGE_ASPECT_STENCIL_BIT) && clear_value.stencil != 0))) in depth_view_can_fast_clear()
575 VkImageAspectFlags aspects, in pick_depthstencil_pipeline() argument
[all …]
Dradv_meta_blit2d.c42 VkImageAspectFlagBits aspects) in create_iview() argument
60 .aspectMask = aspects, in create_iview()
103 VkImageAspectFlagBits aspects) in blit2d_bind_src() argument
130 create_iview(cmd_buffer, src_img, &tmp->iview, depth_format, aspects); in blit2d_bind_src()
174 VkImageAspectFlagBits aspects) in blit2d_bind_dst() argument
176 create_iview(cmd_buffer, dst, &tmp->iview, depth_format, aspects); in blit2d_bind_dst()
/external/skia/site/dev/present/
Dindex.md4 Resources providing technical overview of various aspects of the Skia library
/external/skqp/site/dev/present/
Dindex.md4 Resources providing technical overview of various aspects of the Skia library
/external/opencensus-java/contrib/spring/
DREADME.md35 <!-- spring aspects -->
38 <artifactId>spring-aspects</artifactId>
51 runtime 'org.springframework:spring-aspects:SPRING_VERSION'
/external/libnetfilter_conntrack/
DREADME14 that have aspects that are hard to track for a firewall that follows the
16 a mechanism to track such aspects.
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/MIR/AArch64/
Dregister-operand-bank.mir3 # Test various aspects of register bank specification on machine operands.
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/MIR/X86/
Dregister-operand-class.mir2 # Test various aspects of register class specification on machine operands.
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/RISCV/
Ddouble-intrinsics.ll8 ; aspects of passing f64 on RV32D soft-float that double-calling-conv.ll
/external/ImageMagick/MagickWand/tests/
DREADME2 These file provide simple examples and testing of aspects of the
/external/autotest/client/tests/ltp/
Dcontrol.full15 and are designed to test various aspects of the Linux operating system. Most
/external/python/cpython3/Tools/demo/
DREADME2 various aspects of Python programming.
/external/autotest/client/site_tests/kernel_LTP/
Dcontrol.full17 and are designed to test various aspects of the Linux operating system. Most
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/fsync/
Dcoverage.txt18 It is reasonable to assert that the key aspects of fsync( ) are unreasonable to test in a test
/external/swiftshader/third_party/LLVM/test/Archive/
DREADME.txt23 These files test different aspects of the archiver that should cause failures
/external/autotest/test_suites/
Dcontrol.cr50_stress18 tests. Other stress related suites will focus on more specific aspects, which
Dcontrol.stress19 related suites will focus on more specific aspects, which can be run as
Dcontrol.stress219 related suites will focus on more specific aspects, which can be run as

12345678