OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ComputeCrc32
(Results
1 - 6
of
6
) sorted by null
/external/google-breakpad/src/common/linux/
crc32.h
44
inline uint32_t
ComputeCrc32
(const void* buf, size_t len) {
47
inline uint32_t
ComputeCrc32
(const std::string& str) {
48
return
ComputeCrc32
(str.c_str(), str.size());
/external/webrtc/webrtc/base/
crc32.h
25
inline uint32_t
ComputeCrc32
(const void* buf, size_t len) {
28
inline uint32_t
ComputeCrc32
(const std::string& str) {
29
return
ComputeCrc32
(str.c_str(), str.size());
crc32_unittest.cc
19
EXPECT_EQ(0U,
ComputeCrc32
(""));
20
EXPECT_EQ(0x352441C2U,
ComputeCrc32
("abc"));
22
ComputeCrc32
("abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq"));
/external/webrtc/webrtc/p2p/base/
stun.cc
272
rtc::
ComputeCrc32
(data, size - fingerprint_attr_size));
289
uint32_t c = rtc::
ComputeCrc32
(buf.Data(), msg_len_for_crc32);
p2ptransportchannel.cc
583
rtc::ToString<uint32_t>(rtc::
ComputeCrc32
(remote_candidate.id())));
[
all
...]
port.cc
129
return rtc::ToString<uint32_t>(rtc::
ComputeCrc32
(ost.str()));
[
all
...]
Completed in 332 milliseconds