Searched refs:Base (Results 1 – 12 of 12) sorted by relevance
| /system/dev/pci/designware/ |
| A D | dw-pcie-hw.h | 15 constexpr uint32_t Base = 0x700; variable 16 constexpr uint32_t DebugR1Offset = Base + 0x2c;
|
| /system/utest/fbl/ |
| A D | unique_ptr_tests.cpp | 416 template <typename Base, 431 fbl::unique_ptr<Base> base_ptr(std::move(derived_ptr)); in test_upcast() 443 fbl::unique_ptr<Base> base_ptr = std::move(derived_ptr); in test_upcast() 453 fbl::unique_ptr<Base> base_ptr; in test_upcast() 463 bool test_res = handoff_fn<fbl::unique_ptr<Base>>(std::move(derived_ptr)); in test_upcast() 474 fbl::unique_ptr<Base> base_ptr(derived_ptr); in test_upcast() 483 fbl::unique_ptr<Base> base_ptr = derived_ptr; in test_upcast() 492 fbl::unique_ptr<Base> base_ptr; in test_upcast() 502 bool test_res = handoff_fn<fbl::unique_ptr<Base>>(derived_ptr); in test_upcast()
|
| A D | ref_ptr_tests.cpp | 309 template <typename Base, 328 fbl::RefPtr<Base> base_ptr(derived_ptr); in do_test() 346 fbl::RefPtr<Base> base_ptr(std::move(derived_ptr)); in do_test() 372 fbl::RefPtr<Base> base_ptr = derived_ptr; in do_test() 390 fbl::RefPtr<Base> base_ptr = std::move(derived_ptr); in do_test() 416 fbl::RefPtr<Base> base_ptr; in do_test() 435 fbl::RefPtr<Base> base_ptr; in do_test() 468 bool test_res = handoff_lvalue_fn<fbl::RefPtr<Base>>(derived_ptr); in do_test() 480 bool test_res = handoff_copy_fn<fbl::RefPtr<Base>>(derived_ptr); in do_test() 492 bool test_res = handoff_rvalue_fn<fbl::RefPtr<Base>>(std::move(derived_ptr)); in do_test()
|
| /system/utest/fbl/include/fbl/tests/intrusive_containers/ |
| A D | base_test_environments.h | 70 using PtrType = typename Base::PtrType; 71 static constexpr auto OBJ_COUNT = Base::OBJ_COUNT; 95 using PtrType = typename Base::PtrType; 96 static constexpr auto OBJ_COUNT = Base::OBJ_COUNT; 117 using PtrType = typename Base::PtrType; 118 static constexpr auto OBJ_COUNT = Base::OBJ_COUNT; 139 using PtrType = typename Base::PtrType; 140 static constexpr auto OBJ_COUNT = Base::OBJ_COUNT; 161 using PtrType = typename Base::PtrType; 162 static constexpr auto OBJ_COUNT = Base::OBJ_COUNT; [all …]
|
| A D | associative_container_test_environment.h | 499 using Base = TestEnvironmentBase<TestEnvTraits>; variable 500 static constexpr size_t OBJ_COUNT = Base::OBJ_COUNT;
|
| A D | sequence_container_test_environment.h | 1176 using Base = TestEnvironmentBase<TestEnvTraits>; variable 1177 static constexpr size_t OBJ_COUNT = Base::OBJ_COUNT;
|
| /system/ulib/ddktl/include/ddktl/ |
| A D | device-internal.h | 302 template <typename Base, typename...> 305 template <typename Base, typename Mixin, typename... Mixins> 306 struct all_mixins<Base, Mixin, Mixins...> 307 : std::integral_constant<bool, std::is_base_of<Base, Mixin>::value && 308 all_mixins<Base, Mixins...>::value> {};
|
| /system/ulib/libzbi/include/libzbi/ |
| A D | zbi-cpp.h | 58 const uint8_t* Base() const { return base_; }; in Base() function
|
| /system/utest/platform-bus/ |
| A D | main.cpp | 49 ASSERT_EQ(zbi_vmo.write(zbi.Base(), 0, zbi.Length()), ZX_OK); in GetBootData()
|
| /system/ulib/libzbi/ |
| A D | zbi-zx.cpp | 156 memcpy(data->Payload(), Base() + kernel_size, data_payload_size); in SplitComplete()
|
| /system/ulib/fbl/include/fbl/ |
| A D | type_support.h | 318 template <typename Base, typename Derived> 319 struct is_base_of : public integral_constant<bool, __is_base_of(Base, Derived)> { };
|
| /system/ulib/lockdep/include/lockdep/ |
| A D | lock_class.h | 293 using Base = LockDep;
|
Completed in 21 milliseconds