HomeSort by relevance Sort by last modified time
    Searched refs:TensorUInt128 (Results 1 - 3 of 3) sorted by null

  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorUInt128.h 32 struct TensorUInt128
39 TensorUInt128(const TensorUInt128<OTHER_HIGH, OTHER_LOW>& other) : high(other.high), low(other.low) {
46 TensorUInt128& operator = (const TensorUInt128<OTHER_HIGH, OTHER_LOW>& other) {
56 explicit TensorUInt128(const T& x) : high(0), low(x) {
62 TensorUInt128(HIGH y, LOW x) : high(y), low(x) { }
78 bool operator == (const TensorUInt128<HL, LL>& lhs, const TensorUInt128<HR, LR>& rhs)
85 bool operator != (const TensorUInt128<HL, LL>& lhs, const TensorUInt128<HR, LR>& rhs
    [all...]
TensorIntDiv.h 104 return (TensorUInt128<static_val<0>, uint64_t>(a) * TensorUInt128<static_val<0>, uint64_t>(b)).upper();
123 TensorUInt128<uint64_t, uint64_t> result = TensorUInt128<uint64_t, static_val<0> >(shift, 0) / TensorUInt128<static_val<0>, uint64_t>(divider)
124 - TensorUInt128<static_val<1>, static_val<0> >(1, 0)
125 + TensorUInt128<static_val<0>, static_val<1> >(1);
  /external/eigen/unsupported/test/
cxx11_tensor_uint128.cpp 24 using Eigen::internal::TensorUInt128;
27 void VERIFY_EQUAL(TensorUInt128<uint64_t, uint64_t> actual, uint128_t expected) {
44 TensorUInt128<uint64_t, uint64_t> i(i1, i2);
48 TensorUInt128<uint64_t, uint64_t> j(j1, j2);
50 TensorUInt128<uint64_t, uint64_t> actual = i + j;
63 TensorUInt128<uint64_t, uint64_t> i(i1, i2);
67 TensorUInt128<uint64_t, uint64_t> j(j1, j2);
69 TensorUInt128<uint64_t, uint64_t> actual = i - j;
82 TensorUInt128<uint64_t, uint64_t> i(i1, i2);
86 TensorUInt128<uint64_t, uint64_t> j(j1, j2)
    [all...]

Completed in 335 milliseconds