Home
last modified time | relevance | path

Searched refs:Bindings (Results 1 – 10 of 10) sorted by relevance

/frameworks/libs/binary_translation/backend/include/berberis/backend/x86_64/
Dmachine_insn_intrinsics.h106 template <typename... Bindings>
107 constexpr size_t mem_count_v = std::tuple_size_v<filter_t<is_mem_t, ArgTraits<Bindings>...>>;
109 template <size_t N, typename... Bindings>
110 constexpr bool has_n_mem_v = mem_count_v<Bindings...> > (N - 1);
112 template <typename AsmCallInfo, auto kMnemo, auto kOpcode, typename Args, typename... Bindings>
120 typename... Bindings>
121 class MachineInsn<AsmCallInfo, kMnemo, kOpcode, std::tuple<CtorArgs...>, Bindings...> final
127 using RegBindings = filter_t<has_reg_class_t, ArgTraits<Bindings>...>;
135 ProcessArgs<0 /* reg_idx */, 0 /* mem_idx */, false /* is_disp */, Bindings...>(args...);
145 ProcessDebugString<Bindings...>(&s);
[all …]
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/
DCoroutineTestScopeModule.kt32 @Module(includes = [CoroutineTestScopeModule.Bindings::class])
55 interface Bindings { interface
DTestMocksModule.kt86 @Module(includes = [TestMocksModule.Bindings::class])
165 interface Bindings { interface
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/settings/
DFakeUserTracker.kt98 @Module(includes = [FakeUserTrackerModule.Bindings::class])
103 interface Bindings { interface in FakeUserTrackerModule
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/flags/
DFakeFeatureFlags.kt166 @Module(includes = [FakeFeatureFlagsClassicModule.Bindings::class])
176 interface Bindings { interface
/frameworks/base/packages/SystemUI/src/com/android/systemui/unfold/
DUnfoldTransitionModule.kt63 UnfoldTransitionModule.Bindings::class in <lambda>()
184 interface Bindings { in <lambda>() interface
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/authentication/data/repository/
DFakeAuthenticationRepository.kt259 @Module(includes = [FakeAuthenticationRepositoryModule.Bindings::class])
268 interface Bindings { interface
/frameworks/libs/binary_translation/intrinsics/common_to_x86/
Dgen_text_asm_intrinsics.cc131 int register_numbers[std::tuple_size_v<typename AsmCallInfo::Bindings> == 0 in GenerateFunctionBody()
133 : std::tuple_size_v<typename AsmCallInfo::Bindings>]; in GenerateFunctionBody()
/frameworks/libs/binary_translation/intrinsics/common_to_x86/include/berberis/intrinsics/common_to_x86/
Dintrinsics_bindings.h440 using Bindings = std::tuple<BindingsTypes...>; variable
/frameworks/libs/binary_translation/heavy_optimizer/riscv64/
Dinline_intrinsic.h372 ProcessBindingsResults<AsmCallInfo>(type_wrapper<typename AsmCallInfo::Bindings>()); in operator()