Searched refs:T1 (Results 1 – 5 of 5) 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/test/1962-multi-thread-events/src/art/ |
D | Test1962.java | 55 Thread T1 = new Thread(threadRun, "T1 Thread"); in doTest() local 57 T1.start(); in doTest() 63 setupThread(T1, t1Events, target); in doTest() 68 T1.join(); in doTest()
|
/art/test/1974-resize-array/ |
D | expected-stdout.txt | 43 T1: Test local multi-thread 44 T1: val is: [1, 2, 3] resize -2 45 T1: val is: [1] 46 T1: Same value? true
|
/art/test/1962-multi-thread-events/ |
D | expected-stdout.txt | 2 Hit event on T1 Thread
|
/art/runtime/verifier/ |
D | verifier_deps.cc | 352 template<typename T1, typename T2> 353 static inline void EncodeTuple(std::vector<uint8_t>* out, const std::tuple<T1, T2>& t) { in EncodeTuple() argument 358 template<typename T1, typename T2> 359 static inline bool DecodeTuple(const uint8_t** in, const uint8_t* end, std::tuple<T1, T2>* t) { in DecodeTuple() argument 365 *t = std::make_tuple(Decode<T1>(v1), Decode<T2>(v2)); in DecodeTuple() 369 template<typename T1, typename T2, typename T3> 370 static inline void EncodeTuple(std::vector<uint8_t>* out, const std::tuple<T1, T2, T3>& t) { in EncodeTuple() argument 376 template<typename T1, typename T2, typename T3> 377 static inline bool DecodeTuple(const uint8_t** in, const uint8_t* end, std::tuple<T1, T2, T3>* t) { in DecodeTuple() argument 384 *t = std::make_tuple(Decode<T1>(v1), Decode<T2>(v2), Decode<T3>(v3)); in DecodeTuple()
|