HomeSort by relevance Sort by last modified time
    Searched refs:read_mbf (Results 1 - 2 of 2) sorted by null

  /external/skia/src/images/
SkImageDecoder_wbmp.cpp 36 static bool read_mbf(SkStream* stream, int* value) function
65 if (!read_mbf(stream, &fWidth) || (unsigned)fWidth > 0xFFFF) {
68 if (!read_mbf(stream, &fHeight) || (unsigned)fHeight > 0xFFFF) {
  /external/skia/src/codec/
SkWbmpCodec.cpp 52 static bool read_mbf(SkStream* stream, uint64_t* value) { function
82 if (!read_mbf(stream, &width) || width > 0xFFFF || !width) {
85 if (!read_mbf(stream, &height) || height > 0xFFFF || !height) {

Completed in 158 milliseconds