Home
last modified time | relevance | path

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

/external/webrtc/rtc_base/
Dcrc32.h26 inline uint32_t ComputeCrc32(const void* buf, size_t len) { in ComputeCrc32() function
29 inline uint32_t ComputeCrc32(const std::string& str) { in ComputeCrc32() function
30 return ComputeCrc32(str.c_str(), str.size()); in ComputeCrc32()
Dcrc32_unittest.cc20 EXPECT_EQ(0U, ComputeCrc32("")); in TEST()
21 EXPECT_EQ(0x352441C2U, ComputeCrc32("abc")); in TEST()
24 ComputeCrc32("abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq")); in TEST()
/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/api/transport/
Dstun.cc383 rtc::ComputeCrc32(data, size - fingerprint_attr_size)); in ValidateFingerprint()
423 uint32_t c = rtc::ComputeCrc32(buf.Data(), msg_len_for_crc32); in AddFingerprint()
/external/webrtc/p2p/base/
Dport.cc104 return rtc::ToString(rtc::ComputeCrc32(sb.Release())); in ComputeFoundation()
Dp2p_transport_channel.cc1039 rtc::ToString(rtc::ComputeCrc32(remote_candidate.id()))); in OnUnknownAddress()