Home | History | Annotate | Download | only in data

Lines Matching refs:Read

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;
108 return 0xffffff & (Read() << 16 | Read() << 8 | Read());
121 return Read() << 24 | Read() << 16 | Read() << 8 | Read();