Lines Matching refs:uint32_t

48 inline uint32_t GetFixed32Element(const char* base, size_t offset) {  in GetFixed32Element()
49 return DecodeFixed32(base + offset * sizeof(uint32_t)); in GetFixed32Element()
87 uint32_t offset_;
88 uint32_t next_offset_;
105 user_key_len_(static_cast<uint32_t>(table_properties->fixed_key_len)), in PlainTableReader()
110 static_cast<uint32_t>(table_properties->data_size)), in PlainTableReader()
221 std::vector<uint32_t>* prefix_hashes) { in PopulateIndexRecordList()
224 uint32_t pos = data_start_offset_; in PopulateIndexRecordList()
231 uint32_t key_offset = pos; in PopulateIndexRecordList()
273 uint32_t bloom_total_bits = num_keys * bloom_bits_per_key; in AllocateBloom()
281 void PlainTableReader::FillBloom(const std::vector<uint32_t>& prefix_hashes) { in FillBloom()
362 static_cast<uint32_t>(props->num_entries), in PopulateIndex()
370 uint32_t num_blocks = 0; in PopulateIndex()
379 static_cast<uint32_t>(bloom_block->size()) * 8, in PopulateIndex()
391 std::vector<uint32_t> prefix_hashes; in PopulateIndex()
435 uint32_t prefix_hash, bool& prefix_matched, in GetOffset()
436 uint32_t* offset) const { in GetOffset()
438 uint32_t prefix_index_offset; in GetOffset()
449 uint32_t upper_bound; in GetOffset()
452 uint32_t low = 0; in GetOffset()
453 uint32_t high = upper_bound; in GetOffset()
462 uint32_t mid = (high + low) / 2; in GetOffset()
463 uint32_t file_offset = GetFixed32Element(base_ptr, mid); in GetOffset()
464 uint32_t tmp; in GetOffset()
488 uint32_t tmp; in GetOffset()
489 uint32_t low_key_offset = GetFixed32Element(base_ptr, low); in GetOffset()
510 bool PlainTableReader::MatchBloom(uint32_t hash) const { in MatchBloom()
524 Status PlainTableReader::Next(PlainTableKeyDecoder* decoder, uint32_t* offset, in Next()
537 uint32_t bytes_read; in Next()
549 uint32_t prefix_hash = GetSliceHash(GetPrefix(target)); in Prepare()
560 uint32_t prefix_hash; in Get()
581 uint32_t offset; in Get()
700 uint32_t prefix_hash = 0; in Seek()