Home
last modified time | relevance | path

Searched refs:kMaxDim (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/images/
Dbmpdecoderhelper.cpp18 static const int kMaxDim = SHRT_MAX / 2; variable
72 if (width_ <= 0 || width_ > kMaxDim || height_ <= 0 || height_ > kMaxDim) { in DecodeImage()
/external/skia/src/codec/
DSkBmpCodec.cpp285 constexpr int kMaxDim = 1 << 16; in ReadHeader() local
286 if (width <= 0 || height <= 0 || width >= kMaxDim || height >= kMaxDim) { in ReadHeader()