/external/perf_data_converter/src/quipper/ |
D | buffer_writer_test.cc | 19 EXPECT_EQ(0, writer.Tell()); in TEST() 24 EXPECT_EQ(100, writer.Tell()); in TEST() 26 EXPECT_EQ(900, writer.Tell()); in TEST() 28 EXPECT_EQ(500, writer.Tell()); in TEST() 33 EXPECT_EQ(1200, writer.Tell()); in TEST() 45 EXPECT_EQ(5, writer.Tell()); in TEST() 55 EXPECT_EQ(output.size(), writer.Tell()); in TEST() 70 EXPECT_EQ(output.size(), writer.Tell()); in TEST() 84 EXPECT_TRUE(writer.WriteData(kInputData.data() + writer.Tell(), 10)); in TEST() 85 EXPECT_EQ(10, writer.Tell()); in TEST() [all …]
|
D | file_reader_test.cc | 27 EXPECT_EQ(0, reader.Tell()); in TEST() 31 EXPECT_EQ(100, reader.Tell()); in TEST() 33 EXPECT_EQ(900, reader.Tell()); in TEST() 35 EXPECT_EQ(500, reader.Tell()); in TEST() 40 EXPECT_EQ(1200, reader.Tell()); in TEST() 57 EXPECT_EQ(5, reader.Tell()); in TEST() 71 EXPECT_EQ(output.size(), reader.Tell()); in TEST() 88 EXPECT_EQ(output.size(), reader.Tell()); in TEST() 104 EXPECT_TRUE(reader.ReadData(10, output.data() + reader.Tell())); in TEST() 105 EXPECT_EQ(10, reader.Tell()); in TEST() [all …]
|
D | buffer_reader_test.cc | 23 EXPECT_EQ(0, reader.Tell()); in TEST() 27 EXPECT_EQ(100, reader.Tell()); in TEST() 29 EXPECT_EQ(900, reader.Tell()); in TEST() 31 EXPECT_EQ(500, reader.Tell()); in TEST() 36 EXPECT_EQ(1200, reader.Tell()); in TEST() 51 EXPECT_EQ(5, reader.Tell()); in TEST() 61 EXPECT_EQ(output.size(), reader.Tell()); in TEST() 74 EXPECT_EQ(output.size(), reader.Tell()); in TEST() 87 EXPECT_TRUE(reader.ReadData(10, output.data() + reader.Tell())); in TEST() 88 EXPECT_EQ(10, reader.Tell()); in TEST() [all …]
|
D | perf_reader.cc | 518 CHECK_EQ(0U, data->Tell()); in ReadHeader() 541 CHECK_EQ(data->Tell(), sizeof(piped_header_)); in ReadHeader() 559 CHECK_EQ(data->Tell(), sizeof(header_) - features_size); in ReadHeader() 629 size_t saved_offset = data->Tell(); in ReadAttr() 661 data->SeekSet(data->Tell() + attr->size - attr_readable_size); in ReadEventAttr() 986 size_t offset = data->Tell(); in ReadRepeatedStringMetadata() 995 size_read += data->Tell() - offset; in ReadRepeatedStringMetadata() 1150 auto begin_offset = data->Tell(); in ReadPMUMappingsMetadata() 1167 for (u32 i = 0; i < num_mappings || data->Tell() - begin_offset < size; ++i) { in ReadPMUMappingsMetadata() 1177 if (data->Tell() - begin_offset != size) { in ReadPMUMappingsMetadata() [all …]
|
D | data_writer.cc | 19 << " bytes, " << size_ - Tell() << " bytes remaining."; in WriteDataValue()
|
D | file_utils.cc | 22 << filename << ", only read " << reader.Tell(); in FileToBuffer()
|
D | file_reader.h | 24 size_t Tell() const override { return ftell(infile_); } in Tell() function
|
D | buffer_reader.h | 23 size_t Tell() const override { return offset_; } in Tell() function
|
D | buffer_writer.h | 23 size_t Tell() const override { return offset_; } in Tell() function
|
D | data_writer.h | 25 virtual size_t Tell() const = 0;
|
D | buffer_writer.cc | 37 return Tell() + data_size <= size(); in CanWriteSize()
|
/external/tensorflow/tensorflow/core/lib/io/ |
D | random_inputstream_test.cc | 37 EXPECT_EQ(3, in.Tell()); in TEST() 40 EXPECT_EQ(3, in.Tell()); in TEST() 43 EXPECT_EQ(8, in.Tell()); in TEST() 46 EXPECT_EQ(8, in.Tell()); in TEST() 49 EXPECT_EQ(10, in.Tell()); in TEST() 52 EXPECT_EQ(10, in.Tell()); in TEST() 65 EXPECT_EQ(3, in.Tell()); in TEST() 68 EXPECT_EQ(3, in.Tell()); in TEST() 71 EXPECT_EQ(7, in.Tell()); in TEST() 73 EXPECT_EQ(7, in.Tell()); in TEST() [all …]
|
D | buffered_inputstream_test.cc | 168 EXPECT_EQ(0, in.Tell()); in TEST() 171 EXPECT_EQ(3, in.Tell()); in TEST() 174 EXPECT_EQ(3, in.Tell()); in TEST() 177 EXPECT_EQ(7, in.Tell()); in TEST() 180 EXPECT_EQ(7, in.Tell()); in TEST() 183 EXPECT_EQ(10, in.Tell()); in TEST() 186 EXPECT_EQ(10, in.Tell()); in TEST() 189 EXPECT_EQ(10, in.Tell()); in TEST() 205 EXPECT_EQ(0, in.Tell()); in TEST() 207 EXPECT_EQ(3, in.Tell()); in TEST() [all …]
|
D | inputbuffer_test.cc | 161 EXPECT_EQ(0, in.Tell()); in TEST() 164 EXPECT_EQ(3, in.Tell()); in TEST() 167 EXPECT_EQ(3, in.Tell()); in TEST() 170 EXPECT_EQ(7, in.Tell()); in TEST() 173 EXPECT_EQ(7, in.Tell()); in TEST() 176 EXPECT_EQ(10, in.Tell()); in TEST() 179 EXPECT_EQ(10, in.Tell()); in TEST() 182 EXPECT_EQ(10, in.Tell()); in TEST() 192 EXPECT_EQ(0, in.Tell()); in TEST() 196 EXPECT_EQ(3, in.Tell()); in TEST() [all …]
|
D | buffered_inputstream.cc | 149 int64 BufferedInputStream::Tell() const { in Tell() function in tensorflow::io::BufferedInputStream 150 return input_stream_->Tell() - (limit_ - pos_); in Tell() 160 const int64 bufpos = Tell(); in Seek()
|
D | zlib_buffers_test.cc | 238 EXPECT_EQ(in.Tell(), first_half.size()); in TestTell() 246 EXPECT_EQ(in.Tell(), data.size()); in TestTell() 282 EXPECT_EQ(in.Tell(), data_half_size); in TestSkipNBytes() 289 EXPECT_EQ(in.Tell(), data.size()); in TestSkipNBytes()
|
D | inputstream_interface.h | 48 virtual int64 Tell() const = 0;
|
D | random_inputstream.h | 39 int64 Tell() const override;
|
/external/python/cpython2/Doc/library/ |
D | macostools.rst | 60 Tell the finder that some bits of finder-information such as creator or type for 99 Tell the finder to launch *file*. What launching means depends on the file: 106 Tell the finder to print a file. The behaviour is identical to selecting the 112 Tell the finder to copy a file or folder *file* to folder *destdir*. The 118 Tell the finder to move a file or folder *file* to folder *destdir*. The 124 Tell the finder to put the Macintosh to sleep, if your machine supports it. 129 Tell the finder to perform an orderly restart of the machine. 134 Tell the finder to perform an orderly shutdown of the machine.
|
/external/pdfium/third_party/lcms/src/ |
D | cmstypes.c | 178 currentPosition = io->Tell(io); in ReadPositionTable() 240 DirectoryPos = io ->Tell(io); in WritePositionTable() 252 Before = io ->Tell(io); in WritePositionTable() 259 ElementSizes[i] = io ->Tell(io) - Before; in WritePositionTable() 263 CurrentPos = io ->Tell(io); in WritePositionTable() 2484 BaseOffset = io ->Tell(io) - sizeof(_cmsTagBase); in Type_LUTA2B_Read() 2690 BaseOffset = io ->Tell(io) - sizeof(_cmsTagBase); in Type_LUTA2B_Write() 2713 DirectoryPos = io ->Tell(io); in Type_LUTA2B_Write() 2724 offsetA = io ->Tell(io) - BaseOffset; in Type_LUTA2B_Write() 2729 offsetC = io ->Tell(io) - BaseOffset; in Type_LUTA2B_Write() [all …]
|
/external/swiftshader/third_party/LLVM/projects/sample/autoconf/ |
D | configure.ac | 14 dnl Tell autoconf that this is an LLVM project being configured 18 dnl Tell autoconf that the auxiliary files are actually located in
|
/external/curl/docs/cmdline-opts/ |
D | ftp-skip-pasv-ip.d | 7 Tell curl to not use the IP address the server suggests in its response
|
D | ftp-pret.d | 6 Tell curl to send a PRET command before PASV (and EPSV). Certain FTP servers,
|
D | path-as-is.d | 5 Tell curl to not handle sequences of /../ or /./ in the given URL
|
D | dns-ipv4-addr.d | 9 Tell curl to bind to <ip-address> when making IPv4 DNS requests, so that
|