/external/libcxx/test/std/experimental/memory/memory.resource.aliases/ |
D | header_unordered_set_synop.pass.cpp | 32 namespace pmr = std::experimental::pmr; 48 using StdSet = std::unordered_set<V, DH, DP, pmr::polymorphic_allocator<V>>; in main() 49 using PmrSet = pmr::unordered_set<V>; in main() 53 using StdSet = std::unordered_set<V, MH, DP, pmr::polymorphic_allocator<V>>; in main() 54 using PmrSet = pmr::unordered_set<V, MH>; in main() 58 using StdSet = std::unordered_set<V, MH, MP, pmr::polymorphic_allocator<V>>; in main() 59 using PmrSet = pmr::unordered_set<V, MH, MP>; in main() 63 pmr::unordered_set<int> m; in main() 64 assert(m.get_allocator().resource() == pmr::get_default_resource()); in main() 67 using StdSet = std::unordered_multiset<V, DH, DP, pmr::polymorphic_allocator<V>>; in main() [all …]
|
D | header_unordered_map_synop.pass.cpp | 32 namespace pmr = std::experimental::pmr; 50 using StdMap = std::unordered_map<K, V, DH, DP, pmr::polymorphic_allocator<P>>; in main() 51 using PmrMap = pmr::unordered_map<K, V>; in main() 55 using StdMap = std::unordered_map<K, V, MH, DP, pmr::polymorphic_allocator<P>>; in main() 56 using PmrMap = pmr::unordered_map<K, V, MH>; in main() 60 using StdMap = std::unordered_map<K, V, MH, MP, pmr::polymorphic_allocator<P>>; in main() 61 using PmrMap = pmr::unordered_map<K, V, MH, MP>; in main() 65 pmr::unordered_map<int, int> m; in main() 66 assert(m.get_allocator().resource() == pmr::get_default_resource()); in main() 69 using StdMap = std::unordered_multimap<K, V, DH, DP, pmr::polymorphic_allocator<P>>; in main() [all …]
|
D | header_set_synop.pass.cpp | 32 namespace pmr = std::experimental::pmr; 40 using StdSet = std::set<V, DC, pmr::polymorphic_allocator<V>>; in main() 41 using PmrSet = pmr::set<V>; in main() 45 using StdSet = std::set<V, OC, pmr::polymorphic_allocator<V>>; in main() 46 using PmrSet = pmr::set<V, OC>; in main() 50 pmr::set<int> m; in main() 51 assert(m.get_allocator().resource() == pmr::get_default_resource()); in main() 54 using StdSet = std::multiset<V, DC, pmr::polymorphic_allocator<V>>; in main() 55 using PmrSet = pmr::multiset<V>; in main() 59 using StdSet = std::multiset<V, OC, pmr::polymorphic_allocator<V>>; in main() [all …]
|
D | header_map_synop.pass.cpp | 32 namespace pmr = std::experimental::pmr; 42 using StdMap = std::map<K, V, DC, pmr::polymorphic_allocator<P>>; in main() 43 using PmrMap = pmr::map<K, V>; in main() 47 using StdMap = std::map<K, V, OC, pmr::polymorphic_allocator<P>>; in main() 48 using PmrMap = pmr::map<K, V, OC>; in main() 52 pmr::map<int, int> m; in main() 53 assert(m.get_allocator().resource() == pmr::get_default_resource()); in main() 56 using StdMap = std::multimap<K, V, DC, pmr::polymorphic_allocator<P>>; in main() 57 using PmrMap = pmr::multimap<K, V>; in main() 61 using StdMap = std::multimap<K, V, OC, pmr::polymorphic_allocator<P>>; in main() [all …]
|
D | header_regex_synop.pass.cpp | 34 namespace pmr = std::experimental::pmr; 38 using StdMR = std::match_results<Iter, pmr::polymorphic_allocator<std::sub_match<Iter>>>; in test_match_result_typedef() 39 using PmrMR = pmr::match_results<Iter>; in test_match_result_typedef() 47 test_match_result_typedef<const char*, pmr::cmatch>(); in main() 48 test_match_result_typedef<const wchar_t*, pmr::wcmatch>(); in main() 49 test_match_result_typedef<pmr::string::const_iterator, pmr::smatch>(); in main() 50 test_match_result_typedef<pmr::wstring::const_iterator, pmr::wsmatch>(); in main() 54 pmr::smatch s; in main() 55 assert(s.get_allocator().resource() == pmr::get_default_resource()); in main()
|
D | header_string_synop.pass.cpp | 35 namespace pmr = std::experimental::pmr; 40 pmr::polymorphic_allocator<Char>>; in test_string_typedef() 41 using PmrStr = pmr::basic_string<Char>; in test_string_typedef() 49 pmr::polymorphic_allocator<Char>>; in test_basic_string_alias() 50 using PmrStr = pmr::basic_string<Char, Traits>; in test_basic_string_alias() 57 test_string_typedef<char, pmr::string>(); in main() 58 test_string_typedef<wchar_t, pmr::wstring>(); in main() 59 test_string_typedef<char16_t, pmr::u16string>(); in main() 60 test_string_typedef<char32_t, pmr::u32string>(); in main() 70 pmr::string s; in main() [all …]
|
D | header_deque_synop.pass.cpp | 28 namespace pmr = std::experimental::pmr; 32 using StdDeque = std::deque<int, pmr::polymorphic_allocator<int>>; in main() 33 using PmrDeque = pmr::deque<int>; in main() 36 assert(d.get_allocator().resource() == pmr::get_default_resource()); in main()
|
D | header_vector_synop.pass.cpp | 28 namespace pmr = std::experimental::pmr; 32 using StdVector = std::vector<int, pmr::polymorphic_allocator<int>>; in main() 33 using PmrVector = pmr::vector<int>; in main() 36 assert(d.get_allocator().resource() == pmr::get_default_resource()); in main()
|
D | header_forward_list_synop.pass.cpp | 28 namespace pmr = std::experimental::pmr; 32 using StdForwardList = std::forward_list<int, pmr::polymorphic_allocator<int>>; in main() 33 using PmrForwardList = pmr::forward_list<int>; in main() 36 assert(d.get_allocator().resource() == pmr::get_default_resource()); in main()
|
D | header_list_synop.pass.cpp | 28 namespace pmr = std::experimental::pmr; 32 using StdList = std::list<int, pmr::polymorphic_allocator<int>>; in main() 33 using PmrList = pmr::list<int>; in main() 36 assert(d.get_allocator().resource() == pmr::get_default_resource()); in main()
|
/external/libdrm/etnaviv/ |
D | etnaviv_cmd_stream.c | 267 struct drm_etnaviv_gem_submit_pmr *pmr; in etna_cmd_stream_perf() local 270 pmr = &priv->submit.pmrs[idx]; in etna_cmd_stream_perf() 272 pmr->flags = p->flags; in etna_cmd_stream_perf() 273 pmr->sequence = p->sequence; in etna_cmd_stream_perf() 274 pmr->read_offset = p->offset; in etna_cmd_stream_perf() 275 pmr->read_idx = bo2idx(stream, p->bo, ETNA_SUBMIT_BO_READ | ETNA_SUBMIT_BO_WRITE); in etna_cmd_stream_perf() 276 pmr->domain = p->signal->domain->id; in etna_cmd_stream_perf() 277 pmr->signal = p->signal->signal; in etna_cmd_stream_perf()
|
/external/libcxx/include/experimental/ |
D | string | 20 namespace pmr { 22 // basic_string using polymorphic allocator in namespace pmr 28 // std::experimental::pmr 34 } // namespace pmr
|
D | deque | 20 namespace pmr { 25 } // namespace pmr
|
D | forward_list | 20 namespace pmr { 25 } // namespace pmr
|
D | vector | 20 namespace pmr { 25 } // namespace pmr
|
D | list | 20 namespace pmr { 25 } // namespace pmr
|
D | regex | 20 namespace pmr { 32 } // namespace pmr
|
D | set | 20 namespace pmr { 30 } // namespace pmr
|
D | __config | 32 #define _LIBCPP_BEGIN_NAMESPACE_LFTS_PMR _LIBCPP_BEGIN_NAMESPACE_LFTS namespace pmr { 34 #define _VSTD_LFTS_PMR _VSTD_LFTS::pmr
|
D | map | 20 namespace pmr { 30 } // namespace pmr
|
D | unordered_set | 20 namespace pmr { 30 } // namespace pmr
|
D | unordered_map | 20 namespace pmr { 36 } // namespace pmr
|
/external/u-boot/arch/m68k/lib/ |
D | time.c | 132 timerp->pmr = 0; in __udelay() 136 timerp->pmr = tmp; in __udelay() 148 timerp->pmr = lastinc = 0; in timer_init()
|
/external/libcxx/test/support/ |
D | test_memory_resource.hpp | 31 using type = std::experimental::pmr::polymorphic_allocator<int>; 35 class TestResourceImp : public std::experimental::pmr::memory_resource 49 using memory_resource = std::experimental::pmr::memory_resource;
|
/external/libcxx/test/std/experimental/memory/memory.resource/ |
D | construct.fail.cpp | 20 namespace ex = std::experimental::pmr;
|