/third_party/boost/boost/compute/container/ |
D | flat_map.hpp | 246 ::boost::compute::get<0> get_key; in find() 249 ::boost::compute::make_transform_iterator(begin(), get_key), in find() 250 ::boost::compute::make_transform_iterator(end(), get_key), in find() 266 ::boost::compute::get<0> get_key; in find() 269 ::boost::compute::make_transform_iterator(begin(), get_key), in find() 270 ::boost::compute::make_transform_iterator(end(), get_key), in find() 299 ::boost::compute::get<0> get_key; in lower_bound() 302 ::boost::compute::make_transform_iterator(begin(), get_key), in lower_bound() 303 ::boost::compute::make_transform_iterator(end(), get_key), in lower_bound() 319 ::boost::compute::get<0> get_key; in lower_bound() [all …]
|
/third_party/boost/libs/compute/include/boost/compute/container/ |
D | flat_map.hpp | 246 ::boost::compute::get<0> get_key; in find() 249 ::boost::compute::make_transform_iterator(begin(), get_key), in find() 250 ::boost::compute::make_transform_iterator(end(), get_key), in find() 266 ::boost::compute::get<0> get_key; in find() 269 ::boost::compute::make_transform_iterator(begin(), get_key), in find() 270 ::boost::compute::make_transform_iterator(end(), get_key), in find() 299 ::boost::compute::get<0> get_key; in lower_bound() 302 ::boost::compute::make_transform_iterator(begin(), get_key), in lower_bound() 303 ::boost::compute::make_transform_iterator(end(), get_key), in lower_bound() 319 ::boost::compute::get<0> get_key; in lower_bound() [all …]
|
/third_party/ltp/testcases/network/stress/ipsec/ |
D | ipsec_lib.sh | 54 rfc4106_128|rfc4543_128) AEALGO_KEY=$(get_key 160);; 55 rfc4106_192|rfc4543_192) AEALGO_KEY=$(get_key 224);; 56 rfc4106_256|rfc4543_256) AEALGO_KEY=$(get_key 288);; 57 rfc4309_128) AEALGO_KEY=$(get_key 152);; 58 rfc4309_192) AEALGO_KEY=$(get_key 216);; 59 rfc4309_256) AEALGO_KEY=$(get_key 280);; 63 des) EALGO_KEY=$(get_key 64);; 64 des3_ede) EALGO_KEY=$(get_key 192);; 65 cast5) EALGO_KEY=$(get_key 128);; 66 blowfish) EALGO_KEY=$(get_key 448);; [all …]
|
/third_party/boost/libs/unordered/test/helpers/ |
D | helpers.hpp | 16 static key_type const& get_key(key_type const& x) { return x; } in get_key() function 19 static key_type const& get_key(std::pair<key_type, T> const& x, char = 0) in get_key() function 25 static key_type const& get_key( in get_key() function 33 inline typename Container::key_type const& get_key(T const& x) in get_key() function 35 return get_key_impl<Container>::get_key(x); in get_key()
|
D | invariants.hpp | 37 key_type key = get_key<X>(*it); in check_equivalent_keys() 47 } while (it != end && eq(get_key<X>(*it), key)); in check_equivalent_keys() 68 for (; lit != lend && !eq(get_key<X>(*lit), key); ++lit) { in check_equivalent_keys() 77 for (; lit != lend && eq(get_key<X>(*lit), key); ++lit) in check_equivalent_keys() 82 if (eq(get_key<X>(*lit), key)) { in check_equivalent_keys()
|
D | tracker.hpp | 104 compare_pairs(x.equal_range(get_key<X>(val)), in compare_key() 105 this->equal_range(get_key<X>(val)), (typename X::value_type*)0); in compare_key()
|
/third_party/boost/libs/serialization/performance/ |
D | performance_no_rtti.cpp | 52 virtual const char * get_key() const = 0; 72 virtual const char * get_key() const ; 81 const char * polymorphic_derived1::get_key() const { in BOOST_CLASS_TYPE_INFO() 85 return eti->get_key(); in BOOST_CLASS_TYPE_INFO() 96 virtual const char * get_key() const ; 107 const char * polymorphic_derived2::get_key() const { in BOOST_CLASS_TYPE_INFO() 112 return eti->get_key(); in BOOST_CLASS_TYPE_INFO()
|
/third_party/boost/libs/serialization/src/ |
D | extended_type_info_no_rtti.cpp | 48 const char * l = get_key(); in is_less_than() 49 const char * r = rhs.get_key(); in is_less_than() 72 const char * l = get_key(); in is_equal() 76 const char * r = rhs.get_key(); in is_equal()
|
D | extended_type_info.cpp | 58 const char * l = lhs->get_key(); in operator ()() 60 const char * r = rhs->get_key(); in operator ()() 93 return get_key(); in get_debug_info() 118 if(NULL == get_key()) in key_register() 125 if(NULL == get_key()) in key_unregister()
|
/third_party/boost/libs/unordered/test/unordered/ |
D | extract_tests.cpp | 37 std::size_t count = x.count(test::get_key<Container>(*it)); in extract_tests1() 42 x.extract(test::get_key<Container>(*it)); in extract_tests1() 45 BOOST_TEST(x.count(test::get_key<Container>(*it)) == new_count); in extract_tests1() 47 BOOST_TEST(x.find(test::get_key<Container>(*it)) == x.end()); in extract_tests1() 49 BOOST_TEST(x.find(test::get_key<Container>(*it)) != x.end()); in extract_tests1() 66 typename Container::key_type key = test::get_key<Container>(*x.begin()); in extract_tests1() 98 typename Container::key_type key = test::get_key<Container>(*pos); in extract_tests1()
|
D | find_tests.cpp | 38 typename X::key_type key = test::get_key<X>(*it1); in find_tests1() 43 x_const.key_eq()(key, test::get_key<X>(*const_pos))); in find_tests1() 45 BOOST_TEST(pos != x.end() && x.key_eq()(key, test::get_key<X>(*pos))); in find_tests1() 58 typename X::key_type key = test::get_key<X>(*it2); in find_tests1() 59 if (tracker.find(test::get_key<X>(key)) == tracker.end()) { in find_tests1() 77 typename X::key_type key = test::get_key<X>(*it3); in find_tests1() 124 typename X::key_type key = test::get_key<X>(*it); in find_compatible_keys_test() 131 typename X::key_type key = test::get_key<X>(*it); in find_compatible_keys_test()
|
D | node_handle_tests.cpp | 271 std::size_t count = c2.count(test::get_key<Container1>(v)); in insert_node_handle_unique() 275 BOOST_TEST_EQ(c2.count(test::get_key<Container1>(v)), count + 1); in insert_node_handle_unique() 281 BOOST_TEST_EQ(c2.count(test::get_key<Container1>(v)), count); in insert_node_handle_unique() 284 test::get_key<Container2>(*r.position) == test::get_key<Container2>(v)); in insert_node_handle_unique() 306 std::size_t count = c2.count(test::get_key<Container1>(v)); in insert_node_handle_unique2() 307 insert_return_type2 r = c2.insert(c1.extract(test::get_key<Container1>(v))); in insert_node_handle_unique2() 309 BOOST_TEST_EQ(c2.count(test::get_key<Container1>(v)), count + 1); in insert_node_handle_unique2() 314 BOOST_TEST_EQ(c2.count(test::get_key<Container1>(v)), count); in insert_node_handle_unique2() 317 test::get_key<Container2>(*r.position) == test::get_key<Container2>(v)); in insert_node_handle_unique2() 343 std::size_t count = c2.count(test::get_key<Container1>(v)); in insert_node_handle_equiv() [all …]
|
D | erase_tests.cpp | 42 std::size_t count = x.count(test::get_key<Container>(*it)); in erase_tests1() 44 BOOST_TEST(count == x.erase(test::get_key<Container>(*it))); in erase_tests1() 46 BOOST_TEST(x.count(test::get_key<Container>(*it)) == 0); in erase_tests1() 47 BOOST_TEST(x.find(test::get_key<Container>(*it)) == x.end()); in erase_tests1() 62 typename Container::key_type key = test::get_key<Container>(*x.begin()); in erase_tests1() 93 typename Container::key_type key = test::get_key<Container>(*pos); in erase_tests1() 186 typename Container::key_type key = test::get_key<Container>(*x.begin()); in erase_tests1() 216 typename Container::key_type key = test::get_key<Container>(*pos); in erase_tests1()
|
D | bucket_tests.cpp | 47 size_type bucket = x.bucket(test::get_key<X>(*it)); in tests() 53 while (lit != lend && test::get_key<X>(*it) != test::get_key<X>(*lit)) { in tests()
|
/third_party/boost/libs/intrusive/example/ |
D | doc_assoc_optimized_code.cpp | 40 const std::string & get_key() const in get_key() function in Expensive 50 { return StrHasher()(object.get_key().c_str()); } in hash_value() 78 { return std::strcmp(str, c.get_key().c_str()) < 0; } in operator ()() 81 { return std::strcmp(c.get_key().c_str(), str) < 0; } in operator ()() 87 { return std::strcmp(str, c.get_key().c_str()) == 0; } in operator ()() 90 { return std::strcmp(c.get_key().c_str(), str) == 0; } in operator ()()
|
/third_party/flatbuffers/rust/flexbuffers/src/builder/ |
D | map.rs | 84 pub(super) fn get_key(buffer: &[u8], address: usize) -> impl Iterator<Item = &u8> { in get_key() function 106 let s1 = get_key(buffer, a1); in sort_map_by_keys() 107 let s2 = get_key(buffer, a2); in sort_map_by_keys() 110 let dup: String = get_key(buffer, a1).map(|&b| b as char).collect(); in sort_map_by_keys()
|
/third_party/boost/boost/fusion/container/map/detail/ |
D | map_impl.hpp | 54 void get_key(); 65 using rest_type::get_key; 133 mpl::identity<key_type> get_key(mpl::int_<index>); 135 mpl::identity<key_type> get_key(mpl::int_<index>) const;
|
/third_party/boost/libs/serialization/test/ |
D | polymorphic_derived1.cpp | 16 const char * polymorphic_derived1::get_key() const { in get_key() function in polymorphic_derived1 20 >::type::get_const_instance().get_key(); in get_key()
|
D | test_dll_plugin.cpp | 51 const char * get_key() const{ in get_key() function in polymorphic_derived1 55 >::type::get_const_instance().get_key(); in get_key()
|
D | polymorphic_derived1.hpp | 35 virtual const char * get_key() const ;
|
/third_party/boost/boost/serialization/ |
D | extended_type_info_no_rtti.hpp | 102 no_rtti_system::extended_type_info_no_rtti_0(get_key()) in extended_type_info_no_rtti() 117 const char * derived_key = t.get_key(); in get_derived_extended_type_info() 121 const char * get_key() const{ in get_key() function in boost::serialization::extended_type_info_no_rtti
|
/third_party/python/Lib/test/ |
D | test_selectors.py | 153 self.assertEqual(key2, s.get_key(rd)) 165 self.assertEqual(key2, s.get_key(rd)) 218 self.assertRaises(RuntimeError, s.get_key, rd) 219 self.assertRaises(RuntimeError, s.get_key, wr) 230 self.assertEqual(key, s.get_key(rd)) 233 self.assertRaises(KeyError, s.get_key, 999999) 288 self.assertRaises(RuntimeError, s.get_key, rd) 289 self.assertRaises(RuntimeError, s.get_key, wr) 529 s.get_key(f) 549 s.get_key(bad_f)
|
/third_party/boost/tools/build/src/engine/ |
D | w32_getreg.cpp | 40 static HKEY get_key(char const** path) in get_key() function 64 HKEY key = get_key(&path); in builtin_system_registry() 192 HKEY key = get_key(&path); in builtin_system_registry_names()
|
/third_party/boost/boost/python/suite/indexing/ |
D | map_indexing_suite.hpp | 89 .def("key", &DerivedPolicies::get_key) in extension_def() 111 get_key(typename Container::value_type& e) in get_key() function in boost::python::map_indexing_suite
|
/third_party/flutter/skia/tools/sk_app/ios/ |
D | Window_ios.cpp | 99 static Window::Key get_key(const SDL_Keysym& keysym) { in get_key() function 217 Window::Key key = get_key(event.key.keysym); in handleEvent() 228 Window::Key key = get_key(event.key.keysym); in handleEvent()
|