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

  /external/tensorflow/tensorflow/core/platform/default/
fingerprint.h 29 return {::util::Uint128Low64(fingerprint),
  /external/protobuf/src/google/protobuf/stubs/
int128.h 83 friend uint64 Uint128Low64(const uint128& v);
128 inline uint64 Uint128Low64(const uint128& v) { return v.lo_; }
137 return (Uint128Low64(lhs) == Uint128Low64(rhs) &&
170 (Uint128Low64(lhs) op Uint128Low64(rhs)) : \
185 const uint64 lo_flip = ~Uint128Low64(val);
194 return !Uint128High64(val) && !Uint128Low64(val);
200 return uint128(~Uint128High64(val), ~Uint128Low64(val));
206 Uint128Low64(lhs) op Uint128Low64(rhs));
    [all...]
int128.cc 76 return Fls64(Uint128Low64(n));
int128_unittest.cc 123 EXPECT_EQ(Uint128Low64(biggest), kuint64max);
138 EXPECT_EQ(Uint128Low64((uint128(1) << 64) - 1), kuint64max);
182 EXPECT_EQ(67890, Uint128Low64(from_pod));
  /external/libtextclassifier/util/hash/
farmhash.h 33 inline uint64_t Uint128Low64(const uint128_t x) {
44 inline uint64_t Uint128Low64(const uint128_t x) { return x.first; }
106 uint64_t a = (Uint128Low64(x) ^ Uint128High64(x)) * kMul;
130 uint64_t a = (Uint128Low64(x) ^ Uint128High64(x)) * kMul;
farmhash.cc 342 uint64_t y = DebugTweak(Uint128Low64(x));
    [all...]
  /external/protobuf/src/google/protobuf/util/
time_util.cc 397 int64 seconds = static_cast<int64>(Uint128Low64(value / kNanosPerSecond));
398 int32 nanos = static_cast<int32>(Uint128Low64(value % kNanosPerSecond));
412 int64 seconds = static_cast<int64>(Uint128Low64(value / kNanosPerSecond));
413 int32 nanos = static_cast<int32>(Uint128Low64(value % kNanosPerSecond));
500 int64 result = Uint128Low64(value1 / value2);

Completed in 199 milliseconds