OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DecodeFixed32
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/third_party/leveldatabase/src/util/
coding.h
58
inline uint32_t
DecodeFixed32
(const char* ptr) {
79
uint64_t lo =
DecodeFixed32
(ptr);
80
uint64_t hi =
DecodeFixed32
(ptr + 4);
hash.cc
27
uint32_t w =
DecodeFixed32
(data);
cache_test.cc
21
return
DecodeFixed32
(k.data());
coding_test.cc
21
uint32_t actual =
DecodeFixed32
(p);
crc32c.cc
283
return
DecodeFixed32
(reinterpret_cast<const char*>(p));
/external/chromium_org/third_party/leveldatabase/src/table/
filter_block.cc
88
uint32_t last_word =
DecodeFixed32
(contents.data() + n - 5);
98
uint32_t start =
DecodeFixed32
(offset_ + index*4);
99
uint32_t limit =
DecodeFixed32
(offset_ + index*4 + 4);
format.cc
46
const uint32_t magic_lo =
DecodeFixed32
(magic_ptr);
47
const uint32_t magic_hi =
DecodeFixed32
(magic_ptr + 4);
92
const uint32_t crc = crc32c::Unmask(
DecodeFixed32
(data + n + 1));
filter_block_test.cc
33
if (h ==
DecodeFixed32
(filter.data() + i)) {
block.cc
20
return
DecodeFixed32
(data_ + size_ - sizeof(uint32_t));
101
return
DecodeFixed32
(data_ + restarts_ + index * sizeof(uint32_t));
/external/chromium_org/third_party/leveldatabase/src/db/
write_batch.cc
83
return
DecodeFixed32
(b->rep_.data() + 8);
log_reader.cc
230
uint32_t expected_crc = crc32c::Unmask(
DecodeFixed32
(header));
Completed in 109 milliseconds