OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Crc32
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/rlz/lib/
crc32.h
12
int
Crc32
(const unsigned char* buf, int length);
13
bool
Crc32
(const char* text, int* crc);
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);
crc32_unittest.cc
7
#include "rlz/lib/
crc32
.h"
17
// Externally calculated at http://
crc32
-checksum.waraxe.us/
29
rlz_lib::
Crc32
(reinterpret_cast<const unsigned char*>(kData[i].data),
36
// Externally calculated at http://
crc32
-checksum.waraxe.us/
49
EXPECT_TRUE(rlz_lib::
Crc32
(kData[i].data, &crc));
rlz_lib.cc
13
#include "rlz/lib/
crc32
.h"
421
if (!
Crc32
(message.c_str(), &calculated_crc))
424
checksum_param = "
crc32
: "; // Empty response case.
429
if (!
Crc32
("", &calculated_crc))
/external/chromium_org/base/metrics/
bucket_ranges.cc
69
static uint32
Crc32
(uint32 sum, HistogramBase::Sample value) {
115
checksum =
Crc32
(checksum, ranges_[index]);
/external/chromium/base/metrics/
histogram.h
519
static uint32
Crc32
(uint32 sum, Sample range);
547
// Table for generating
Crc32
values.
histogram.cc
543
checksum =
Crc32
(checksum, ranges(index));
571
uint32 Histogram::
Crc32
(uint32 sum, Histogram::Sample range) {
[
all
...]
Completed in 489 milliseconds