Lines Matching refs:bytes_read

54                                                uint32_t* bytes_read) {  in DecodeSize()  argument
66 *bytes_read = 1; in DecodeSize()
78 *bytes_read = tmp_bytes_read + 1; in DecodeSize()
226 uint32_t* bytes_read) { in ReadVarint32() argument
233 *bytes_read = static_cast<uint32_t>(key_ptr - start); in ReadVarint32()
236 return ReadVarint32NonMmap(offset, out, bytes_read); in ReadVarint32()
241 uint32_t* bytes_read) { in ReadVarint32NonMmap() argument
255 *bytes_read = in ReadVarint32NonMmap()
262 uint32_t* bytes_read, bool* internal_key_valid, Slice* internal_key) { in ReadInternalKey() argument
273 *bytes_read += user_key_size + 1; in ReadInternalKey()
285 *bytes_read += user_key_size + 8; in ReadInternalKey()
293 uint32_t* bytes_read, in NextPlainEncodingKey() argument
309 *bytes_read = tmp_read; in NextPlainEncodingKey()
314 s = ReadInternalKey(start_offset + *bytes_read, user_key_size, parsed_key, in NextPlainEncodingKey()
315 bytes_read, &decoded_internal_key_valid, in NextPlainEncodingKey()
341 uint32_t* bytes_read, bool* seekable) { in NextPrefixEncodingKey() argument
351 s = DecodeSize(start_offset + *bytes_read, &entry_type, &size, in NextPrefixEncodingKey()
359 *bytes_read += my_bytes_read; in NextPrefixEncodingKey()
365 s = ReadInternalKey(start_offset + *bytes_read, size, parsed_key, in NextPrefixEncodingKey()
366 bytes_read, &decoded_internal_key_valid, in NextPrefixEncodingKey()
412 s = ReadInternalKey(start_offset + *bytes_read, size, parsed_key, in NextPrefixEncodingKey()
413 bytes_read, &decoded_internal_key_valid, in NextPrefixEncodingKey()
453 uint32_t* bytes_read, bool* seekable) { in NextKey() argument
455 Status s = NextKeyNoValue(start_offset, parsed_key, internal_key, bytes_read, in NextKey()
458 assert(bytes_read != nullptr); in NextKey()
461 bool success = file_reader_.ReadVarint32(start_offset + *bytes_read, in NextKey()
470 *bytes_read += value_size_bytes; in NextKey()
471 success = file_reader_.Read(start_offset + *bytes_read, value_size, value); in NextKey()
475 *bytes_read += value_size; in NextKey()
483 uint32_t* bytes_read, in NextKeyNoValue() argument
485 *bytes_read = 0; in NextKeyNoValue()
492 bytes_read, seekable); in NextKeyNoValue()
496 bytes_read, seekable); in NextKeyNoValue()