Lines Matching refs:U
56 template<typename U> tbb_allocator(const tbb_allocator<U>&) noexcept {} in tbb_allocator() argument
80 template<typename U> struct rebind {
81 using other = tbb_allocator<U>;
88 template<typename U, typename... Args>
89 void construct(U *p, Args&&... args) in construct()
90 { ::new (p) U(std::forward<Args>(args)...); } in construct()
104 template<typename U> struct rebind {
105 using other = tbb_allocator<U>;
110 template<typename T, typename U>
111 inline bool operator==(const tbb_allocator<T>&, const tbb_allocator<U>&) noexcept { return true; }
114 template<typename T, typename U>
115 inline bool operator!=(const tbb_allocator<T>&, const tbb_allocator<U>&) noexcept { return false; }