Home
last modified time | relevance | path

Searched refs:TensorUInt128 (Results 1 – 4 of 4) sorted by relevance

/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorUInt128.h32 struct TensorUInt128 struct
39TensorUInt128(const TensorUInt128<OTHER_HIGH, OTHER_LOW>& other) : high(other.high), low(other.low… in TensorUInt128() argument
46 TensorUInt128& operator = (const TensorUInt128<OTHER_HIGH, OTHER_LOW>& other) {
56 explicit TensorUInt128(const T& x) : high(0), low(x) { in TensorUInt128() function
62 TensorUInt128(HIGH y, LOW x) : high(y), low(x) { } in TensorUInt128() argument
78 bool operator == (const TensorUInt128<HL, LL>& lhs, const TensorUInt128<HR, LR>& rhs) argument
85 bool operator != (const TensorUInt128<HL, LL>& lhs, const TensorUInt128<HR, LR>& rhs)
92 bool operator >= (const TensorUInt128<HL, LL>& lhs, const TensorUInt128<HR, LR>& rhs)
102 bool operator < (const TensorUInt128<HL, LL>& lhs, const TensorUInt128<HR, LR>& rhs)
112 TensorUInt128<uint64_t, uint64_t> operator + (const TensorUInt128<HL, LL>& lhs, const TensorUInt128
[all …]
DTensorIntDiv.h104 …return (TensorUInt128<static_val<0>, uint64_t>(a) * TensorUInt128<static_val<0>, uint64_t>(b)).upp… in muluh()
123TensorUInt128<uint64_t, uint64_t> result = TensorUInt128<uint64_t, static_val<0> >(shift, 0) / Ten…
124 - TensorUInt128<static_val<1>, static_val<0> >(1, 0)
125 + TensorUInt128<static_val<0>, static_val<1> >(1);
/external/eigen/unsupported/test/
Dcxx11_tensor_uint128.cpp24 using Eigen::internal::TensorUInt128;
27 void VERIFY_EQUAL(TensorUInt128<uint64_t, uint64_t> actual, uint128_t expected) { in VERIFY_EQUAL()
44 TensorUInt128<uint64_t, uint64_t> i(i1, i2); in test_add()
48 TensorUInt128<uint64_t, uint64_t> j(j1, j2); in test_add()
50 TensorUInt128<uint64_t, uint64_t> actual = i + j; in test_add()
63 TensorUInt128<uint64_t, uint64_t> i(i1, i2); in test_sub()
67 TensorUInt128<uint64_t, uint64_t> j(j1, j2); in test_sub()
69 TensorUInt128<uint64_t, uint64_t> actual = i - j; in test_sub()
82 TensorUInt128<uint64_t, uint64_t> i(i1, i2); in test_mul()
86 TensorUInt128<uint64_t, uint64_t> j(j1, j2); in test_mul()
[all …]
/external/eigen/unsupported/Eigen/CXX11/
DTensor99 #include "src/Tensor/TensorUInt128.h"