/external/libcxx/test/std/utilities/memory/pointer.traits/pointer.traits.types/ |
D | rebind.pass.cpp | 35 template <class U> using rebind = B1<U>; typedef 37 template <class U> struct rebind {typedef B1<U> other;}; 52 template <class V> using rebind = D1<V, U>; typedef 54 template <class V> struct rebind {typedef D1<V, U> other;}; 62 void rebind() {} in rebind() function 71 using rebind = void; typedef 80 static constexpr int rebind = 42; member 88 …static_assert((std::is_same<std::pointer_traits<A<int*> >::rebind<double*>, A<double*> >::value), … in main() 89 …static_assert((std::is_same<std::pointer_traits<B<int> >::rebind<double>, B1<double> >::value), ""… in main() 90 …static_assert((std::is_same<std::pointer_traits<C<char, int> >::rebind<double>, C<double, int> >::… in main() [all …]
|
/external/mesa3d/src/gallium/winsys/svga/drm/ |
D | vmw_surface.c | 65 vsrf->rebind = FALSE; in vmw_svga_winsys_surface_map() 121 vsrf->rebind = TRUE; in vmw_svga_winsys_surface_map() 165 boolean *rebind) in vmw_svga_winsys_surface_unmap() argument 170 *rebind = vsrf->rebind; in vmw_svga_winsys_surface_unmap() 171 vsrf->rebind = FALSE; in vmw_svga_winsys_surface_unmap() 174 *rebind = FALSE; in vmw_svga_winsys_surface_unmap()
|
D | vmw_surface.h | 67 boolean rebind; /* Surface needs a rebind after next unmap */ member 96 boolean *rebind);
|
/external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.types/ |
D | rebind_alloc.pass.cpp | 32 template <class U> struct rebind {typedef ReboundA<U> other;}; struct 43 template <class V> struct rebind {typedef ReboundB<V, U> other;}; struct 63 template <class U> struct rebind {typedef ReboundA<U> otter;}; argument 71 struct rebind { typedef void other; }; argument 78 struct rebind { struct
|
/external/mesa3d/src/gallium/drivers/svga/ |
D | svga_shader.c | 501 svga->rebind.flags.vs = 0; in svga_rebind_shaders() 502 svga->rebind.flags.gs = 0; in svga_rebind_shaders() 503 svga->rebind.flags.fs = 0; in svga_rebind_shaders() 508 if (svga->rebind.flags.vs && hw->vs && hw->vs->gb_shader) { in svga_rebind_shaders() 513 svga->rebind.flags.vs = 0; in svga_rebind_shaders() 515 if (svga->rebind.flags.gs && hw->gs && hw->gs->gb_shader) { in svga_rebind_shaders() 520 svga->rebind.flags.gs = 0; in svga_rebind_shaders() 522 if (svga->rebind.flags.fs && hw->fs && hw->fs->gb_shader) { in svga_rebind_shaders() 527 svga->rebind.flags.fs = 0; in svga_rebind_shaders()
|
D | svga_context.c | 352 svga->rebind.flags.rendertargets = TRUE; in svga_context_flush() 353 svga->rebind.flags.texture_samplers = TRUE; in svga_context_flush() 357 svga->rebind.flags.constbufs = TRUE; in svga_context_flush() 358 svga->rebind.flags.vs = TRUE; in svga_context_flush() 359 svga->rebind.flags.fs = TRUE; in svga_context_flush() 360 svga->rebind.flags.gs = TRUE; in svga_context_flush() 363 svga->rebind.flags.query = TRUE; in svga_context_flush()
|
D | svga_resource_buffer.h | 287 boolean rebind; in svga_buffer_hw_storage_unmap() local 288 swc->surface_unmap(swc, sbuf->handle, &rebind); in svga_buffer_hw_storage_unmap() 289 if (rebind) { in svga_buffer_hw_storage_unmap()
|
D | svga_draw.c | 210 if (svga->rebind.flags.rendertargets) { in draw_vgpu9() 217 if (svga->rebind.flags.texture_samplers) { in draw_vgpu9() 224 if (svga->rebind.flags.vs) { in draw_vgpu9() 231 if (svga->rebind.flags.fs) { in draw_vgpu9() 357 if (svga->rebind.flags.texture_samplers) { in validate_sampler_resources() 370 svga->rebind.flags.texture_samplers = FALSE; in validate_sampler_resources() 390 if (svga->rebind.flags.constbufs) { in validate_constant_buffers() 413 if (svga->rebind.flags.constbufs) { in validate_constant_buffers() 424 svga->rebind.flags.constbufs = FALSE; in validate_constant_buffers() 481 if (svga->rebind.val) { in draw_vgpu10()
|
D | svga_state_gs.c | 142 assert(svga->rebind.flags.gs); in svga_reemit_gs_bindings() 166 svga->rebind.flags.gs = FALSE; in svga_reemit_gs_bindings() 238 svga->rebind.flags.gs = FALSE; in emit_hw_gs()
|
D | svga_state_framebuffer.c | 58 boolean reemit = svga->rebind.flags.rendertargets; in emit_fb_vgpu9() 275 assert(svga->rebind.flags.rendertargets); in svga_reemit_framebuffer_bindings() 284 svga->rebind.flags.rendertargets = FALSE; in svga_reemit_framebuffer_bindings() 302 if (!svga->rebind.flags.rendertargets) in svga_rebind_framebuffer_bindings() 325 svga->rebind.flags.rendertargets = 0; in svga_rebind_framebuffer_bindings()
|
D | svga_state_tss.c | 144 boolean reemit = svga->rebind.flags.texture_samplers; in update_tss_binding() 210 svga->rebind.flags.texture_samplers = FALSE; in update_tss_binding() 235 assert(svga->rebind.flags.texture_samplers); in svga_reemit_tss_bindings() 289 svga->rebind.flags.texture_samplers = FALSE; in svga_reemit_tss_bindings()
|
D | svga_state_vs.c | 217 assert(svga->rebind.flags.vs); in svga_reemit_vs_bindings() 241 svga->rebind.flags.vs = FALSE; in svga_reemit_vs_bindings() 401 svga->rebind.flags.vs = FALSE; in emit_hw_vs()
|
/external/clang/test/Index/ |
D | annotate-nested-name-specifier.cpp | 107 typedef typename outer_alias::inner::vector<type>::template rebind<type> type1; 108 typedef typename outer_alias::inner::vector<type>::template rebind<type>::other type2; 109 typedef class outer_alias::inner::vector<type>::template rebind<type> type3; 110 typedef class outer_alias::inner::vector<type>::template rebind<type>::other type4;
|
/external/libcxx/test/std/utilities/memory/pointer.traits/ |
D | rebind.pass.cpp | 27 static_assert((std::is_same<std::pointer_traits<int*>::rebind<double>, double*>::value), ""); in main() 29 …static_assert((std::is_same<std::pointer_traits<int*>::rebind<double>::other, double*>::value), ""… in main()
|
/external/libcxx/test/std/utilities/memory/allocator.traits/ |
D | rebind_traits.pass.cpp | 32 template <class U> struct rebind {typedef ReboundA<U> other;}; struct 43 template <class V> struct rebind {typedef ReboundB<V, U> other;}; argument 63 template <class U> struct rebind {typedef ReboundA<U> otter;}; struct
|
/external/clang/test/SemaCXX/ |
D | PR9908.cpp | 7 typedef typename _Tp::template rebind<_Up>::other type; 27 template <class U> struct rebind {typedef ReboundA<U> other;}; argument
|
/external/clang/test/CodeGenCXX/ |
D | lpad-linetable.cpp | 18 struct rebind struct in std::allocator 25 typedef typename _Alloc::template rebind<_Tp>::other _Tp_alloc_type;
|
D | thunk-use-after-free.cpp | 8 template < typename > struct rebind { struct 15 typedef typename _Alloc::template rebind < _Tp >::other _Tp_alloc_type;
|
D | debug-info-use-after-free.cpp | 95 template < typename > struct rebind { struct 102 typedef typename _Alloc::template rebind < _Tp >::other _Tp_alloc_type;
|
/external/clang/test/SemaTemplate/ |
D | alias-templates.cpp | 29 template<typename U> using rebind_thing = typename thing::template rebind<U>; 30 template<typename U> using rebind = traits<rebind_thing<U>>; typedef 46 template<typename U> using rebind = thing<U>; typedef 69 itt::rebind<bool> btr;
|
D | instantiate-member-template.cpp | 232 template <class _Xp> static char __test(typename _Xp::template rebind<_Up>* = 0); 244 template <class U> struct rebind {typedef B1<U> other;}; struct 252 template <class V> struct rebind {typedef D1<V, U> other;}; argument
|
/external/libcxx/test/support/ |
D | test_allocator.h | 63 template <class U> struct rebind {typedef test_allocator<U> other;}; struct 131 template <class U> struct rebind {typedef non_default_test_allocator<U> other;}; struct 191 template <class U> struct rebind {typedef test_allocator<U> other;}; argument 366 template <class U> struct rebind { typedef limited_allocator<U, N> other; }; argument
|
/external/libcxx/test/std/utilities/memory/default.allocator/ |
D | allocator_void.pass.cpp | 31 static_assert((std::is_same<std::allocator<void>::rebind<int>::other, in main()
|
/external/syslinux/core/lwip/src/core/ |
D | udp.c | 704 u8_t rebind; local 710 rebind = 0; 716 LWIP_ASSERT("rebind == 0", rebind == 0); 718 rebind = 1; 776 if (rebind == 0) {
|
/external/dhcpcd-6.8.2/ |
D | dhcp6.c | 1954 uint32_t u32, renew, rebind; in dhcp6_findia() local 2035 rebind = ntohl(u32); in dhcp6_findia() 2039 renew = rebind = 0; /* appease gcc */ in dhcp6_findia() 2063 if (renew > rebind && rebind > 0) { in dhcp6_findia() 2067 ifp->name, renew, rebind, sfrom); in dhcp6_findia() 2069 rebind = 0; in dhcp6_findia() 2074 if (rebind != 0 && in dhcp6_findia() 2075 (rebind < state->rebind || state->rebind == 0)) in dhcp6_findia() 2076 state->rebind = rebind; in dhcp6_findia() 2115 state->renew = state->rebind = state->expire = 0; in dhcp6_validatelease() [all …]
|