Home
last modified time | relevance | path

Searched refs:my_ptr (Results 1 – 7 of 7) sorted by relevance

/oneTBB/test/common/
H A Diterator.h45 my_ptr = it.my_ptr; in InputIterator()
53 my_ptr = it.my_ptr;
70 ++my_ptr;
85 return my_ptr == it.my_ptr;
104 T * my_ptr; variable
111 T * my_ptr; variable
124 ForwardIterator ( const ForwardIterator& r ) : my_ptr(r.my_ptr){} in ForwardIterator()
138 T * my_ptr; variable
150 RandomIterator ( const RandomIterator& r ) : my_ptr(r.my_ptr){} in RandomIterator()
175 my_ptr += n;
[all …]
/oneTBB/test/tbb/
H A Dtest_parallel_for_each.cpp43 explicit cpp20_iterator(T* ptr) : my_ptr(ptr) {} in cpp20_iterator()
45 T& operator*() const { return *my_ptr; } in operator *()
48 ++my_ptr; in operator ++()
61 --my_ptr; in operator --()
76 my_ptr += n; in operator +=()
83 my_ptr -= n; in operator -=()
90 return my_ptr[n]; in operator []()
101 return cpp20_iterator(i.my_ptr + n); in operator +()
113 return cpp20_iterator(i.my_ptr - n); in operator -()
117 return x.my_ptr - y.my_ptr; in operator -()
[all …]
H A Dtest_parallel_pipeline.cpp206 free_on_scope_exit<T> my_ptr(my_storage); // free_on_scope_exit marks the buffer available in operator ()() local
238 free_on_scope_exit<T> my_ptr(my_storage); // free_on_scope_exit marks the buffer available in operator ()() local
295 free_on_scope_exit<T> my_ptr(c); in operator ()() local
/oneTBB/doc/main/reference/scalable_memory_pools/
H A Dfixed_pool_cls.rst74 void* my_ptr = my_pool.malloc(10);
75 my_pool.free(my_ptr);}
H A Dmemory_pool_cls.rst79 void* my_ptr = my_pool.malloc(10);
80 my_pool.free(my_ptr);
/oneTBB/src/tbb/
H A Dscheduler_common.h318 std::exception_ptr my_ptr; variable
330 tbb_exception_ptr(const std::exception_ptr& src) : my_ptr(src) {} in tbb_exception_ptr()
H A Dtask_group_context.cpp47 std::rethrow_exception(my_ptr); in throw_self()