Home
last modified time | relevance | path

Searched refs:ComputeCrc32 (Results 1 – 6 of 6) sorted by relevance

/external/google-breakpad/src/common/linux/
Dcrc32.h44 inline uint32_t ComputeCrc32(const void* buf, size_t len) { in ComputeCrc32() function
47 inline uint32_t ComputeCrc32(const std::string& str) { in ComputeCrc32() function
48 return ComputeCrc32(str.c_str(), str.size()); in ComputeCrc32()
/external/webrtc/webrtc/base/
Dcrc32.h25 inline uint32_t ComputeCrc32(const void* buf, size_t len) { in ComputeCrc32() function
28 inline uint32_t ComputeCrc32(const std::string& str) { in ComputeCrc32() function
29 return ComputeCrc32(str.c_str(), str.size()); in ComputeCrc32()
Dcrc32_unittest.cc19 EXPECT_EQ(0U, ComputeCrc32("")); in TEST()
20 EXPECT_EQ(0x352441C2U, ComputeCrc32("abc")); in TEST()
22 ComputeCrc32("abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq")); in TEST()
/external/webrtc/webrtc/p2p/base/
Dstun.cc272 rtc::ComputeCrc32(data, size - fingerprint_attr_size)); in ValidateFingerprint()
289 uint32_t c = rtc::ComputeCrc32(buf.Data(), msg_len_for_crc32); in AddFingerprint()
Dp2ptransportchannel.cc583 rtc::ToString<uint32_t>(rtc::ComputeCrc32(remote_candidate.id()))); in OnUnknownAddress()
Dport.cc129 return rtc::ToString<uint32_t>(rtc::ComputeCrc32(ost.str())); in ComputeFoundation()