/external/opencore/baselibs/gen_data_structures/src/ |
D | bitstreamparser.cpp | 135 uint8 read = *bytepos; in ReadUInt8() local 138 return read; in ReadUInt8() 144 uint16 read; in ReadUInt16() local 145 ((uint8*)&read)[0] = ReadUInt8(); in ReadUInt16() 146 ((uint8*)&read)[1] = ReadUInt8(); in ReadUInt16() 147 big_endian_to_host((char*)&read, sizeof(read)); in ReadUInt16() 148 return read; in ReadUInt16() 154 uint32 read; in ReadUInt32() local 155 ((uint8*)&read)[0] = ReadUInt8(); in ReadUInt32() 156 ((uint8*)&read)[1] = ReadUInt8(); in ReadUInt32() [all …]
|
/external/apache-http/src/org/apache/http/impl/io/ |
D | ContentLengthInputStream.java | 121 while (read(buffer) >= 0) { in close() 138 public int read() throws IOException { in read() method in ContentLengthInputStream 147 return this.in.read(); in read() 162 public int read (byte[] b, int off, int len) throws java.io.IOException { in read() method in ContentLengthInputStream 174 int count = this.in.read(b, off, len); in read() 187 public int read(byte[] b) throws IOException { in read() method in ContentLengthInputStream 188 return read(b, 0, b.length); in read() 210 int l = read(buffer, 0, (int)Math.min(BUFFER_SIZE, remaining)); in skip()
|
D | ChunkedInputStream.java | 117 public int read() throws IOException { in read() method in ChunkedInputStream 131 return in.read(); in read() 145 public int read (byte[] b, int off, int len) throws IOException { in read() method in ChunkedInputStream 161 int count = in.read(b, off, len); in read() 174 public int read (byte[] b) throws IOException { in read() method in ChunkedInputStream 175 return read(b, 0, b.length); in read() 211 int cr = in.read(); in getChunkSize() 212 int lf = in.read(); in getChunkSize() 289 while (inStream.read(buffer) >= 0) { in exhaustInputStream()
|
D | IdentityInputStream.java | 74 public int read() throws IOException { in read() method in IdentityInputStream 78 return this.in.read(); in read() 82 public int read(final byte[] b, int off, int len) throws IOException { in read() method in IdentityInputStream 86 return this.in.read(b, off, len); in read()
|
/external/freetype/src/base/ |
D | ftstream.c | 43 stream->read = 0; in FT_Stream_OpenMemory() 65 if ( stream->read ) in FT_Stream_Seek() 67 if ( stream->read( stream, pos, 0, 0 ) ) in FT_Stream_Seek() 133 if ( stream->read ) in FT_Stream_ReadAt() 134 read_bytes = stream->read( stream, pos, buffer, count ); in FT_Stream_ReadAt() 170 if ( stream->read ) in FT_Stream_TryRead() 171 read_bytes = stream->read( stream, stream->pos, buffer, count ); in FT_Stream_TryRead() 214 if ( stream->read ) in FT_Stream_ReleaseFrame() 240 if ( stream->read ) in FT_Stream_EnterFrame() 255 read_bytes = stream->read( stream, stream->pos, in FT_Stream_EnterFrame() [all …]
|
/external/qemu/distrib/libpng-1.2.19/ |
D | pngrio.c | 96 png_size_t read, remaining, err; in png_default_read_data() local 101 read = MIN(NEAR_BUF_SIZE, remaining); in png_default_read_data() 103 if ( !ReadFile((HANDLE)(io_ptr), buf, read, &err, NULL) ) in png_default_read_data() 106 err = fread(buf, (png_size_t)1, read, io_ptr); in png_default_read_data() 108 png_memcpy(data, buf, read); /* copy far buffer to near buffer */ in png_default_read_data() 109 if(err != read) in png_default_read_data() 113 data += read; in png_default_read_data() 114 remaining -= read; in png_default_read_data()
|
/external/libpng/ |
D | pngrio.c | 102 png_size_t read, remaining, err; in png_default_read_data() local 107 read = MIN(NEAR_BUF_SIZE, remaining); in png_default_read_data() 109 if ( !ReadFile((HANDLE)(io_ptr), buf, read, &err, NULL) ) in png_default_read_data() 112 err = fread(buf, (png_size_t)1, read, io_ptr); in png_default_read_data() 114 png_memcpy(data, buf, read); /* copy far buffer to near buffer */ in png_default_read_data() 115 if (err != read) in png_default_read_data() 119 data += read; in png_default_read_data() 120 remaining -= read; in png_default_read_data()
|
/external/e2fsprogs/tests/m_no_opt/ |
D | expect.1 | 2 ./test.img: Attempt to read block from filesystem resulted in short read while opening filesystem 5 ../e2fsck/e2fsck: Attempt to read block from filesystem resulted in short read while trying to open… 9 ../misc/dumpe2fs: Attempt to read block from filesystem resulted in short read while trying to open…
|
/external/e2fsprogs/tests/m_mkfs_overhead/ |
D | expect.1 | 2 ./test.img: Attempt to read block from filesystem resulted in short read while opening filesystem 5 ../e2fsck/e2fsck: Attempt to read block from filesystem resulted in short read while trying to open… 9 ../misc/dumpe2fs: Attempt to read block from filesystem resulted in short read while trying to open…
|
/external/skia/include/core/ |
D | SkBuffer.h | 68 void read(void* buffer, size_t size) { if (size) this->readNoSizeCheck(buffer, size); } in read() function 72 void* readPtr() { void* ptr; read(&ptr, sizeof(ptr)); return ptr; } in readPtr() 73 SkScalar readScalar() { SkScalar x; read(&x, 4); return x; } in readScalar() 74 uint32_t readU32() { uint32_t x; read(&x, 4); return x; } in readU32() 75 int32_t readS32() { int32_t x; read(&x, 4); return x; } in readS32() 76 uint16_t readU16() { uint16_t x; read(&x, 2); return x; } in readU16() 77 int16_t readS16() { int16_t x; read(&x, 2); return x; } in readS16() 78 uint8_t readU8() { uint8_t x; read(&x, 1); return x; } in readU8()
|
D | SkStream.h | 42 virtual size_t read(void* buffer, size_t size) = 0; 46 size_t getLength() { return this->read(NULL, 0); } in getLength() 130 virtual size_t read(void* buffer, size_t size); 154 virtual size_t read(void* buffer, size_t size); 181 virtual size_t read(void* buffer, size_t size); 219 virtual size_t read(void* buffer, size_t size); 274 bool read(void* buffer, size_t offset, size_t size);
|
/external/apache-http/src/org/apache/http/impl/conn/ |
D | LoggingSessionInputBuffer.java | 71 public int read(byte[] b, int off, int len) throws IOException { in read() method in LoggingSessionInputBuffer 72 int l = this.in.read(b, off, len); in read() 79 public int read() throws IOException { in read() method in LoggingSessionInputBuffer 80 int l = this.in.read(); in read() 87 public int read(byte[] b) throws IOException { in read() method in LoggingSessionInputBuffer 88 int l = this.in.read(b); in read()
|
/external/emma/core/java12/com/vladium/emma/rt/ |
D | ClassPathProcessorST.java | 324 for (int read; in readFile() 325 … (totalread < length) && (read = in.read (m_readbuf, totalread, length - totalread)) >= 0; in readFile() 326 totalread += read); in readFile() 348 for (int read; in readZipEntry() 349 … (totalread < length) && (read = in.read (m_readbuf, totalread, length - totalread)) >= 0; in readZipEntry() 350 totalread += read); in readZipEntry() 358 for (int read; (read = in.read (m_readbuf)) >= 0; m_baos.write (m_readbuf, 0, read)); in readZipEntry()
|
/external/apache-http/src/org/apache/http/conn/ |
D | EofSensorInputStream.java | 135 public int read() throws IOException { in read() method in EofSensorInputStream 140 l = wrappedStream.read(); in read() 154 public int read(byte[] b, int off, int len) throws IOException { in read() method in EofSensorInputStream 159 l = wrappedStream.read(b, off, len); in read() 173 public int read(byte[] b) throws IOException { in read() method in EofSensorInputStream 178 l = wrappedStream.read(b); in read()
|
/external/skia/src/core/ |
D | SkStream.cpp | 43 return size ? this->read(NULL, size) : 0; in skip() 48 size_t len = this->read(&value, 1); in readS8() 55 size_t len = this->read(&value, 2); in readS16() 62 size_t len = this->read(&value, 4); in readS32() 69 size_t len = this->read(&value, sizeof(SkScalar)); in readScalar() 76 if (!this->read(&byte, 1)) { in readPackedUInt() 84 if (!this->read(&word, 2)) { in readPackedUInt() 92 if (!this->read(&quad, 4)) { in readPackedUInt() 177 stream->read(scratch, n); in writeStream() 239 size_t SkFILEStream::read(void* buffer, size_t size) in read() function in SkFILEStream [all …]
|
/external/freetype/src/pshinter/ |
D | pshglob.c | 142 FT_Short* read, in psh_blues_set_zones_0() argument 165 reference = read[1]; in psh_blues_set_zones_0() 166 delta = read[0] - reference; in psh_blues_set_zones_0() 174 reference = read[0]; in psh_blues_set_zones_0() 175 delta = read[1] - reference; in psh_blues_set_zones_0() 222 read += 2; in psh_blues_set_zones_0() 634 FT_Short* read; in psh_globals_new() local 648 read = priv->snap_widths; in psh_globals_new() 651 write->org = *read; in psh_globals_new() 653 read++; in psh_globals_new() [all …]
|
/external/clearsilver/util/ |
D | skiplist.c | 56 pthread_mutex_t read; /* readers count/cond wait mutex */ member 72 mLock(&list->read); in readLock() 75 cWait(&list->resume, &list->read); in readLock() 79 mUnlock(&list->read); in readLock() 89 mLock(&list->read); in readUnlock() 104 mUnlock(&list->read); in readUnlock() 114 mLock(&list->read); in readBlock() 119 cWait(&list->flush, &list->read); /* wait until reader locks released */ in readBlock() 128 mUnlock(&list->read); in readUnblock() 312 mLock(&list->read); in skipRelease() [all …]
|
/external/qemu/ |
D | block-vpc.c | 103 if (read(fd, &header, HEADER_SIZE) != HEADER_SIZE) in vpc_open() 110 if (read(fd, &header, HEADER_SIZE) != HEADER_SIZE) in vpc_open() 125 if (read(s->fd, s->pagetable, s->pagetable_entries * 4) != in vpc_open() 178 read(s->fd, s->pageentry_u8, 512); in seek_to_sector() 188 read(s->fd, &bitmap_entry, 1); in seek_to_sector() 208 ret = read(s->fd, buf, 512); in vpc_read()
|
/external/e2fsprogs/lib/ext2fs/ |
D | ext2_err.et.in | 75 "Attempt to write to filesystem opened read-only" 78 "Can't read group descriptors" 96 "Can't read an inode bitmap" 102 "Can't read an block bitmap" 108 "Can't read an inode table" 111 "Can't read next inode" 120 "Attempt to read block from filesystem resulted in short read" 216 "Filesystem has unsupported read-only feature(s)" 219 "IO Channel failed to seek on read or write" 243 "File open read-only"
|
/external/apache-http/src/org/apache/http/io/ |
D | SessionInputBuffer.java | 49 int read(byte[] b, int off, int len) throws IOException; in read() method 51 int read(byte[] b) throws IOException; in read() method 53 int read() throws IOException; in read() method
|
/external/qemu/hw/ |
D | goldfish_audio.c | 200 if (read(s->input_fd, wav_header, sizeof(wav_header)) != sizeof(wav_header)) { in start_read() 222 result = read(s->input_fd, buffer, count); in start_read() 418 int read; in goldfish_audio_in_callback() local 421 read = AUD_read(s->voicein, buffer, avail2); in goldfish_audio_in_callback() 422 if (read == 0) in goldfish_audio_in_callback() 426 D("%s: AUD_read(%d) returned %d", __FUNCTION__, avail2, read); in goldfish_audio_in_callback() 428 s->read_buffer_available += read; in goldfish_audio_in_callback() 430 avail -= read; in goldfish_audio_in_callback() 431 pos += read; in goldfish_audio_in_callback()
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
D | util.h | 35 return strm.read(reinterpret_cast<char *>(t), sizeof(T)); in ReadType() 42 strm.read(reinterpret_cast<char *>(&ns), sizeof(ns)); in ReadType() 45 strm.read(&c, 1); in ReadType()
|
/external/protobuf/src/com/google/common/io/protocol/ |
D | BoundInputStream.java | 50 bufSize = base.read(buf, 0, Math.min(remaining, buf.length)); in checkBuf() 64 public int read() throws IOException { in read() method in BoundInputStream 72 public int read(byte[] data, int start, int count) throws IOException { in read() method in BoundInputStream
|
/external/e2fsprogs/misc/ |
D | blkid.c | 130 char *read = NULL; in main() local 144 read = NULL; in main() 146 read = optarg; in main() 148 write = read; in main() 211 if (blkid_get_cache(&cache, read) < 0) in main()
|
/external/qemu/docs/ |
D | CHAR-DEVICES.TXT | 37 - qemu_chr_add_handler() is used to add "read" and "event" handlers 39 "read" part. 41 Thing is, you cannot directly read from a CS object. Instead, you provide 51 - a 'read' function that will send you bytes from the CharDriverState 91 Connect to a UDP socket for both read/write. 139 read from it after registering can_read/read handlers for it through 144 - The hardware serial port emulation (e.g. hw/goldfish_tty.c) will read data 146 used to read data from the CS and send it back to the kernel. 171 same on the endpoint. Any endpoint-initiated calls to can_read()/read() 196 iteration by calling the can_read/read functions of the corresponding user,
|