Home
last modified time | relevance | path

Searched refs:pointer_type (Results 1 – 5 of 5) sorted by relevance

/oneTBB/include/oneapi/tbb/detail/
H A D_flow_graph_types_impl.h131 typedef T* pointer_type;
142 pointer_type space;
143 _unwind_space(pointer_type p) : space(p) {}
153 _unwind_space guard((pointer_type)newSpace);
164 typedef T* pointer_type;
179 pointer_type space;
200 _unwind_class guard((pointer_type)value_space);
201 pointer_type vp = reinterpret_cast<pointer_type>(&value_space);
211 pointer_type dp = reinterpret_cast<pointer_type>(value_space);
212 pointer_type sp = reinterpret_cast<pointer_type>(const_cast<char *>(other.value_space));
[all …]
H A D_flow_graph_tagged_buffer_impl.h53 typedef value_type *pointer_type; typedef
201 pointer_type p = nullptr; in insert_with_key()
215 bool find_ref_with_key(const Knoref& k, pointer_type &v) { in find_ref_with_key()
218 pointer_type pv = reinterpret_cast<pointer_type>(&(p->first)); in find_ref_with_key()
H A D_flow_graph_cache_impl.h227 typedef receiver<T>* pointer_type; typedef
230 typedef std::list< pointer_type > successors_type;
282 typedef receiver<continue_msg>* pointer_type; typedef
284 typedef std::list< pointer_type > successors_type;
/oneTBB/src/tbb/
H A Dintrusive_list.h50 using pointer_type = typename std::conditional<std::is_same<DereferenceType, T>::value, variable
57 iterator_impl( pointer_type pos ) : my_pos(pos) {} in iterator_impl()
98 pointer_type my_pos;
/oneTBB/test/common/
H A Dallocator_test_common.h222 using pointer_type = typename std::allocator_traits<A>::pointer; member
228 void check_allocate(pointer_type array[], std::size_t i, std::size_t t) const in check_allocate()
242 void check_deallocate(pointer_type array[], std::size_t i, std::size_t t) const in check_deallocate()
254 pointer_type array[256]; in operator()