├── .bazelrc ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── MODULE.bazel ├── README.md ├── configure ├── doc ├── index.md ├── record_writer_options.md └── riegeli_records_file_format.md ├── python ├── BUILD ├── MANIFEST.in ├── README.md ├── __init__.py ├── build_pip_package.sh ├── dummy_binary.py ├── riegeli │ ├── BUILD │ ├── BUILD.tpl │ ├── __init__.py │ ├── base │ │ ├── BUILD │ │ ├── __init__.py │ │ ├── riegeli_error.py │ │ ├── utils.cc │ │ └── utils.h │ ├── bytes │ │ ├── BUILD │ │ ├── python_reader.cc │ │ ├── python_reader.h │ │ ├── python_writer.cc │ │ └── python_writer.h │ ├── py_extension.bzl │ ├── python_configure.bzl │ ├── records │ │ ├── BUILD │ │ ├── __init__.py │ │ ├── examples │ │ │ ├── BUILD │ │ │ ├── __init__.py │ │ │ └── write_read_records.py │ │ ├── record_position.cc │ │ ├── record_position.h │ │ ├── record_reader.cc │ │ ├── record_writer.cc │ │ ├── records_metadata.proto │ │ ├── skipped_region.py │ │ └── tests │ │ │ ├── BUILD │ │ │ ├── __init__.py │ │ │ ├── records_test.proto │ │ │ └── records_test.py │ └── tensorflow │ │ ├── BUILD │ │ ├── __init__.py │ │ ├── kernel_tests │ │ ├── __init__.py │ │ └── riegeli_dataset_test.py │ │ └── ops │ │ ├── __init__.py │ │ └── riegeli_dataset_ops.py └── setup.py ├── riegeli ├── .gitignore ├── BUILD ├── base │ ├── BUILD │ ├── any.h │ ├── any_initializer.h │ ├── any_internal.h │ ├── arithmetic.h │ ├── assert.cc │ ├── assert.h │ ├── background_cleaning.cc │ ├── background_cleaning.h │ ├── binary_search.h │ ├── buffer.cc │ ├── buffer.h │ ├── buffering.h │ ├── byte_fill.cc │ ├── byte_fill.h │ ├── bytes_ref.h │ ├── c_string_ref.h │ ├── chain.cc │ ├── chain.h │ ├── chain_base.h │ ├── chain_details.h │ ├── closing_ptr.h │ ├── compact_string.cc │ ├── compact_string.h │ ├── compare.h │ ├── constexpr.h │ ├── cord_utils.cc │ ├── cord_utils.h │ ├── debug.cc │ ├── debug.h │ ├── dependency.h │ ├── dependency_base.h │ ├── dependency_manager.h │ ├── errno_mapping.cc │ ├── errno_mapping.h │ ├── estimated_allocated_size.h │ ├── external_data.cc │ ├── external_data.h │ ├── external_ref.h │ ├── external_ref_base.h │ ├── external_ref_support.h │ ├── global.h │ ├── initializer.h │ ├── initializer_internal.h │ ├── intrusive_shared_ptr.h │ ├── invoker.h │ ├── iterable.h │ ├── maker.h │ ├── memory_estimator.cc │ ├── memory_estimator.h │ ├── moving_dependency.h │ ├── new_aligned.h │ ├── null_safe_memcpy.h │ ├── object.cc │ ├── object.h │ ├── optional_compact_string.h │ ├── options_parser.cc │ ├── options_parser.h │ ├── ownership.h │ ├── parallelism.cc │ ├── parallelism.h │ ├── port.h │ ├── recycling_pool.h │ ├── ref_count.h │ ├── reset.h │ ├── shared_buffer.cc │ ├── shared_buffer.h │ ├── shared_ptr.h │ ├── sized_shared_buffer.cc │ ├── sized_shared_buffer.h │ ├── stable_dependency.h │ ├── status.cc │ ├── status.h │ ├── stream_utils.cc │ ├── stream_utils.h │ ├── string_ref.h │ ├── string_utils.cc │ ├── string_utils.h │ ├── temporary_storage.h │ ├── type_erased_ref.h │ ├── type_id.h │ ├── type_traits.h │ ├── types.h │ ├── unicode.cc │ └── unicode.h ├── brotli │ ├── BUILD │ ├── brotli_allocator.cc │ ├── brotli_allocator.h │ ├── brotli_dictionary.cc │ ├── brotli_dictionary.h │ ├── brotli_reader.cc │ ├── brotli_reader.h │ ├── brotli_writer.cc │ └── brotli_writer.h ├── bytes │ ├── BUILD │ ├── array_backward_writer.cc │ ├── array_backward_writer.h │ ├── array_writer.cc │ ├── array_writer.h │ ├── backward_writer.cc │ ├── backward_writer.h │ ├── buffer_options.cc │ ├── buffer_options.h │ ├── buffered_reader.cc │ ├── buffered_reader.h │ ├── buffered_writer.cc │ ├── buffered_writer.h │ ├── cfile_handle.cc │ ├── cfile_handle.h │ ├── cfile_internal.cc │ ├── cfile_internal.h │ ├── cfile_internal_for_cc.h │ ├── cfile_reader.cc │ ├── cfile_reader.h │ ├── cfile_writer.cc │ ├── cfile_writer.h │ ├── chain_backward_writer.cc │ ├── chain_backward_writer.h │ ├── chain_reader.cc │ ├── chain_reader.h │ ├── chain_writer.cc │ ├── chain_writer.h │ ├── compact_string_writer.h │ ├── copy_all.cc │ ├── copy_all.h │ ├── cord_backward_writer.cc │ ├── cord_backward_writer.h │ ├── cord_reader.cc │ ├── cord_reader.h │ ├── cord_writer.cc │ ├── cord_writer.h │ ├── fd_handle.cc │ ├── fd_handle.h │ ├── fd_internal.cc │ ├── fd_internal.h │ ├── fd_internal_for_cc.h │ ├── fd_mmap_reader.cc │ ├── fd_mmap_reader.h │ ├── fd_reader.cc │ ├── fd_reader.h │ ├── fd_writer.cc │ ├── fd_writer.h │ ├── file_mode_string.cc │ ├── file_mode_string.h │ ├── iostream_internal.h │ ├── istream_reader.cc │ ├── istream_reader.h │ ├── joining_reader.cc │ ├── joining_reader.h │ ├── limiting_backward_writer.cc │ ├── limiting_backward_writer.h │ ├── limiting_reader.cc │ ├── limiting_reader.h │ ├── limiting_writer.cc │ ├── limiting_writer.h │ ├── null_backward_writer.cc │ ├── null_backward_writer.h │ ├── null_writer.cc │ ├── null_writer.h │ ├── ostream_writer.cc │ ├── ostream_writer.h │ ├── path_ref.h │ ├── position_shifting_backward_writer.cc │ ├── position_shifting_backward_writer.h │ ├── position_shifting_reader.cc │ ├── position_shifting_reader.h │ ├── position_shifting_writer.cc │ ├── position_shifting_writer.h │ ├── prefix_limiting_backward_writer.cc │ ├── prefix_limiting_backward_writer.h │ ├── prefix_limiting_reader.cc │ ├── prefix_limiting_reader.h │ ├── prefix_limiting_writer.cc │ ├── prefix_limiting_writer.h │ ├── pullable_reader.cc │ ├── pullable_reader.h │ ├── pushable_backward_writer.cc │ ├── pushable_backward_writer.h │ ├── pushable_writer.cc │ ├── pushable_writer.h │ ├── read_all.cc │ ├── read_all.h │ ├── reader.cc │ ├── reader.h │ ├── reader_cfile.cc │ ├── reader_cfile.h │ ├── reader_factory.cc │ ├── reader_factory.h │ ├── reader_istream.cc │ ├── reader_istream.h │ ├── resizable_writer.cc │ ├── resizable_writer.h │ ├── restricted_chain_writer.cc │ ├── restricted_chain_writer.h │ ├── splitting_writer.cc │ ├── splitting_writer.h │ ├── std_io.cc │ ├── std_io.h │ ├── string_reader.cc │ ├── string_reader.h │ ├── string_writer.cc │ ├── string_writer.h │ ├── stringify.h │ ├── stringify_writer.h │ ├── wrapping_backward_writer.cc │ ├── wrapping_backward_writer.h │ ├── wrapping_reader.cc │ ├── wrapping_reader.h │ ├── wrapping_writer.cc │ ├── wrapping_writer.h │ ├── write.h │ ├── write_int_internal.cc │ ├── write_int_internal.h │ ├── writer.cc │ ├── writer.h │ ├── writer_cfile.cc │ ├── writer_cfile.h │ ├── writer_ostream.cc │ └── writer_ostream.h ├── bzip2 │ ├── BUILD │ ├── bzip2_error.cc │ ├── bzip2_error.h │ ├── bzip2_reader.cc │ ├── bzip2_reader.h │ ├── bzip2_writer.cc │ └── bzip2_writer.h ├── chunk_encoding │ ├── BUILD │ ├── README.md │ ├── brotli_encoder_selection.cc │ ├── brotli_encoder_selection.h │ ├── chunk.cc │ ├── chunk.h │ ├── chunk_decoder.cc │ ├── chunk_decoder.h │ ├── chunk_encoder.cc │ ├── chunk_encoder.h │ ├── compressor.cc │ ├── compressor.h │ ├── compressor_options.cc │ ├── compressor_options.h │ ├── constants.h │ ├── decompressor.cc │ ├── decompressor.h │ ├── deferred_encoder.cc │ ├── deferred_encoder.h │ ├── field_projection.h │ ├── hash.cc │ ├── hash.h │ ├── simple_decoder.cc │ ├── simple_decoder.h │ ├── simple_encoder.cc │ ├── simple_encoder.h │ ├── transpose_decoder.cc │ ├── transpose_decoder.h │ ├── transpose_encoder.cc │ ├── transpose_encoder.h │ └── transpose_internal.h ├── containers │ ├── BUILD │ ├── chunked_sorted_string_set.cc │ ├── chunked_sorted_string_set.h │ ├── linear_sorted_string_set.cc │ └── linear_sorted_string_set.h ├── csv │ ├── BUILD │ ├── csv_reader.cc │ ├── csv_reader.h │ ├── csv_record.cc │ ├── csv_record.h │ ├── csv_writer.cc │ └── csv_writer.h ├── digests │ ├── BUILD │ ├── adler32_digester.cc │ ├── adler32_digester.h │ ├── crc32_digester.cc │ ├── crc32_digester.h │ ├── crc32c_digester.h │ ├── digest_converter.h │ ├── digester_handle.cc │ ├── digester_handle.h │ ├── digesting_reader.cc │ ├── digesting_reader.h │ ├── digesting_writer.cc │ ├── digesting_writer.h │ ├── highwayhash_digester.cc │ ├── highwayhash_digester.h │ ├── md5_digester.h │ ├── openssl_digester.h │ ├── sha1_digester.h │ ├── sha256_digester.h │ ├── sha512_256_digester.h │ ├── sha512_digester.h │ └── wrapping_digester.h ├── endian │ ├── BUILD │ ├── endian_reading.h │ └── endian_writing.h ├── gcs │ ├── BUILD │ ├── gcs_internal.h │ ├── gcs_object.cc │ ├── gcs_object.h │ ├── gcs_reader.cc │ ├── gcs_reader.h │ ├── gcs_writer.cc │ └── gcs_writer.h ├── lines │ ├── BUILD │ ├── line_reading.cc │ ├── line_reading.h │ ├── line_writing.h │ ├── newline.h │ ├── text_reader.cc │ ├── text_reader.h │ ├── text_writer.cc │ └── text_writer.h ├── lz4 │ ├── BUILD │ ├── lz4_dictionary.cc │ ├── lz4_dictionary.h │ ├── lz4_reader.cc │ ├── lz4_reader.h │ ├── lz4_writer.cc │ └── lz4_writer.h ├── messages │ ├── BUILD │ ├── field_handler_map.h │ ├── field_handlers.cc │ ├── field_handlers.h │ ├── map_entry_field.h │ ├── message_wire_format.h │ ├── parse_message.cc │ ├── parse_message.h │ ├── serialize_message.cc │ ├── serialize_message.h │ ├── serialized_message_backward_writer.cc │ ├── serialized_message_backward_writer.h │ ├── serialized_message_internal.h │ ├── serialized_message_reader.cc │ ├── serialized_message_reader.h │ ├── serialized_message_reader2.cc │ ├── serialized_message_reader2.h │ ├── serialized_message_rewriter.cc │ ├── serialized_message_rewriter.h │ ├── serialized_message_writer.cc │ ├── serialized_message_writer.h │ ├── text_parse_message.cc │ ├── text_parse_message.h │ ├── text_print_message.cc │ └── text_print_message.h ├── ordered_varint │ ├── BUILD │ ├── ordered_varint_internal.h │ ├── ordered_varint_reading.cc │ ├── ordered_varint_reading.h │ ├── ordered_varint_writing.cc │ └── ordered_varint_writing.h ├── records │ ├── BUILD │ ├── README.md │ ├── block.h │ ├── chunk_reader.cc │ ├── chunk_reader.h │ ├── chunk_writer.cc │ ├── chunk_writer.h │ ├── record_position.cc │ ├── record_position.h │ ├── record_reader.cc │ ├── record_reader.h │ ├── record_writer.cc │ ├── record_writer.h │ ├── records_metadata.proto │ ├── skipped_region.cc │ ├── skipped_region.h │ └── tools │ │ ├── BUILD │ │ ├── describe_riegeli_file.cc │ │ ├── records_benchmark.cc │ │ ├── riegeli_summary.proto │ │ ├── tfrecord_recognizer.cc │ │ └── tfrecord_recognizer.h ├── snappy │ ├── BUILD │ ├── framed │ │ ├── BUILD │ │ ├── framed_snappy_reader.cc │ │ ├── framed_snappy_reader.h │ │ ├── framed_snappy_writer.cc │ │ └── framed_snappy_writer.h │ ├── hadoop │ │ ├── BUILD │ │ ├── hadoop_snappy_reader.cc │ │ ├── hadoop_snappy_reader.h │ │ ├── hadoop_snappy_writer.cc │ │ └── hadoop_snappy_writer.h │ ├── snappy_reader.cc │ ├── snappy_reader.h │ ├── snappy_streams.cc │ ├── snappy_streams.h │ ├── snappy_writer.cc │ └── snappy_writer.h ├── tensorflow │ ├── BUILD │ ├── io │ │ ├── BUILD │ │ ├── file_reader.cc │ │ ├── file_reader.h │ │ ├── file_writer.cc │ │ ├── file_writer.h │ │ └── tstring_writer.h │ ├── kernels │ │ └── riegeli_dataset_ops.cc │ └── ops │ │ └── riegeli_dataset_ops.cc ├── text │ ├── BUILD │ ├── ascii_align.h │ ├── concat.h │ ├── join.h │ ├── write_int.cc │ └── write_int.h ├── varint │ ├── BUILD │ ├── varint_internal.h │ ├── varint_reading.cc │ ├── varint_reading.h │ └── varint_writing.h ├── xz │ ├── BUILD │ ├── xz_error.cc │ ├── xz_error.h │ ├── xz_reader.cc │ ├── xz_reader.h │ ├── xz_writer.cc │ └── xz_writer.h ├── zlib │ ├── BUILD │ ├── zlib_dictionary.h │ ├── zlib_error.cc │ ├── zlib_error.h │ ├── zlib_reader.cc │ ├── zlib_reader.h │ ├── zlib_writer.cc │ └── zlib_writer.h └── zstd │ ├── BUILD │ ├── zstd_dictionary.cc │ ├── zstd_dictionary.h │ ├── zstd_reader.cc │ ├── zstd_reader.h │ ├── zstd_writer.cc │ └── zstd_writer.h └── tf_dependency ├── BUILD ├── BUILD.tpl └── tf_configure.bzl /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/.bazelrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /MODULE.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/MODULE.bazel -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/README.md -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/configure -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/record_writer_options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/doc/record_writer_options.md -------------------------------------------------------------------------------- /doc/riegeli_records_file_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/doc/riegeli_records_file_format.md -------------------------------------------------------------------------------- /python/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/BUILD -------------------------------------------------------------------------------- /python/MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include riegeli *.py 2 | -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/README.md -------------------------------------------------------------------------------- /python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/build_pip_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/build_pip_package.sh -------------------------------------------------------------------------------- /python/dummy_binary.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/riegeli/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/BUILD -------------------------------------------------------------------------------- /python/riegeli/BUILD.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/BUILD.tpl -------------------------------------------------------------------------------- /python/riegeli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/__init__.py -------------------------------------------------------------------------------- /python/riegeli/base/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/base/BUILD -------------------------------------------------------------------------------- /python/riegeli/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/riegeli/base/riegeli_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/base/riegeli_error.py -------------------------------------------------------------------------------- /python/riegeli/base/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/base/utils.cc -------------------------------------------------------------------------------- /python/riegeli/base/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/base/utils.h -------------------------------------------------------------------------------- /python/riegeli/bytes/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/bytes/BUILD -------------------------------------------------------------------------------- /python/riegeli/bytes/python_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/bytes/python_reader.cc -------------------------------------------------------------------------------- /python/riegeli/bytes/python_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/bytes/python_reader.h -------------------------------------------------------------------------------- /python/riegeli/bytes/python_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/bytes/python_writer.cc -------------------------------------------------------------------------------- /python/riegeli/bytes/python_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/bytes/python_writer.h -------------------------------------------------------------------------------- /python/riegeli/py_extension.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/py_extension.bzl -------------------------------------------------------------------------------- /python/riegeli/python_configure.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/python_configure.bzl -------------------------------------------------------------------------------- /python/riegeli/records/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/records/BUILD -------------------------------------------------------------------------------- /python/riegeli/records/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/riegeli/records/examples/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/records/examples/BUILD -------------------------------------------------------------------------------- /python/riegeli/records/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/riegeli/records/examples/write_read_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/records/examples/write_read_records.py -------------------------------------------------------------------------------- /python/riegeli/records/record_position.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/records/record_position.cc -------------------------------------------------------------------------------- /python/riegeli/records/record_position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/records/record_position.h -------------------------------------------------------------------------------- /python/riegeli/records/record_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/records/record_reader.cc -------------------------------------------------------------------------------- /python/riegeli/records/record_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/records/record_writer.cc -------------------------------------------------------------------------------- /python/riegeli/records/records_metadata.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/records/records_metadata.proto -------------------------------------------------------------------------------- /python/riegeli/records/skipped_region.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/records/skipped_region.py -------------------------------------------------------------------------------- /python/riegeli/records/tests/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/records/tests/BUILD -------------------------------------------------------------------------------- /python/riegeli/records/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/riegeli/records/tests/records_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/records/tests/records_test.proto -------------------------------------------------------------------------------- /python/riegeli/records/tests/records_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/records/tests/records_test.py -------------------------------------------------------------------------------- /python/riegeli/tensorflow/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/tensorflow/BUILD -------------------------------------------------------------------------------- /python/riegeli/tensorflow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/riegeli/tensorflow/kernel_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/riegeli/tensorflow/kernel_tests/riegeli_dataset_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/tensorflow/kernel_tests/riegeli_dataset_test.py -------------------------------------------------------------------------------- /python/riegeli/tensorflow/ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/riegeli/tensorflow/ops/riegeli_dataset_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/riegeli/tensorflow/ops/riegeli_dataset_ops.py -------------------------------------------------------------------------------- /python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/python/setup.py -------------------------------------------------------------------------------- /riegeli/.gitignore: -------------------------------------------------------------------------------- 1 | bazel-* 2 | -------------------------------------------------------------------------------- /riegeli/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/BUILD -------------------------------------------------------------------------------- /riegeli/base/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/BUILD -------------------------------------------------------------------------------- /riegeli/base/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/any.h -------------------------------------------------------------------------------- /riegeli/base/any_initializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/any_initializer.h -------------------------------------------------------------------------------- /riegeli/base/any_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/any_internal.h -------------------------------------------------------------------------------- /riegeli/base/arithmetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/arithmetic.h -------------------------------------------------------------------------------- /riegeli/base/assert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/assert.cc -------------------------------------------------------------------------------- /riegeli/base/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/assert.h -------------------------------------------------------------------------------- /riegeli/base/background_cleaning.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/background_cleaning.cc -------------------------------------------------------------------------------- /riegeli/base/background_cleaning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/background_cleaning.h -------------------------------------------------------------------------------- /riegeli/base/binary_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/binary_search.h -------------------------------------------------------------------------------- /riegeli/base/buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/buffer.cc -------------------------------------------------------------------------------- /riegeli/base/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/buffer.h -------------------------------------------------------------------------------- /riegeli/base/buffering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/buffering.h -------------------------------------------------------------------------------- /riegeli/base/byte_fill.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/byte_fill.cc -------------------------------------------------------------------------------- /riegeli/base/byte_fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/byte_fill.h -------------------------------------------------------------------------------- /riegeli/base/bytes_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/bytes_ref.h -------------------------------------------------------------------------------- /riegeli/base/c_string_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/c_string_ref.h -------------------------------------------------------------------------------- /riegeli/base/chain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/chain.cc -------------------------------------------------------------------------------- /riegeli/base/chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/chain.h -------------------------------------------------------------------------------- /riegeli/base/chain_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/chain_base.h -------------------------------------------------------------------------------- /riegeli/base/chain_details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/chain_details.h -------------------------------------------------------------------------------- /riegeli/base/closing_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/closing_ptr.h -------------------------------------------------------------------------------- /riegeli/base/compact_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/compact_string.cc -------------------------------------------------------------------------------- /riegeli/base/compact_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/compact_string.h -------------------------------------------------------------------------------- /riegeli/base/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/compare.h -------------------------------------------------------------------------------- /riegeli/base/constexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/constexpr.h -------------------------------------------------------------------------------- /riegeli/base/cord_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/cord_utils.cc -------------------------------------------------------------------------------- /riegeli/base/cord_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/cord_utils.h -------------------------------------------------------------------------------- /riegeli/base/debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/debug.cc -------------------------------------------------------------------------------- /riegeli/base/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/debug.h -------------------------------------------------------------------------------- /riegeli/base/dependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/dependency.h -------------------------------------------------------------------------------- /riegeli/base/dependency_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/dependency_base.h -------------------------------------------------------------------------------- /riegeli/base/dependency_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/dependency_manager.h -------------------------------------------------------------------------------- /riegeli/base/errno_mapping.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/errno_mapping.cc -------------------------------------------------------------------------------- /riegeli/base/errno_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/errno_mapping.h -------------------------------------------------------------------------------- /riegeli/base/estimated_allocated_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/estimated_allocated_size.h -------------------------------------------------------------------------------- /riegeli/base/external_data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/external_data.cc -------------------------------------------------------------------------------- /riegeli/base/external_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/external_data.h -------------------------------------------------------------------------------- /riegeli/base/external_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/external_ref.h -------------------------------------------------------------------------------- /riegeli/base/external_ref_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/external_ref_base.h -------------------------------------------------------------------------------- /riegeli/base/external_ref_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/external_ref_support.h -------------------------------------------------------------------------------- /riegeli/base/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/global.h -------------------------------------------------------------------------------- /riegeli/base/initializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/initializer.h -------------------------------------------------------------------------------- /riegeli/base/initializer_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/initializer_internal.h -------------------------------------------------------------------------------- /riegeli/base/intrusive_shared_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/intrusive_shared_ptr.h -------------------------------------------------------------------------------- /riegeli/base/invoker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/invoker.h -------------------------------------------------------------------------------- /riegeli/base/iterable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/iterable.h -------------------------------------------------------------------------------- /riegeli/base/maker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/maker.h -------------------------------------------------------------------------------- /riegeli/base/memory_estimator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/memory_estimator.cc -------------------------------------------------------------------------------- /riegeli/base/memory_estimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/memory_estimator.h -------------------------------------------------------------------------------- /riegeli/base/moving_dependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/moving_dependency.h -------------------------------------------------------------------------------- /riegeli/base/new_aligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/new_aligned.h -------------------------------------------------------------------------------- /riegeli/base/null_safe_memcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/null_safe_memcpy.h -------------------------------------------------------------------------------- /riegeli/base/object.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/object.cc -------------------------------------------------------------------------------- /riegeli/base/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/object.h -------------------------------------------------------------------------------- /riegeli/base/optional_compact_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/optional_compact_string.h -------------------------------------------------------------------------------- /riegeli/base/options_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/options_parser.cc -------------------------------------------------------------------------------- /riegeli/base/options_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/options_parser.h -------------------------------------------------------------------------------- /riegeli/base/ownership.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/ownership.h -------------------------------------------------------------------------------- /riegeli/base/parallelism.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/parallelism.cc -------------------------------------------------------------------------------- /riegeli/base/parallelism.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/parallelism.h -------------------------------------------------------------------------------- /riegeli/base/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/port.h -------------------------------------------------------------------------------- /riegeli/base/recycling_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/recycling_pool.h -------------------------------------------------------------------------------- /riegeli/base/ref_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/ref_count.h -------------------------------------------------------------------------------- /riegeli/base/reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/reset.h -------------------------------------------------------------------------------- /riegeli/base/shared_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/shared_buffer.cc -------------------------------------------------------------------------------- /riegeli/base/shared_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/shared_buffer.h -------------------------------------------------------------------------------- /riegeli/base/shared_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/shared_ptr.h -------------------------------------------------------------------------------- /riegeli/base/sized_shared_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/sized_shared_buffer.cc -------------------------------------------------------------------------------- /riegeli/base/sized_shared_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/sized_shared_buffer.h -------------------------------------------------------------------------------- /riegeli/base/stable_dependency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/stable_dependency.h -------------------------------------------------------------------------------- /riegeli/base/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/status.cc -------------------------------------------------------------------------------- /riegeli/base/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/status.h -------------------------------------------------------------------------------- /riegeli/base/stream_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/stream_utils.cc -------------------------------------------------------------------------------- /riegeli/base/stream_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/stream_utils.h -------------------------------------------------------------------------------- /riegeli/base/string_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/string_ref.h -------------------------------------------------------------------------------- /riegeli/base/string_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/string_utils.cc -------------------------------------------------------------------------------- /riegeli/base/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/string_utils.h -------------------------------------------------------------------------------- /riegeli/base/temporary_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/temporary_storage.h -------------------------------------------------------------------------------- /riegeli/base/type_erased_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/type_erased_ref.h -------------------------------------------------------------------------------- /riegeli/base/type_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/type_id.h -------------------------------------------------------------------------------- /riegeli/base/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/type_traits.h -------------------------------------------------------------------------------- /riegeli/base/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/types.h -------------------------------------------------------------------------------- /riegeli/base/unicode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/unicode.cc -------------------------------------------------------------------------------- /riegeli/base/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/base/unicode.h -------------------------------------------------------------------------------- /riegeli/brotli/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/brotli/BUILD -------------------------------------------------------------------------------- /riegeli/brotli/brotli_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/brotli/brotli_allocator.cc -------------------------------------------------------------------------------- /riegeli/brotli/brotli_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/brotli/brotli_allocator.h -------------------------------------------------------------------------------- /riegeli/brotli/brotli_dictionary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/brotli/brotli_dictionary.cc -------------------------------------------------------------------------------- /riegeli/brotli/brotli_dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/brotli/brotli_dictionary.h -------------------------------------------------------------------------------- /riegeli/brotli/brotli_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/brotli/brotli_reader.cc -------------------------------------------------------------------------------- /riegeli/brotli/brotli_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/brotli/brotli_reader.h -------------------------------------------------------------------------------- /riegeli/brotli/brotli_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/brotli/brotli_writer.cc -------------------------------------------------------------------------------- /riegeli/brotli/brotli_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/brotli/brotli_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/BUILD -------------------------------------------------------------------------------- /riegeli/bytes/array_backward_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/array_backward_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/array_backward_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/array_backward_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/array_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/array_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/array_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/array_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/backward_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/backward_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/backward_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/backward_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/buffer_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/buffer_options.cc -------------------------------------------------------------------------------- /riegeli/bytes/buffer_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/buffer_options.h -------------------------------------------------------------------------------- /riegeli/bytes/buffered_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/buffered_reader.cc -------------------------------------------------------------------------------- /riegeli/bytes/buffered_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/buffered_reader.h -------------------------------------------------------------------------------- /riegeli/bytes/buffered_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/buffered_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/buffered_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/buffered_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/cfile_handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/cfile_handle.cc -------------------------------------------------------------------------------- /riegeli/bytes/cfile_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/cfile_handle.h -------------------------------------------------------------------------------- /riegeli/bytes/cfile_internal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/cfile_internal.cc -------------------------------------------------------------------------------- /riegeli/bytes/cfile_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/cfile_internal.h -------------------------------------------------------------------------------- /riegeli/bytes/cfile_internal_for_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/cfile_internal_for_cc.h -------------------------------------------------------------------------------- /riegeli/bytes/cfile_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/cfile_reader.cc -------------------------------------------------------------------------------- /riegeli/bytes/cfile_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/cfile_reader.h -------------------------------------------------------------------------------- /riegeli/bytes/cfile_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/cfile_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/cfile_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/cfile_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/chain_backward_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/chain_backward_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/chain_backward_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/chain_backward_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/chain_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/chain_reader.cc -------------------------------------------------------------------------------- /riegeli/bytes/chain_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/chain_reader.h -------------------------------------------------------------------------------- /riegeli/bytes/chain_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/chain_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/chain_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/chain_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/compact_string_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/compact_string_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/copy_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/copy_all.cc -------------------------------------------------------------------------------- /riegeli/bytes/copy_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/copy_all.h -------------------------------------------------------------------------------- /riegeli/bytes/cord_backward_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/cord_backward_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/cord_backward_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/cord_backward_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/cord_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/cord_reader.cc -------------------------------------------------------------------------------- /riegeli/bytes/cord_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/cord_reader.h -------------------------------------------------------------------------------- /riegeli/bytes/cord_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/cord_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/cord_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/cord_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/fd_handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/fd_handle.cc -------------------------------------------------------------------------------- /riegeli/bytes/fd_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/fd_handle.h -------------------------------------------------------------------------------- /riegeli/bytes/fd_internal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/fd_internal.cc -------------------------------------------------------------------------------- /riegeli/bytes/fd_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/fd_internal.h -------------------------------------------------------------------------------- /riegeli/bytes/fd_internal_for_cc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/fd_internal_for_cc.h -------------------------------------------------------------------------------- /riegeli/bytes/fd_mmap_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/fd_mmap_reader.cc -------------------------------------------------------------------------------- /riegeli/bytes/fd_mmap_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/fd_mmap_reader.h -------------------------------------------------------------------------------- /riegeli/bytes/fd_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/fd_reader.cc -------------------------------------------------------------------------------- /riegeli/bytes/fd_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/fd_reader.h -------------------------------------------------------------------------------- /riegeli/bytes/fd_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/fd_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/fd_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/fd_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/file_mode_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/file_mode_string.cc -------------------------------------------------------------------------------- /riegeli/bytes/file_mode_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/file_mode_string.h -------------------------------------------------------------------------------- /riegeli/bytes/iostream_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/iostream_internal.h -------------------------------------------------------------------------------- /riegeli/bytes/istream_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/istream_reader.cc -------------------------------------------------------------------------------- /riegeli/bytes/istream_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/istream_reader.h -------------------------------------------------------------------------------- /riegeli/bytes/joining_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/joining_reader.cc -------------------------------------------------------------------------------- /riegeli/bytes/joining_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/joining_reader.h -------------------------------------------------------------------------------- /riegeli/bytes/limiting_backward_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/limiting_backward_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/limiting_backward_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/limiting_backward_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/limiting_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/limiting_reader.cc -------------------------------------------------------------------------------- /riegeli/bytes/limiting_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/limiting_reader.h -------------------------------------------------------------------------------- /riegeli/bytes/limiting_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/limiting_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/limiting_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/limiting_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/null_backward_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/null_backward_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/null_backward_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/null_backward_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/null_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/null_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/null_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/null_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/ostream_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/ostream_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/ostream_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/ostream_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/path_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/path_ref.h -------------------------------------------------------------------------------- /riegeli/bytes/position_shifting_backward_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/position_shifting_backward_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/position_shifting_backward_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/position_shifting_backward_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/position_shifting_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/position_shifting_reader.cc -------------------------------------------------------------------------------- /riegeli/bytes/position_shifting_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/position_shifting_reader.h -------------------------------------------------------------------------------- /riegeli/bytes/position_shifting_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/position_shifting_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/position_shifting_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/position_shifting_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/prefix_limiting_backward_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/prefix_limiting_backward_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/prefix_limiting_backward_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/prefix_limiting_backward_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/prefix_limiting_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/prefix_limiting_reader.cc -------------------------------------------------------------------------------- /riegeli/bytes/prefix_limiting_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/prefix_limiting_reader.h -------------------------------------------------------------------------------- /riegeli/bytes/prefix_limiting_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/prefix_limiting_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/prefix_limiting_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/prefix_limiting_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/pullable_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/pullable_reader.cc -------------------------------------------------------------------------------- /riegeli/bytes/pullable_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/pullable_reader.h -------------------------------------------------------------------------------- /riegeli/bytes/pushable_backward_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/pushable_backward_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/pushable_backward_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/pushable_backward_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/pushable_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/pushable_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/pushable_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/pushable_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/read_all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/read_all.cc -------------------------------------------------------------------------------- /riegeli/bytes/read_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/read_all.h -------------------------------------------------------------------------------- /riegeli/bytes/reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/reader.cc -------------------------------------------------------------------------------- /riegeli/bytes/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/reader.h -------------------------------------------------------------------------------- /riegeli/bytes/reader_cfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/reader_cfile.cc -------------------------------------------------------------------------------- /riegeli/bytes/reader_cfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/reader_cfile.h -------------------------------------------------------------------------------- /riegeli/bytes/reader_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/reader_factory.cc -------------------------------------------------------------------------------- /riegeli/bytes/reader_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/reader_factory.h -------------------------------------------------------------------------------- /riegeli/bytes/reader_istream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/reader_istream.cc -------------------------------------------------------------------------------- /riegeli/bytes/reader_istream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/reader_istream.h -------------------------------------------------------------------------------- /riegeli/bytes/resizable_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/resizable_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/resizable_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/resizable_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/restricted_chain_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/restricted_chain_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/restricted_chain_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/restricted_chain_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/splitting_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/splitting_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/splitting_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/splitting_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/std_io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/std_io.cc -------------------------------------------------------------------------------- /riegeli/bytes/std_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/std_io.h -------------------------------------------------------------------------------- /riegeli/bytes/string_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/string_reader.cc -------------------------------------------------------------------------------- /riegeli/bytes/string_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/string_reader.h -------------------------------------------------------------------------------- /riegeli/bytes/string_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/string_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/string_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/string_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/stringify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/stringify.h -------------------------------------------------------------------------------- /riegeli/bytes/stringify_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/stringify_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/wrapping_backward_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/wrapping_backward_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/wrapping_backward_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/wrapping_backward_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/wrapping_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/wrapping_reader.cc -------------------------------------------------------------------------------- /riegeli/bytes/wrapping_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/wrapping_reader.h -------------------------------------------------------------------------------- /riegeli/bytes/wrapping_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/wrapping_writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/wrapping_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/wrapping_writer.h -------------------------------------------------------------------------------- /riegeli/bytes/write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/write.h -------------------------------------------------------------------------------- /riegeli/bytes/write_int_internal.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/write_int_internal.cc -------------------------------------------------------------------------------- /riegeli/bytes/write_int_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/write_int_internal.h -------------------------------------------------------------------------------- /riegeli/bytes/writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/writer.cc -------------------------------------------------------------------------------- /riegeli/bytes/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/writer.h -------------------------------------------------------------------------------- /riegeli/bytes/writer_cfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/writer_cfile.cc -------------------------------------------------------------------------------- /riegeli/bytes/writer_cfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/writer_cfile.h -------------------------------------------------------------------------------- /riegeli/bytes/writer_ostream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/writer_ostream.cc -------------------------------------------------------------------------------- /riegeli/bytes/writer_ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bytes/writer_ostream.h -------------------------------------------------------------------------------- /riegeli/bzip2/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bzip2/BUILD -------------------------------------------------------------------------------- /riegeli/bzip2/bzip2_error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bzip2/bzip2_error.cc -------------------------------------------------------------------------------- /riegeli/bzip2/bzip2_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bzip2/bzip2_error.h -------------------------------------------------------------------------------- /riegeli/bzip2/bzip2_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bzip2/bzip2_reader.cc -------------------------------------------------------------------------------- /riegeli/bzip2/bzip2_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bzip2/bzip2_reader.h -------------------------------------------------------------------------------- /riegeli/bzip2/bzip2_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bzip2/bzip2_writer.cc -------------------------------------------------------------------------------- /riegeli/bzip2/bzip2_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/bzip2/bzip2_writer.h -------------------------------------------------------------------------------- /riegeli/chunk_encoding/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/BUILD -------------------------------------------------------------------------------- /riegeli/chunk_encoding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/README.md -------------------------------------------------------------------------------- /riegeli/chunk_encoding/brotli_encoder_selection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/brotli_encoder_selection.cc -------------------------------------------------------------------------------- /riegeli/chunk_encoding/brotli_encoder_selection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/brotli_encoder_selection.h -------------------------------------------------------------------------------- /riegeli/chunk_encoding/chunk.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/chunk.cc -------------------------------------------------------------------------------- /riegeli/chunk_encoding/chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/chunk.h -------------------------------------------------------------------------------- /riegeli/chunk_encoding/chunk_decoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/chunk_decoder.cc -------------------------------------------------------------------------------- /riegeli/chunk_encoding/chunk_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/chunk_decoder.h -------------------------------------------------------------------------------- /riegeli/chunk_encoding/chunk_encoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/chunk_encoder.cc -------------------------------------------------------------------------------- /riegeli/chunk_encoding/chunk_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/chunk_encoder.h -------------------------------------------------------------------------------- /riegeli/chunk_encoding/compressor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/compressor.cc -------------------------------------------------------------------------------- /riegeli/chunk_encoding/compressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/compressor.h -------------------------------------------------------------------------------- /riegeli/chunk_encoding/compressor_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/compressor_options.cc -------------------------------------------------------------------------------- /riegeli/chunk_encoding/compressor_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/compressor_options.h -------------------------------------------------------------------------------- /riegeli/chunk_encoding/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/constants.h -------------------------------------------------------------------------------- /riegeli/chunk_encoding/decompressor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/decompressor.cc -------------------------------------------------------------------------------- /riegeli/chunk_encoding/decompressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/decompressor.h -------------------------------------------------------------------------------- /riegeli/chunk_encoding/deferred_encoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/deferred_encoder.cc -------------------------------------------------------------------------------- /riegeli/chunk_encoding/deferred_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/deferred_encoder.h -------------------------------------------------------------------------------- /riegeli/chunk_encoding/field_projection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/field_projection.h -------------------------------------------------------------------------------- /riegeli/chunk_encoding/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/hash.cc -------------------------------------------------------------------------------- /riegeli/chunk_encoding/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/hash.h -------------------------------------------------------------------------------- /riegeli/chunk_encoding/simple_decoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/simple_decoder.cc -------------------------------------------------------------------------------- /riegeli/chunk_encoding/simple_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/simple_decoder.h -------------------------------------------------------------------------------- /riegeli/chunk_encoding/simple_encoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/simple_encoder.cc -------------------------------------------------------------------------------- /riegeli/chunk_encoding/simple_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/simple_encoder.h -------------------------------------------------------------------------------- /riegeli/chunk_encoding/transpose_decoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/transpose_decoder.cc -------------------------------------------------------------------------------- /riegeli/chunk_encoding/transpose_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/transpose_decoder.h -------------------------------------------------------------------------------- /riegeli/chunk_encoding/transpose_encoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/transpose_encoder.cc -------------------------------------------------------------------------------- /riegeli/chunk_encoding/transpose_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/transpose_encoder.h -------------------------------------------------------------------------------- /riegeli/chunk_encoding/transpose_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/chunk_encoding/transpose_internal.h -------------------------------------------------------------------------------- /riegeli/containers/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/containers/BUILD -------------------------------------------------------------------------------- /riegeli/containers/chunked_sorted_string_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/containers/chunked_sorted_string_set.cc -------------------------------------------------------------------------------- /riegeli/containers/chunked_sorted_string_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/containers/chunked_sorted_string_set.h -------------------------------------------------------------------------------- /riegeli/containers/linear_sorted_string_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/containers/linear_sorted_string_set.cc -------------------------------------------------------------------------------- /riegeli/containers/linear_sorted_string_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/containers/linear_sorted_string_set.h -------------------------------------------------------------------------------- /riegeli/csv/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/csv/BUILD -------------------------------------------------------------------------------- /riegeli/csv/csv_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/csv/csv_reader.cc -------------------------------------------------------------------------------- /riegeli/csv/csv_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/csv/csv_reader.h -------------------------------------------------------------------------------- /riegeli/csv/csv_record.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/csv/csv_record.cc -------------------------------------------------------------------------------- /riegeli/csv/csv_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/csv/csv_record.h -------------------------------------------------------------------------------- /riegeli/csv/csv_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/csv/csv_writer.cc -------------------------------------------------------------------------------- /riegeli/csv/csv_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/csv/csv_writer.h -------------------------------------------------------------------------------- /riegeli/digests/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/BUILD -------------------------------------------------------------------------------- /riegeli/digests/adler32_digester.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/adler32_digester.cc -------------------------------------------------------------------------------- /riegeli/digests/adler32_digester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/adler32_digester.h -------------------------------------------------------------------------------- /riegeli/digests/crc32_digester.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/crc32_digester.cc -------------------------------------------------------------------------------- /riegeli/digests/crc32_digester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/crc32_digester.h -------------------------------------------------------------------------------- /riegeli/digests/crc32c_digester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/crc32c_digester.h -------------------------------------------------------------------------------- /riegeli/digests/digest_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/digest_converter.h -------------------------------------------------------------------------------- /riegeli/digests/digester_handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/digester_handle.cc -------------------------------------------------------------------------------- /riegeli/digests/digester_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/digester_handle.h -------------------------------------------------------------------------------- /riegeli/digests/digesting_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/digesting_reader.cc -------------------------------------------------------------------------------- /riegeli/digests/digesting_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/digesting_reader.h -------------------------------------------------------------------------------- /riegeli/digests/digesting_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/digesting_writer.cc -------------------------------------------------------------------------------- /riegeli/digests/digesting_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/digesting_writer.h -------------------------------------------------------------------------------- /riegeli/digests/highwayhash_digester.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/highwayhash_digester.cc -------------------------------------------------------------------------------- /riegeli/digests/highwayhash_digester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/highwayhash_digester.h -------------------------------------------------------------------------------- /riegeli/digests/md5_digester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/md5_digester.h -------------------------------------------------------------------------------- /riegeli/digests/openssl_digester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/openssl_digester.h -------------------------------------------------------------------------------- /riegeli/digests/sha1_digester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/sha1_digester.h -------------------------------------------------------------------------------- /riegeli/digests/sha256_digester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/sha256_digester.h -------------------------------------------------------------------------------- /riegeli/digests/sha512_256_digester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/sha512_256_digester.h -------------------------------------------------------------------------------- /riegeli/digests/sha512_digester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/sha512_digester.h -------------------------------------------------------------------------------- /riegeli/digests/wrapping_digester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/digests/wrapping_digester.h -------------------------------------------------------------------------------- /riegeli/endian/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/endian/BUILD -------------------------------------------------------------------------------- /riegeli/endian/endian_reading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/endian/endian_reading.h -------------------------------------------------------------------------------- /riegeli/endian/endian_writing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/endian/endian_writing.h -------------------------------------------------------------------------------- /riegeli/gcs/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/gcs/BUILD -------------------------------------------------------------------------------- /riegeli/gcs/gcs_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/gcs/gcs_internal.h -------------------------------------------------------------------------------- /riegeli/gcs/gcs_object.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/gcs/gcs_object.cc -------------------------------------------------------------------------------- /riegeli/gcs/gcs_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/gcs/gcs_object.h -------------------------------------------------------------------------------- /riegeli/gcs/gcs_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/gcs/gcs_reader.cc -------------------------------------------------------------------------------- /riegeli/gcs/gcs_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/gcs/gcs_reader.h -------------------------------------------------------------------------------- /riegeli/gcs/gcs_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/gcs/gcs_writer.cc -------------------------------------------------------------------------------- /riegeli/gcs/gcs_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/gcs/gcs_writer.h -------------------------------------------------------------------------------- /riegeli/lines/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/lines/BUILD -------------------------------------------------------------------------------- /riegeli/lines/line_reading.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/lines/line_reading.cc -------------------------------------------------------------------------------- /riegeli/lines/line_reading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/lines/line_reading.h -------------------------------------------------------------------------------- /riegeli/lines/line_writing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/lines/line_writing.h -------------------------------------------------------------------------------- /riegeli/lines/newline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/lines/newline.h -------------------------------------------------------------------------------- /riegeli/lines/text_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/lines/text_reader.cc -------------------------------------------------------------------------------- /riegeli/lines/text_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/lines/text_reader.h -------------------------------------------------------------------------------- /riegeli/lines/text_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/lines/text_writer.cc -------------------------------------------------------------------------------- /riegeli/lines/text_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/lines/text_writer.h -------------------------------------------------------------------------------- /riegeli/lz4/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/lz4/BUILD -------------------------------------------------------------------------------- /riegeli/lz4/lz4_dictionary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/lz4/lz4_dictionary.cc -------------------------------------------------------------------------------- /riegeli/lz4/lz4_dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/lz4/lz4_dictionary.h -------------------------------------------------------------------------------- /riegeli/lz4/lz4_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/lz4/lz4_reader.cc -------------------------------------------------------------------------------- /riegeli/lz4/lz4_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/lz4/lz4_reader.h -------------------------------------------------------------------------------- /riegeli/lz4/lz4_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/lz4/lz4_writer.cc -------------------------------------------------------------------------------- /riegeli/lz4/lz4_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/lz4/lz4_writer.h -------------------------------------------------------------------------------- /riegeli/messages/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/BUILD -------------------------------------------------------------------------------- /riegeli/messages/field_handler_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/field_handler_map.h -------------------------------------------------------------------------------- /riegeli/messages/field_handlers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/field_handlers.cc -------------------------------------------------------------------------------- /riegeli/messages/field_handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/field_handlers.h -------------------------------------------------------------------------------- /riegeli/messages/map_entry_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/map_entry_field.h -------------------------------------------------------------------------------- /riegeli/messages/message_wire_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/message_wire_format.h -------------------------------------------------------------------------------- /riegeli/messages/parse_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/parse_message.cc -------------------------------------------------------------------------------- /riegeli/messages/parse_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/parse_message.h -------------------------------------------------------------------------------- /riegeli/messages/serialize_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/serialize_message.cc -------------------------------------------------------------------------------- /riegeli/messages/serialize_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/serialize_message.h -------------------------------------------------------------------------------- /riegeli/messages/serialized_message_backward_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/serialized_message_backward_writer.cc -------------------------------------------------------------------------------- /riegeli/messages/serialized_message_backward_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/serialized_message_backward_writer.h -------------------------------------------------------------------------------- /riegeli/messages/serialized_message_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/serialized_message_internal.h -------------------------------------------------------------------------------- /riegeli/messages/serialized_message_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/serialized_message_reader.cc -------------------------------------------------------------------------------- /riegeli/messages/serialized_message_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/serialized_message_reader.h -------------------------------------------------------------------------------- /riegeli/messages/serialized_message_reader2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/serialized_message_reader2.cc -------------------------------------------------------------------------------- /riegeli/messages/serialized_message_reader2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/serialized_message_reader2.h -------------------------------------------------------------------------------- /riegeli/messages/serialized_message_rewriter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/serialized_message_rewriter.cc -------------------------------------------------------------------------------- /riegeli/messages/serialized_message_rewriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/serialized_message_rewriter.h -------------------------------------------------------------------------------- /riegeli/messages/serialized_message_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/serialized_message_writer.cc -------------------------------------------------------------------------------- /riegeli/messages/serialized_message_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/serialized_message_writer.h -------------------------------------------------------------------------------- /riegeli/messages/text_parse_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/text_parse_message.cc -------------------------------------------------------------------------------- /riegeli/messages/text_parse_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/text_parse_message.h -------------------------------------------------------------------------------- /riegeli/messages/text_print_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/text_print_message.cc -------------------------------------------------------------------------------- /riegeli/messages/text_print_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/messages/text_print_message.h -------------------------------------------------------------------------------- /riegeli/ordered_varint/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/ordered_varint/BUILD -------------------------------------------------------------------------------- /riegeli/ordered_varint/ordered_varint_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/ordered_varint/ordered_varint_internal.h -------------------------------------------------------------------------------- /riegeli/ordered_varint/ordered_varint_reading.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/ordered_varint/ordered_varint_reading.cc -------------------------------------------------------------------------------- /riegeli/ordered_varint/ordered_varint_reading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/ordered_varint/ordered_varint_reading.h -------------------------------------------------------------------------------- /riegeli/ordered_varint/ordered_varint_writing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/ordered_varint/ordered_varint_writing.cc -------------------------------------------------------------------------------- /riegeli/ordered_varint/ordered_varint_writing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/ordered_varint/ordered_varint_writing.h -------------------------------------------------------------------------------- /riegeli/records/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/BUILD -------------------------------------------------------------------------------- /riegeli/records/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/README.md -------------------------------------------------------------------------------- /riegeli/records/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/block.h -------------------------------------------------------------------------------- /riegeli/records/chunk_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/chunk_reader.cc -------------------------------------------------------------------------------- /riegeli/records/chunk_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/chunk_reader.h -------------------------------------------------------------------------------- /riegeli/records/chunk_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/chunk_writer.cc -------------------------------------------------------------------------------- /riegeli/records/chunk_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/chunk_writer.h -------------------------------------------------------------------------------- /riegeli/records/record_position.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/record_position.cc -------------------------------------------------------------------------------- /riegeli/records/record_position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/record_position.h -------------------------------------------------------------------------------- /riegeli/records/record_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/record_reader.cc -------------------------------------------------------------------------------- /riegeli/records/record_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/record_reader.h -------------------------------------------------------------------------------- /riegeli/records/record_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/record_writer.cc -------------------------------------------------------------------------------- /riegeli/records/record_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/record_writer.h -------------------------------------------------------------------------------- /riegeli/records/records_metadata.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/records_metadata.proto -------------------------------------------------------------------------------- /riegeli/records/skipped_region.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/skipped_region.cc -------------------------------------------------------------------------------- /riegeli/records/skipped_region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/skipped_region.h -------------------------------------------------------------------------------- /riegeli/records/tools/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/tools/BUILD -------------------------------------------------------------------------------- /riegeli/records/tools/describe_riegeli_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/tools/describe_riegeli_file.cc -------------------------------------------------------------------------------- /riegeli/records/tools/records_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/tools/records_benchmark.cc -------------------------------------------------------------------------------- /riegeli/records/tools/riegeli_summary.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/tools/riegeli_summary.proto -------------------------------------------------------------------------------- /riegeli/records/tools/tfrecord_recognizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/tools/tfrecord_recognizer.cc -------------------------------------------------------------------------------- /riegeli/records/tools/tfrecord_recognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/records/tools/tfrecord_recognizer.h -------------------------------------------------------------------------------- /riegeli/snappy/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/snappy/BUILD -------------------------------------------------------------------------------- /riegeli/snappy/framed/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/snappy/framed/BUILD -------------------------------------------------------------------------------- /riegeli/snappy/framed/framed_snappy_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/snappy/framed/framed_snappy_reader.cc -------------------------------------------------------------------------------- /riegeli/snappy/framed/framed_snappy_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/snappy/framed/framed_snappy_reader.h -------------------------------------------------------------------------------- /riegeli/snappy/framed/framed_snappy_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/snappy/framed/framed_snappy_writer.cc -------------------------------------------------------------------------------- /riegeli/snappy/framed/framed_snappy_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/snappy/framed/framed_snappy_writer.h -------------------------------------------------------------------------------- /riegeli/snappy/hadoop/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/snappy/hadoop/BUILD -------------------------------------------------------------------------------- /riegeli/snappy/hadoop/hadoop_snappy_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/snappy/hadoop/hadoop_snappy_reader.cc -------------------------------------------------------------------------------- /riegeli/snappy/hadoop/hadoop_snappy_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/snappy/hadoop/hadoop_snappy_reader.h -------------------------------------------------------------------------------- /riegeli/snappy/hadoop/hadoop_snappy_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/snappy/hadoop/hadoop_snappy_writer.cc -------------------------------------------------------------------------------- /riegeli/snappy/hadoop/hadoop_snappy_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/snappy/hadoop/hadoop_snappy_writer.h -------------------------------------------------------------------------------- /riegeli/snappy/snappy_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/snappy/snappy_reader.cc -------------------------------------------------------------------------------- /riegeli/snappy/snappy_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/snappy/snappy_reader.h -------------------------------------------------------------------------------- /riegeli/snappy/snappy_streams.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/snappy/snappy_streams.cc -------------------------------------------------------------------------------- /riegeli/snappy/snappy_streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/snappy/snappy_streams.h -------------------------------------------------------------------------------- /riegeli/snappy/snappy_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/snappy/snappy_writer.cc -------------------------------------------------------------------------------- /riegeli/snappy/snappy_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/snappy/snappy_writer.h -------------------------------------------------------------------------------- /riegeli/tensorflow/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/tensorflow/BUILD -------------------------------------------------------------------------------- /riegeli/tensorflow/io/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/tensorflow/io/BUILD -------------------------------------------------------------------------------- /riegeli/tensorflow/io/file_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/tensorflow/io/file_reader.cc -------------------------------------------------------------------------------- /riegeli/tensorflow/io/file_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/tensorflow/io/file_reader.h -------------------------------------------------------------------------------- /riegeli/tensorflow/io/file_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/tensorflow/io/file_writer.cc -------------------------------------------------------------------------------- /riegeli/tensorflow/io/file_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/tensorflow/io/file_writer.h -------------------------------------------------------------------------------- /riegeli/tensorflow/io/tstring_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/tensorflow/io/tstring_writer.h -------------------------------------------------------------------------------- /riegeli/tensorflow/kernels/riegeli_dataset_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/tensorflow/kernels/riegeli_dataset_ops.cc -------------------------------------------------------------------------------- /riegeli/tensorflow/ops/riegeli_dataset_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/tensorflow/ops/riegeli_dataset_ops.cc -------------------------------------------------------------------------------- /riegeli/text/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/text/BUILD -------------------------------------------------------------------------------- /riegeli/text/ascii_align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/text/ascii_align.h -------------------------------------------------------------------------------- /riegeli/text/concat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/text/concat.h -------------------------------------------------------------------------------- /riegeli/text/join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/text/join.h -------------------------------------------------------------------------------- /riegeli/text/write_int.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/text/write_int.cc -------------------------------------------------------------------------------- /riegeli/text/write_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/text/write_int.h -------------------------------------------------------------------------------- /riegeli/varint/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/varint/BUILD -------------------------------------------------------------------------------- /riegeli/varint/varint_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/varint/varint_internal.h -------------------------------------------------------------------------------- /riegeli/varint/varint_reading.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/varint/varint_reading.cc -------------------------------------------------------------------------------- /riegeli/varint/varint_reading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/varint/varint_reading.h -------------------------------------------------------------------------------- /riegeli/varint/varint_writing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/varint/varint_writing.h -------------------------------------------------------------------------------- /riegeli/xz/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/xz/BUILD -------------------------------------------------------------------------------- /riegeli/xz/xz_error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/xz/xz_error.cc -------------------------------------------------------------------------------- /riegeli/xz/xz_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/xz/xz_error.h -------------------------------------------------------------------------------- /riegeli/xz/xz_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/xz/xz_reader.cc -------------------------------------------------------------------------------- /riegeli/xz/xz_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/xz/xz_reader.h -------------------------------------------------------------------------------- /riegeli/xz/xz_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/xz/xz_writer.cc -------------------------------------------------------------------------------- /riegeli/xz/xz_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/xz/xz_writer.h -------------------------------------------------------------------------------- /riegeli/zlib/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/zlib/BUILD -------------------------------------------------------------------------------- /riegeli/zlib/zlib_dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/zlib/zlib_dictionary.h -------------------------------------------------------------------------------- /riegeli/zlib/zlib_error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/zlib/zlib_error.cc -------------------------------------------------------------------------------- /riegeli/zlib/zlib_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/zlib/zlib_error.h -------------------------------------------------------------------------------- /riegeli/zlib/zlib_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/zlib/zlib_reader.cc -------------------------------------------------------------------------------- /riegeli/zlib/zlib_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/zlib/zlib_reader.h -------------------------------------------------------------------------------- /riegeli/zlib/zlib_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/zlib/zlib_writer.cc -------------------------------------------------------------------------------- /riegeli/zlib/zlib_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/zlib/zlib_writer.h -------------------------------------------------------------------------------- /riegeli/zstd/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/zstd/BUILD -------------------------------------------------------------------------------- /riegeli/zstd/zstd_dictionary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/zstd/zstd_dictionary.cc -------------------------------------------------------------------------------- /riegeli/zstd/zstd_dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/zstd/zstd_dictionary.h -------------------------------------------------------------------------------- /riegeli/zstd/zstd_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/zstd/zstd_reader.cc -------------------------------------------------------------------------------- /riegeli/zstd/zstd_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/zstd/zstd_reader.h -------------------------------------------------------------------------------- /riegeli/zstd/zstd_writer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/zstd/zstd_writer.cc -------------------------------------------------------------------------------- /riegeli/zstd/zstd_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/riegeli/zstd/zstd_writer.h -------------------------------------------------------------------------------- /tf_dependency/BUILD: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tf_dependency/BUILD.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/tf_dependency/BUILD.tpl -------------------------------------------------------------------------------- /tf_dependency/tf_configure.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/riegeli/HEAD/tf_dependency/tf_configure.bzl --------------------------------------------------------------------------------