HomeSort by relevance Sort by last modified time
    Searched defs:uint128 (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/smhasher/src/
City.h 54 typedef std::pair<uint64, uint64> uint128; typedef
56 inline uint64 Uint128Low64(const uint128& x) { return x.first; }
57 inline uint64 Uint128High64(const uint128& x) { return x.second; }
72 uint128 CityHash128(const char *s, size_t len);
76 uint128 CityHash128WithSeed(const char *s, size_t len, uint128 seed);
80 inline uint64 Hash128to64(const uint128& x) {
96 uint128 CityHashCrc128(const char *s, size_t len);
100 uint128 CityHashCrc128WithSeed(const char *s, size_t len, uint128 seed)
    [all...]
  /external/chromium_org/net/base/
int128.h 15 class uint128 { class
17 uint128(); // Sets to 0, but don't trust on this behavior.
18 uint128(uint64 top, uint64 bottom);
19 uint128(int bottom);
20 uint128(uint32 bottom); // Top 96 bits = 0
21 uint128(uint64 bottom); // hi_ = 0
22 uint128(const uint128 &val);
23 uint128(const uint128_pod &val);
27 uint128& operator=(const uint128& b)
107 inline uint128::uint128(): lo_(0), hi_(0) { } function in class:uint128
108 inline uint128::uint128(uint64 top, uint64 bottom) : lo_(bottom), hi_(top) { } function in class:uint128
109 inline uint128::uint128(const uint128 &v) : lo_(v.lo_), hi_(v.hi_) { } function in class:uint128
110 inline uint128::uint128(const uint128_pod &v) : lo_(v.lo), hi_(v.hi) { } function in class:uint128
111 inline uint128::uint128(uint64 bottom) : lo_(bottom), hi_(0) { } function in class:uint128
112 inline uint128::uint128(uint32 bottom) : lo_(bottom), hi_(0) { } function in class:uint128
113 inline uint128::uint128(int bottom) : lo_(bottom), hi_(0) { function in class:uint128
    [all...]

Completed in 231 milliseconds