Home
last modified time | relevance | path

Searched refs:internal_type (Results 1 – 25 of 45) sorted by relevance

12

/third_party/boost/boost/heap/detail/
Dstable_heap.hpp155 typedef T internal_type; typedef
209 bool operator()(internal_type const & lhs, internal_type const & rhs) const in operator ()()
214 internal_type make_node(T const & val) in make_node()
228 internal_type make_node(Args && ... val) in make_node()
230 return internal_type(std::forward<Args>(val)...); in make_node()
234 static T & get_value(internal_type & val) BOOST_NOEXCEPT in get_value()
239 static T const & get_value(internal_type const & val) BOOST_NOEXCEPT in get_value()
301 struct internal_type struct
305 internal_type(stability_counter_type cnt, Args && ... args): in internal_type() function
310 internal_type(stability_counter_type const & cnt, T const & value): in internal_type() function
[all …]
/third_party/boost/boost/optional/detail/
Dold_optional_implementation.hpp85 ::boost::detail::make_reference_content<T>::type internal_type ; typedef in boost::optional_detail::optional_base
87 typedef aligned_storage<internal_type> storage_type ;
354 ::new (m_storage.address()) internal_type(val) ; in construct()
361 ::new (m_storage.address()) internal_type( types::move(val) ) ; in construct()
374 ::new (m_storage.address()) internal_type( boost::forward<Args>(args)... ); in emplace_assign()
382 ::new (m_storage.address()) internal_type( boost::forward<Arg>(arg) ); in emplace_assign()
389 ::new (m_storage.address()) internal_type(); in emplace_assign()
397 ::new (m_storage.address()) internal_type( arg ); in emplace_assign()
405 ::new (m_storage.address()) internal_type( arg ); in emplace_assign()
412 ::new (m_storage.address()) internal_type(); in emplace_assign()
[all …]
/third_party/boost/libs/spirit/test/qi/
Dregression_one_element_sequence_attribute.cpp28 typedef boost::variant<int, float> internal_type; typedef
30 struct Number2 { internal_type base; };
32 BOOST_FUSION_ADAPT_STRUCT( Number2, (internal_type, base) )
/third_party/mesa3d/src/gallium/drivers/v3d/
Dv3d_formats.c172 uint32_t internal_type; in v3d_format_supports_tlb_msaa_resolve() local
182 &internal_type, in v3d_format_supports_tlb_msaa_resolve()
185 return internal_type == V3D_INTERNAL_TYPE_8 || in v3d_format_supports_tlb_msaa_resolve()
186 internal_type == V3D_INTERNAL_TYPE_16F; in v3d_format_supports_tlb_msaa_resolve()
Dv3dx_rcl.c498 *rt_type = surf->internal_type; in v3d_setup_render_target()
512 zs.internal_type = surf->internal_type; in v3d_emit_z_stencil_config()
708 config.internal_depth_type = surf->internal_type; in v3dX()
769 rt.internal_type = surf->internal_type; in v3dX()
/third_party/boost/libs/property_tree/examples/
Dcustom_data_type.cpp27 typedef Int internal_type; typedef
30 get_value(const internal_type &value) const in get_value()
34 internal_type
/third_party/boost/boost/intrusive/
Dhashtable.hpp1366 > internal_type; typedef
1367 typedef typename internal_type::key_equal key_equal;
1368 typedef typename internal_type::hasher hasher;
1371 typedef typename internal_type::size_traits split_traits;
1424 : internal_type(val_traits, ::boost::forward<BucketTraitsType>(b_traits), h, e) in hashdata_internal()
1427 BOOST_INTRUSIVE_FORCEINLINE typename internal_type::size_traits_t priv_split_traits() in priv_split_traits()
1430 BOOST_INTRUSIVE_FORCEINLINE typename internal_type::size_traits_const_t priv_split_traits() const in priv_split_traits()
1438 this->internal_type::priv_clear_buckets in priv_clear_buckets()
1440 , this->internal_type::priv_bucket_count() in priv_clear_buckets()
1442 - this->internal_type::priv_bucket_pointer())); in priv_clear_buckets()
[all …]
/third_party/boost/boost/interprocess/sync/windows/
Dsync_utils.hpp69 typedef __int64 internal_type; typedef in boost::interprocess::ipcdetail::sync_id
74 explicit sync_id(internal_type val, const void *map_addr) in sync_id()
78 const internal_type &internal_pod() const in internal_pod()
81 internal_type &internal_pod() in internal_pod()
94 internal_type rand_;
Dnamed_sync.hpp82 const std::size_t sizeof_file_info = sizeof(sync_id::internal_type) + buflen; in close()
86 … if(winapi::set_file_pointer(m_file_hnd, sizeof(sync_id::internal_type), 0, winapi::file_begin)){ in close()
/third_party/boost/boost/property_tree/
Dptree_fwd.hpp61 typename internal_type;
64 boost::optional<external_type> Tr::get_value(internal_type);
65 boost::optional<internal_type> Tr::put_value(external_type);
Dstream_translator.hpp187 typedef std::basic_string<Ch, Traits, Alloc> internal_type; typedef in boost::property_tree::stream_translator
194 boost::optional<E> get_value(const internal_type &v) { in get_value()
204 boost::optional<internal_type> put_value(const E &v) { in put_value()
211 return boost::optional<internal_type>(); in put_value()
Did_translator.hpp26 typedef T internal_type; typedef
/third_party/boost/boost/heap/
Dpriority_queue.hpp69 typedef typename super_t::internal_type internal_type; typedef in boost::heap::priority_queue
70 …boost::allocator_rebind<typename heap_base_maker::allocator_argument, internal_type>::type interna…
71 typedef std::vector<internal_type, internal_type_allocator> container_type;
Dd_ary_heap.hpp67 typedef typename super_t::internal_type internal_type; typedef in boost::heap::detail::d_ary_heap
69 …boost::allocator_rebind<typename heap_base_maker::allocator_argument, internal_type>::type interna…
70 typedef std::vector<internal_type, internal_type_allocator> container_type;
110 … static internal_type const & get_internal_value(const d_ary_heap * heap, size_type index) in get_internal_value()
115 static value_type const & get_value(internal_type const & arg) in get_value()
122 internal_type,
Dpairing_heap.hpp60 typedef heap_node<typename base_type::internal_type, false> node_type;
143 typedef typename super_t::internal_type internal_type; typedef in boost::heap::pairing_heap
171 typedef detail::value_extractor<value_type, internal_type, super_t> value_extractor;
/third_party/boost/libs/property_tree/test/
Dtest_property_tree.cpp57 typedef boost::any internal_type; typedef
60 boost::optional<E> get_value(const internal_type &v) { in get_value()
66 boost::optional<internal_type> put_value(const E &v) { in put_value()
/third_party/boost/boost/contract/
Dcall_if.hpp72 internal_type
106 internal_type
378 internal_type
/third_party/boost/boost/units/
Dpow.hpp51 typedef typename mpl::if_<boost::is_integral<T>, double, T>::type internal_type; typedef
52 typedef detail::static_rational_power_impl<static_rational<N, D>, internal_type> impl;
/third_party/boost/boost/container/
Dslist.hpp81 typedef T internal_type; typedef
105 BOOST_CONTAINER_FORCEINLINE internal_type &get_real_data() in get_real_data()
106 { return *reinterpret_cast<internal_type*>(this->m_storage.data); } in get_real_data()
108 BOOST_CONTAINER_FORCEINLINE const internal_type &get_real_data() const in get_real_data()
109 { return *reinterpret_cast<const internal_type*>(this->m_storage.data); } in get_real_data()
111 BOOST_CONTAINER_FORCEINLINE internal_type *get_real_data_ptr() in get_real_data_ptr()
112 { return reinterpret_cast<internal_type*>(this->m_storage.data); } in get_real_data_ptr()
114 BOOST_CONTAINER_FORCEINLINE const internal_type *get_real_data_ptr() const in get_real_data_ptr()
115 { return reinterpret_cast<internal_type*>(this->m_storage.data); } in get_real_data_ptr()
Dlist.hpp76 typedef T internal_type; typedef
100 BOOST_CONTAINER_FORCEINLINE internal_type &get_real_data() in get_real_data()
101 { return *reinterpret_cast<internal_type*>(this->m_storage.data); } in get_real_data()
103 BOOST_CONTAINER_FORCEINLINE const internal_type &get_real_data() const in get_real_data()
104 { return *reinterpret_cast<const internal_type*>(this->m_storage.data); } in get_real_data()
106 BOOST_CONTAINER_FORCEINLINE internal_type *get_real_data_ptr() in get_real_data_ptr()
107 { return reinterpret_cast<internal_type*>(this->m_storage.data); } in get_real_data_ptr()
109 BOOST_CONTAINER_FORCEINLINE const internal_type *get_real_data_ptr() const in get_real_data_ptr()
110 { return reinterpret_cast<internal_type*>(this->m_storage.data); } in get_real_data_ptr()
/third_party/mesa3d/src/broadcom/vulkan/
Dv3dvx_formats.c426 uint32_t *internal_type, in v3dX()
440 *internal_type = V3D_INTERNAL_TYPE_16UI; in v3dX()
444 *internal_type = V3D_INTERNAL_TYPE_32F; in v3dX()
453 *internal_type = V3D_INTERNAL_TYPE_8UI; in v3dX()
463 internal_type, internal_bpp); in v3dX()
Dv3dvx_private.h121 uint32_t internal_type,
267 uint32_t *internal_type,
288 uint32_t internal_type,
Dv3dv_meta_common.h60 uint32_t internal_type; member
Dv3dvx_meta_common.c112 rt.render_target_0_internal_type = fb->internal_type; in emit_rcl_prologue()
1221 const uint32_t internal_type = V3D_INTERNAL_TYPE_8UI; in v3dX() local
1270 v3dX(meta_framebuffer_init)(&framebuffer, vk_format, internal_type, in v3dX()
1301 const uint32_t internal_type = V3D_INTERNAL_TYPE_8UI; in v3dX() local
1317 internal_type, &job->frame_tiling); in v3dX()
1335 uint32_t internal_type, in v3dX()
1338 fb->internal_type = internal_type; in v3dX()
/third_party/boost/boost/container/detail/
Dtree.hpp132 typedef typename tree_internal_data_type<T>::type internal_type; typedef
159 BOOST_CONTAINER_FORCEINLINE internal_type &get_real_data() in get_real_data()
160 { return *reinterpret_cast<internal_type*>(this->m_storage.data); } in get_real_data()
162 BOOST_CONTAINER_FORCEINLINE const internal_type &get_real_data() const in get_real_data()
163 { return *reinterpret_cast<const internal_type*>(this->m_storage.data); } in get_real_data()
165 BOOST_CONTAINER_FORCEINLINE internal_type *get_real_data_ptr() in get_real_data_ptr()
166 { return reinterpret_cast<internal_type*>(this->m_storage.data); } in get_real_data_ptr()
168 BOOST_CONTAINER_FORCEINLINE const internal_type *get_real_data_ptr() const in get_real_data_ptr()
169 { return reinterpret_cast<internal_type*>(this->m_storage.data); } in get_real_data_ptr()
172 { reinterpret_cast<internal_type*>(this->m_storage.data)->~internal_type(); } in ~tree_node()

12