Searched refs:T2 (Results 1 - 9 of 9) sorted by relevance

/art/runtime/interpreter/
H A Dsafe_math.h27 template <typename T1, typename T2>
29 typedef typename std::conditional<sizeof(T1) >= sizeof(T2), T1, T2>::type type;
33 template<template <typename OpT> class Op, typename T1, typename T2>
34 static inline typename select_bigger<T1, T2>::type SafeMath(T1 a, T2 b) {
35 typedef typename select_bigger<T1, T2>::type biggest_T;
38 static_assert(std::is_signed<T2>::value, "Expected T2 to be signed");
45 template<typename T1, typename T2>
[all...]
/art/cmdline/
H A Dcmdline_parse_result.h111 // Cast an error-result from type T2 to T1.
113 template <typename T2>
114 static CmdlineParseResult<T> CastError(const CmdlineParseResult<T2>& other) {
/art/runtime/arch/mips/
H A Dregisters_mips.h40 T2 = 10, enumerator in enum:art::mips::Register
/art/runtime/arch/mips64/
H A Dregisters_mips64.h44 T2 = 14, enumerator in enum:art::mips64::GpuRegister
/art/cmdline/detail/
H A Dcmdline_parser_detail.h33 template <typename T2, typename TStream2 = std::ostream>
45 decltype(InsertionOperatorTest(FakeReference<TStream2>(), std::declval<T2>()))::value;
75 // SupportsEqualityOperatorImpl<T1, T2>::value will evaluate to a boolean,
76 // whose value is true if T1 can be compared against T2 with ==,
/art/runtime/base/
H A Dlogging.h215 #define EAGER_PTR_EVALUATOR(T1, T2) \
216 template <> struct EagerEvaluator<T1, T2> { \
217 EagerEvaluator(T1 l, T2 r) \
/art/compiler/utils/arm/
H A Dassembler_arm32_test.cc533 template <typename Assembler, typename T1, typename T2>
534 std::function<void(T1, T2)> GetBoundFunction2(void (Assembler::*f)(T1, T2)) {
538 template <typename Assembler, typename T1, typename T2, typename T3>
539 std::function<void(T1, T2, T3)> GetBoundFunction3(void (Assembler::*f)(T1, T2, T3)) {
543 template <typename Assembler, typename T1, typename T2, typename T3, typename T4>
544 std::function<void(T1, T2, T3, T4)> GetBoundFunction4(
545 void (Assembler::*f)(T1, T2, T3, T4)) {
549 template <typename Assembler, typename T1, typename T2, typenam
[all...]
/art/compiler/utils/mips/
H A Dassembler_mips_test.cc67 registers_.push_back(new mips::Register(mips::T2));
100 secondary_register_names_.emplace(mips::Register(mips::T2), "t2");
/art/compiler/utils/mips64/
H A Dassembler_mips64_test.cc95 registers_.push_back(new mips64::GpuRegister(mips64::T2));
128 secondary_register_names_.emplace(mips64::GpuRegister(mips64::T2), "t2");

Completed in 141 milliseconds