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

  /external/chromium_org/rlz/lib/
crc32_wrapper.cc 9 #include "rlz/lib/crc32.h"
15 int Crc32(const unsigned char* buf, int length) {
16 return crc32(0L, buf, length);
19 bool Crc32(const char* text, int* crc) {
21 ASSERT_STRING("Crc32: crc is NULL.");
30 *crc = crc32(*crc, reinterpret_cast<const unsigned char*>(text + i), 1);
  /external/chromium_org/base/metrics/
bucket_ranges.cc 69 static uint32 Crc32(uint32 sum, HistogramBase::Sample value) {
115 checksum = Crc32(checksum, ranges_[index]);

Completed in 1136 milliseconds