Home | History | Annotate | Download | only in tests

Lines Matching defs:bytes

890     size_t peek(void* buf, size_t bytes) const override {
891 return fStream.peek(buf, SkTMin(bytes, fLimit));
893 size_t read(void* buf, size_t bytes) override {
894 return fStream.read(buf, bytes);
979 // 8 bytes to determine whether we can read the image. This is important
980 // because SkCodec only passes 14 bytes to SkWbmpCodec to determine whether the
1324 const size_t bytes = fStream->read(buffer, size);
1325 fPosition += bytes;
1326 return bytes;