Home | History | Annotate | Download | only in base

Lines Matching defs:compressed

167     std::string* compressed = proto->mutable_compressed_value();
170 compressed->resize(compressed_len);
171 int result = compress(reinterpret_cast<Bytef*>(string_as_array(compressed)),
186 compressed->resize(compressed_len);
232 debug_string.append(", compressed: " + compressed_string);
412 // This allows us keep the position strings compressed as we sort them.
414 // The compressed format and the decode algorithm:
416 // The compressed string is a series of blocks, almost all of which are 8 bytes
417 // in length. The only exception is the last block in the compressed string,
543 std::string compressed = CompressImpl(str);
544 DCHECK(IsValidCompressed(compressed));
545 DCHECK_EQ(str, Uncompress(compressed));
546 return compressed;
554 // The compressed length will usually be at least as long as the suffix (28),
605 // Iterate through the compressed string one block at a time.