Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/bmp/
Dcfx_bmpdecompressor.cpp235 src_row_bytes_ = stride.ValueOrDie(); in ReadBmpHeaderDimensions()
255 out_row_bytes_ = src_row_bytes_; in ReadBmpHeaderDimensions()
372 std::vector<uint8_t, FxAllocAllocator<uint8_t>> dest_buf(src_row_bytes_); in DecodeRGB()
375 if (!ReadData(dest_buf.data(), src_row_bytes_)) in DecodeRGB()
429 std::copy(dest_buf_data, dest_buf_data + src_row_bytes_, in DecodeRGB()
431 idx += src_row_bytes_; in DecodeRGB()
588 if (size + (col_num_ >> 1) > src_row_bytes_) in DecodeRLE4()
619 if (size + (col_num_ >> 1) > src_row_bytes_) in DecodeRLE4()
Dcfx_bmpdecompressor.h75 size_t src_row_bytes_ = 0; variable