HomeSort by relevance Sort by last modified time
    Searched refs:Read (Results 1 - 25 of 2133) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /build/kati/testcase/
file_func.sh 33 \$(info Read not found: \$(if \$(file <notfound),FAIL,PASS))
34 \$(info Read: \$(file < testfile))
35 \$(info Read back: \$(file <testwrite))
38 \$(info Read not found: PASS)
39 \$(info Read: PASS)
40 \$(info Read back: PASS)
  /external/sfntly/cpp/src/sfntly/data/
font_input_stream.cc 67 int32_t FontInputStream::Read() {
71 int32_t b = stream_->Read();
78 int32_t FontInputStream::Read(ByteVector* b, int32_t offset, int32_t length) {
86 int32_t bytes_read = stream_->Read(b, offset, bytes_to_read);
91 int32_t FontInputStream::Read(ByteVector* b) {
92 return Read(b, 0, b->size());
96 return Read();
100 return 0xffff & (Read() << 8 | Read());
104 return ((Read() << 8 | Read()) << 16) >> 16
    [all...]
font_input_stream.h 57 // @param length the maximum length of bytes to read
69 virtual int32_t Read();
70 virtual int32_t Read(ByteVector* buffer);
71 virtual int32_t Read(ByteVector* buffer, int32_t offset, int32_t length);
91 int64_t length_; // Bound on length of data to read.
  /device/linaro/bootloader/edk2/OvmfPkg/XenBusDxe/
TestAndClearBit.c 27 UINT16 Word, Read;
39 for (Word = *(UINT16 *) Address; Word & Mask; Word = Read) {
40 Read = InterlockedCompareExchange16 (Address, Word, Word & ~Mask);
41 if (Read == Word) {
  /system/tpm/tpm_manager/server/
local_data_store.h 24 // LocalDataStore is an interface class that provides access to read and write
34 virtual bool Read(LocalData* data) = 0;
  /external/compiler-rt/test/asan/TestCases/Darwin/
segv_read_write.c 2 // RUN: not %run %t 2>&1 | FileCheck %s --check-prefix=READ
9 __attribute__((noinline)) void Read(int *ptr) { sink = *ptr; }
19 Read((int *)p);
23 // READ: AddressSanitizer: SEGV on unknown address
24 // READ: The signal is caused by a READ memory access.
  /external/compiler-rt/test/asan/TestCases/Linux/
segv_read_write.c 2 // RUN: not %run %t 2>&1 | FileCheck %s --check-prefix=READ
9 __attribute__((noinline)) void Read(int *ptr) { sink = *ptr; }
19 Read((int *)p);
23 // READ: AddressSanitizer: SEGV on unknown address
24 // READ: The signal is caused by a READ memory access.
  /external/libxml2/python/tests/
reader3.py 29 ret = reader.Read()
34 ret = reader.Read()
41 ret = reader.Read()
48 ret = reader.Read()
55 ret = reader.Read()
67 ret = reader.Read()
72 ret = reader.Read()
79 ret = reader.Read()
86 ret = reader.Read()
93 ret = reader.Read()
    [all...]
reader7.py 40 ret = reader.Read()
43 ret = reader.Read()
76 ret = reader.Read()
79 ret = reader.Read()
reader8.py 20 ret = reader.Read()
21 ret = reader.Read()
walker.py 41 ret = reader.Read()
44 ret = reader.Read()
81 ret = reader.Read()
84 ret = reader.Read()
119 ret = reader.Read()
122 ret = reader.Read()
  /external/bsdiff/
extents_file_unittest.cc 26 MOCK_METHOD3(Read, bool(void*, size_t, size_t*));
92 // We use a failing Read() call to trigger the actual seek call to the
95 EXPECT_CALL(*mock_file_, Read(_, _, _)).WillOnce(Return(false));
99 EXPECT_FALSE(file.Read(nullptr, 1, &bytes_read));
116 EXPECT_CALL(*mock_file_, Read(buf, 5, _)).WillOnce(SucceedIO());
118 EXPECT_CALL(*mock_file_, Read(buf + 5, 7, _)).WillOnce(SucceedIO());
120 EXPECT_CALL(*mock_file_, Read(buf + 12, 3, _)).WillOnce(SucceedIO());
122 // FileExtents::Read() should read everything in one shot, by reading all
123 // the little chunks. Note that it doesn't attempt to read past the end of th
    [all...]
  /external/google-breakpad/src/common/linux/
elf_symbols_to_module.cc 93 // Read the symbol at cursor_, and set symbol_ appropriately.
100 .Read(4, false, &symbol_.name_offset)
101 .Read(4, false, &symbol_.value)
102 .Read(4, false, &symbol_.size)
103 .Read(1, false, &symbol_.info)
104 .Read(1, false, &other)
105 .Read(2, false, &symbol_.shndx);
109 .Read(4, false, &symbol_.name_offset)
110 .Read(1, false, &symbol_.info)
111 .Read(1, false, &other
    [all...]
  /external/sfntly/cpp/src/sfntly/port/
file_input_stream.h 36 virtual int32_t Read();
37 virtual int32_t Read(ByteVector* b);
38 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length);
input_stream.h 34 virtual int32_t Read() = 0;
35 virtual int32_t Read(ByteVector* b) = 0;
36 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length) = 0;
memory_input_stream.h 36 virtual int32_t Read();
37 virtual int32_t Read(ByteVector* b);
38 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length);
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
resample_input_audio_file.cc 19 bool ResampleInputAudioFile::Read(size_t samples,
26 if (!InputAudioFile::Read(samples_to_read, temp_destination.get()))
37 bool ResampleInputAudioFile::Read(size_t samples, int16_t* destination) {
39 return Read(samples, output_rate_hz_, destination);
resample_input_audio_file.h 38 bool Read(size_t samples, int output_rate_hz, int16_t* destination);
39 bool Read(size_t samples, int16_t* destination) override;
  /external/compiler-rt/test/asan/TestCases/Windows/
crash_read_write.cc 2 // RUN: not %run %t 2>&1 | FileCheck %s --check-prefix=READ
9 __attribute__((noinline)) void Read(int *ptr) { sink = *ptr; }
22 Read((int *)p);
26 // READ: AddressSanitizer: access-violation on unknown address
27 // READ: The signal is caused by a READ memory access.
  /external/lzma/CPP/7zip/Archive/7z/
7zSpecStream.cpp 7 STDMETHODIMP CSequentialInStreamSizeCount2::Read(void *data, UInt32 size, UInt32 *processedSize)
10 HRESULT result = _stream->Read(data, size, &realProcessedSize);
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Include/Drivers/
PL310L2Cache.h 65 #define PL310_LATENCIES(Write,Read,Setup) (((Write) << 8) | ((Read) << 4) | (Setup))
66 #define PL310_TAG_LATENCIES(Write,Read,Setup) PL310_LATENCIES(Write,Read,Setup)
67 #define PL310_DATA_LATENCIES(Write,Read,Setup) PL310_LATENCIES(Write,Read,Setup)
  /external/google-breakpad/src/common/
byte_cursor_unittest.cc 132 EXPECT_TRUE(cursor.Read(stars, 3));
164 .Read(1, true, &a)
165 .Read(1, true, &b)
166 .Read(1, true, &c)
167 .Read(1, true, &d));
173 EXPECT_FALSE(cursor.Read(1, true, &e));
184 .Read(2, true, &a)
185 .Read(2, true, &b)
186 .Read(2, true, &c)
187 .Read(2, true, &d
    [all...]
  /external/sfntly/cpp/src/test/
memory_io_test.cc 45 // Read one byte
46 EXPECT_EQ(is.Read(), '0'); // position 1
47 EXPECT_EQ(is.Read(), '1'); // position 2
48 EXPECT_EQ(is.Read(), '2'); // position 3
50 // Read byte vector
53 EXPECT_EQ(is.Read(&b), 7); // position 10
57 EXPECT_EQ(is.Read(&b, 7, 10), 10); // position 20
64 EXPECT_EQ(is.Read(&b), 10); // position 60
69 EXPECT_EQ(is.Read(&b), 10); // position 50
  /external/ImageMagick/PerlMagick/demo/
button.pl 9 $q->Read('gradient:#00f685-#0083f8');
  /external/tensorflow/tensorflow/core/lib/io/
recordio_test.cc 74 Status Read(uint64 offset, size_t n, StringPiece* result,
76 EXPECT_FALSE(returned_partial_) << "must not Read() after eof/error";
81 return errors::DataLoss("read error");
117 ASSERT_TRUE(!reading_) << "Write() after starting to read";
123 string Read() {
175 TEST_F(RecordioTest, Empty) { ASSERT_EQ("EOF", Read()); }
182 ASSERT_EQ("foo", Read());
183 ASSERT_EQ("bar", Read());
184 ASSERT_EQ("", Read());
185 ASSERT_EQ("xxxx", Read());
    [all...]

Completed in 2663 milliseconds

1 2 3 4 5 6 7 8 91011>>