Home
last modified time | relevance | path

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

/art/runtime/interpreter/
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) { in SafeMath()
35 typedef typename select_bigger<T1, T2>::type biggest_T; in SafeMath()
38 static_assert(std::is_signed<T2>::value, "Expected T2 to be signed"); in SafeMath()
45 template<typename T1, typename T2>
46 static inline typename select_bigger<T1, T2>::type SafeAdd(T1 a, T2 b) { in SafeAdd()
51 template<typename T1, typename T2>
52 static inline typename select_bigger<T1, T2>::type SafeSub(T1 a, T2 b) { in SafeSub()
[all …]
/art/cmdline/
Dcmdline_parse_result.h113 template <typename T2>
114 static CmdlineParseResult<T> CastError(const CmdlineParseResult<T2>& other) { in CastError()
/art/compiler/utils/arm/
Dassembler_arm32_test.cc533 template <typename Assembler, typename T1, typename T2>
534 std::function<void(T1, T2)> GetBoundFunction2(void (Assembler::*f)(T1, T2)) { in GetBoundFunction2() argument
538 template <typename Assembler, typename T1, typename T2, typename T3>
539 std::function<void(T1, T2, T3)> GetBoundFunction3(void (Assembler::*f)(T1, T2, T3)) { in GetBoundFunction3() argument
543 template <typename Assembler, typename T1, typename T2, typename T3, typename T4>
544 std::function<void(T1, T2, T3, T4)> GetBoundFunction4( in GetBoundFunction4() argument
545 void (Assembler::*f)(T1, T2, T3, T4)) { in GetBoundFunction4()
549 template <typename Assembler, typename T1, typename T2, typename T3, typename T4, typename T5>
550 std::function<void(T1, T2, T3, T4, T5)> GetBoundFunction5( in GetBoundFunction5() argument
551 void (Assembler::*f)(T1, T2, T3, T4, T5)) { in GetBoundFunction5()
[all …]
/art/cmdline/detail/
Dcmdline_parser_detail.h33 template <typename T2, typename TStream2 = std::ostream>
45 decltype(InsertionOperatorTest(FakeReference<TStream2>(), std::declval<T2>()))::value;
/art/runtime/base/
Dlogging.h215 #define EAGER_PTR_EVALUATOR(T1, T2) \ argument
216 template <> struct EagerEvaluator<T1, T2> { \
217 EagerEvaluator(T1 l, T2 r) \
/art/runtime/arch/mips64/
Dregisters_mips64.h44 T2 = 14, enumerator
/art/runtime/arch/mips/
Dregisters_mips.h40 T2 = 10, enumerator
/art/compiler/utils/mips/
Dassembler_mips_test.cc67 registers_.push_back(new mips::Register(mips::T2)); in SetUpHelpers()
100 secondary_register_names_.emplace(mips::Register(mips::T2), "t2"); in SetUpHelpers()
/art/compiler/utils/mips64/
Dassembler_mips64_test.cc95 registers_.push_back(new mips64::GpuRegister(mips64::T2)); in SetUpHelpers()
128 secondary_register_names_.emplace(mips64::GpuRegister(mips64::T2), "t2"); in SetUpHelpers()