/external/tensorflow/tensorflow/core/kernels/ |
D | fixed_length_record_reader_op.cc | 36 int64 record_bytes, int64 footer_bytes, in FixedLengthRecordReader() argument 41 record_bytes_(record_bytes), in FixedLengthRecordReader() 43 hop_bytes_(hop_bytes == 0 ? record_bytes : hop_bytes), in FixedLengthRecordReader() 166 int64 header_bytes = -1, record_bytes = -1, footer_bytes = -1, in FixedLengthRecordReaderOp() local 169 OP_REQUIRES_OK(context, context->GetAttr("record_bytes", &record_bytes)); in FixedLengthRecordReaderOp() 175 OP_REQUIRES(context, record_bytes >= 0, in FixedLengthRecordReaderOp() 177 record_bytes)); in FixedLengthRecordReaderOp() 187 SetReaderFactory([this, header_bytes, record_bytes, footer_bytes, hop_bytes, in FixedLengthRecordReaderOp() 189 return new FixedLengthRecordReader(name(), header_bytes, record_bytes, in FixedLengthRecordReaderOp()
|
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/ |
D | FixedLengthRecordReader.pbtxt | 16 name: "record_bytes" 57 name: "record_bytes" 105 name: "record_bytes"
|
D | FixedLengthRecordReaderV2.pbtxt | 15 name: "record_bytes" 55 name: "record_bytes" 102 name: "record_bytes"
|
D | FixedLengthRecordDataset.pbtxt | 12 name: "record_bytes"
|
D | FixedLengthRecordDatasetV2.pbtxt | 12 name: "record_bytes"
|
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/ |
D | FixedLengthRecordReader.pbtxt | 16 name: "record_bytes" 57 name: "record_bytes" 105 name: "record_bytes"
|
D | FixedLengthRecordReaderV2.pbtxt | 15 name: "record_bytes" 55 name: "record_bytes" 102 name: "record_bytes"
|
D | FixedLengthRecordDataset.pbtxt | 12 name: "record_bytes"
|
D | FixedLengthRecordDatasetV2.pbtxt | 12 name: "record_bytes"
|
/external/rust/crates/csv-core/src/ |
D | writer.rs | 218 record_bytes: u64, field 233 if self.state.record_bytes == 0 && self.state.in_field { in finish() 241 self.state.record_bytes += o as u64; in finish() 251 self.state.record_bytes = 0; in finish() 295 self.state.record_bytes += o as u64; in field() 306 self.state.record_bytes += o as u64; in field() 330 self.state.record_bytes += o as u64; in delimiter() 338 self.state.record_bytes += o as u64; in delimiter() 355 if self.state.record_bytes == 0 { in terminator() 363 self.state.record_bytes += o as u64; in terminator() [all …]
|
/external/tensorflow/tensorflow/core/kernels/data/ |
D | fixed_length_record_dataset_op.cc | 53 int64 header_bytes, int64 record_bytes, int64 footer_bytes, in Dataset() argument 59 record_bytes_(record_bytes), in Dataset() 108 Node* record_bytes = nullptr; in AsGraphDefInternal() local 114 TF_RETURN_IF_ERROR(b->AddScalar(record_bytes_, &record_bytes)); in AsGraphDefInternal() 120 {filenames, header_bytes, record_bytes, footer_bytes, in AsGraphDefInternal() 483 int64 record_bytes = -1; in MakeDataset() local 485 ParseScalarArgument<int64>(ctx, kRecordBytes, &record_bytes)); in MakeDataset() 486 OP_REQUIRES(ctx, record_bytes > 0, in MakeDataset() 513 new Dataset(ctx, std::move(filenames), header_bytes, record_bytes, in MakeDataset()
|
D | fixed_length_record_dataset_op_test.cc | 32 int64 header_bytes, int64 record_bytes, in FixedLengthRecordDatasetParams() argument 40 record_bytes_(record_bytes),
|
/external/tensorflow/tensorflow/python/data/ops/ |
D | readers.py | 409 record_bytes, argument 431 record_bytes, dtype=dtypes.int64, name="record_bytes") 459 record_bytes, argument 490 self._record_bytes = record_bytes 497 return _FixedLengthRecordDataset(filename, record_bytes, header_bytes, 517 record_bytes, argument 523 wrapped = FixedLengthRecordDatasetV2(filenames, record_bytes, header_bytes,
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_FixedLengthRecordReader.pbtxt | 17 name: "record_bytes" 32 record_bytes.
|
D | api_def_FixedLengthRecordReaderV2.pbtxt | 19 name: "record_bytes" 34 record_bytes.
|
D | api_def_FixedLengthRecordDataset.pbtxt | 19 name: "record_bytes"
|
/external/tensorflow/tensorflow/python/ops/ |
D | io_ops.py | 394 record_bytes, argument 411 record_bytes=record_bytes,
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.-fixed-length-record-reader.pbtxt | 16 …argspec: "args=[\'self\', \'record_bytes\', \'header_bytes\', \'footer_bytes\', \'hop_bytes\', \'n…
|
D | tensorflow.data.-fixed-length-record-dataset.pbtxt | 26 …argspec: "args=[\'self\', \'filenames\', \'record_bytes\', \'header_bytes\', \'footer_bytes\', \'b…
|
/external/tensorflow/tensorflow/python/tpu/ |
D | datasets_test.py | 144 record_bytes = len(MakeRecord(10, 200)) 156 return readers.FixedLengthRecordDataset(filename, record_bytes)
|
/external/tensorflow/tensorflow/python/lib/io/ |
D | tf_record_test.py | 454 record_bytes = f.read() 461 f.write(record_bytes[:-1]) 472 f.write(record_bytes[-1:])
|
/external/tensorflow/tensorflow/core/kernels/data/experimental/ |
D | snapshot_util.cc | 762 tstring record_bytes; in ReadTensorsV0() local 763 TF_RETURN_IF_ERROR(ReadRecord(&record_bytes)); in ReadTensorsV0() 764 record.ParseFromArray(record_bytes.data(), record_bytes.size()); in ReadTensorsV0()
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.data.-fixed-length-record-dataset.pbtxt | 13 …argspec: "args=[\'self\', \'filenames\', \'record_bytes\', \'header_bytes\', \'footer_bytes\', \'b…
|
D | tensorflow.raw_ops.pbtxt | 1649 …argspec: "args=[\'filenames\', \'header_bytes\', \'record_bytes\', \'footer_bytes\', \'buffer_size… 1653 …argspec: "args=[\'filenames\', \'header_bytes\', \'record_bytes\', \'footer_bytes\', \'buffer_size… 1657 …argspec: "args=[\'record_bytes\', \'header_bytes\', \'footer_bytes\', \'hop_bytes\', \'container\'… 1661 …argspec: "args=[\'record_bytes\', \'header_bytes\', \'footer_bytes\', \'hop_bytes\', \'container\'…
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | reader_ops_test.py | 530 record_bytes=self._record_bytes, 556 record_bytes=self._record_bytes,
|