Searched refs:T1 (Results 1 – 6 of 6) sorted by relevance
/art/runtime/interpreter/ |
D | safe_math.h | 27 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() 37 static_assert(std::is_signed<T1>::value, "Expected T1 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/compiler/utils/arm/ |
D | assembler_arm32_test.cc | 400 template <typename T1, typename T2> 401 std::function<void(T1, T2)> GetBoundFunction2(void (arm::Arm32Assembler::*f)(T1, T2)) { in GetBoundFunction2() argument 405 template <typename T1, typename T2, typename T3> 406 std::function<void(T1, T2, T3)> GetBoundFunction3(void (arm::Arm32Assembler::*f)(T1, T2, T3)) { in GetBoundFunction3() argument 410 template <typename T1, typename T2, typename T3, typename T4> 411 std::function<void(T1, T2, T3, T4)> GetBoundFunction4( in GetBoundFunction4() 412 void (arm::Arm32Assembler::*f)(T1, T2, T3, T4)) { in GetBoundFunction4() argument 416 template <typename T1, typename T2, typename T3, typename T4, typename T5> 417 std::function<void(T1, T2, T3, T4, T5)> GetBoundFunction5( in GetBoundFunction5() 418 void (arm::Arm32Assembler::*f)(T1, T2, T3, T4, T5)) { in GetBoundFunction5() argument [all …]
|
/art/runtime/base/ |
D | logging.h | 210 #define EAGER_PTR_EVALUATOR(T1, T2) \ argument 211 template <> struct EagerEvaluator<T1, T2> { \ 212 EagerEvaluator(T1 l, T2 r) \
|
/art/compiler/jni/quick/mips/ |
D | calling_convention_mips.cc | 127 callee_save_regs_.push_back(MipsManagedRegister::FromCoreRegister(T1)); in MipsJniCallingConvention() 140 result = 1 << T0 | 1 << T1 | 1 << T2 | 1 << T3 | 1 << T4 | 1 << T5 | 1 << T6 | in CoreSpillMask()
|
/art/runtime/arch/mips/ |
D | registers_mips.h | 39 T1 = 9, enumerator
|
/art/runtime/arch/mips64/ |
D | registers_mips64.h | 43 T1 = 13, enumerator
|