Home
last modified time | relevance | path

Searched refs:block_contents (Results 1 – 1 of 1) sorted by relevance

/external/tensorflow/tensorflow/core/lib/io/
Dtable_builder.cc174 StringPiece block_contents; in WriteBlock() local
179 block_contents = raw; in WriteBlock()
186 block_contents = *compressed; in WriteBlock()
190 block_contents = raw; in WriteBlock()
196 WriteRawBlock(block_contents, type, handle); in WriteBlock()
201 void TableBuilder::WriteRawBlock(const StringPiece& block_contents, in WriteRawBlock() argument
205 handle->set_size(block_contents.size()); in WriteRawBlock()
206 r->status = r->file->Append(block_contents); in WriteRawBlock()
210 uint32 crc = crc32c::Value(block_contents.data(), block_contents.size()); in WriteRawBlock()
215 r->offset += block_contents.size() + kBlockTrailerSize; in WriteRawBlock()