Searched refs:uint128 (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/net/base/
H A Dint128.h15 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
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...]
H A Dint128_unittest.cc12 uint128 zero(0);
13 uint128 one(1);
14 uint128 one_2arg(0, 1);
15 uint128 two(0, 2);
16 uint128 three(0, 3);
17 uint128 big(2000, 2);
18 uint128 big_minus_one(2000, 1);
19 uint128 bigger(2001, 1);
20 uint128 biggest(kuint128max);
21 uint128 high_lo
[all...]
H A Dint128.cc14 std::ostream& operator<<(std::ostream& o, const uint128& b) {
/external/chromium_org/third_party/smhasher/src/
H A DCity.h61 typedef std::pair<uint64, uint64> uint128; typedef
63 inline uint64 Uint128Low64(const uint128& x) { return x.first; }
64 inline uint64 Uint128High64(const uint128& x) { return x.second; }
79 uint128 CityHash128(const char *s, size_t len);
83 uint128 CityHash128WithSeed(const char *s, size_t len, uint128 seed);
87 inline uint64 Hash128to64(const uint128& x) {
103 uint128 CityHashCrc128(const char *s, size_t len);
107 uint128 CityHashCrc128WithSeed(const char *s, size_t len, uint128 see
[all...]
H A DCityTest.cpp10 uint128 s(0,0);
14 *(uint128*)out = CityHash128WithSeed((const char*)key,len,s);
H A DCity.cpp117 return Hash128to64(uint128(u, v));
249 static uint128 CityMurmur(const char *s, size_t len, uint128 seed) {
276 return uint128(a ^ b, HashLen16(b, a));
279 uint128 CityHash128WithSeed(const char *s, size_t len, uint128 seed) {
334 return uint128(HashLen16(x + v.second, w.second) + y,
338 uint128 CityHash128(const char *s, size_t len) {
342 uint128(Fetch64(s) ^ k3,
347 uint128(Fetch6
[all...]
/external/chromium_org/net/quic/crypto/
H A Dnull_decrypter.cc29 uint128 hash;
54 uint128 hash;
75 bool NullDecrypter::ReadHash(QuicDataReader* reader, uint128* hash) {
88 uint128 NullDecrypter::ComputeHash(const string& data) const {
89 uint128 correct_hash = QuicUtils::FNV1a_128_Hash(data.data(), data.length());
90 uint128 mask(GG_UINT64_C(0x0), GG_UINT64_C(0xffffffff));
H A Dnull_decrypter.h39 bool ReadHash(QuicDataReader* reader, uint128* hash);
40 uint128 ComputeHash(const std::string& data) const;
H A Dnull_encrypter.cc14 const size_t kHashSizeShort = 12; // size of uint128 serialized short
31 uint128 hash = QuicUtils::FNV1a_128_Hash(buffer.data(), buffer.length());
/external/chromium_org/net/quic/
H A Dquic_utils.h29 static uint128 FNV1a_128_Hash(const char* data, int len);
47 static void SerializeUint128(uint128 v, uint8* out);
51 static void SerializeUint128Short(uint128 v, uint8* out);
H A Dquic_utils.cc41 uint128 QuicUtils::FNV1a_128_Hash(const char* data, int len) {
45 const uint128 kPrime(16777216, 315);
47 const uint128 kOffset(GG_UINT64_C(7809847782465536322),
52 uint128 hash = kOffset;
55 hash = hash ^ uint128(0, octets[i]);
110 void QuicUtils::SerializeUint128(uint128 v, uint8* out) {
119 void QuicUtils::SerializeUint128Short(uint128 v, uint8* out) {
H A Dquic_data_reader.h60 bool ReadUInt128(uint128* result);
H A Dquic_data_reader.cc50 bool QuicDataReader::ReadUInt128(uint128* result) {
61 *result = uint128(high_hash, low_hash);
/external/lldb/source/Core/
H A DRegisterValue.cpp625 if (m_data.uint128 & sign_bit)
628 m_data.uint128 |= mask;
656 case eTypeUInt128: m_data.uint128 = rhs.m_data.uint128; break;
793 case eTypeUInt128: return m_data.uint128;
796 return m_data.uint128;
800 return m_data.uint128;
804 return m_data.uint128;
816 case 16: return m_data.uint128;
844 if (sizeof(float) == sizeof(m_data.uint128))
[all...]
/external/lldb/include/lldb/Core/
H A DRegisterValue.h87 m_data.uint128 = inst;
251 m_data.uint128 = uint;
308 m_data.uint128 = uint;
390 __uint128_t uint128; member in union:lldb_private::RegisterValue::__anon25227

Completed in 3418 milliseconds