Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/lbmp/
Dfx_bmp.cpp412 uint8_t* first_byte_ptr = nullptr; in DecodeRLE8() local
417 if (!ReadData(&first_byte_ptr, 1)) in DecodeRLE8()
420 switch (*first_byte_ptr) { in DecodeRLE8()
422 if (!ReadData(&first_byte_ptr, 1)) { in DecodeRLE8()
426 switch (*first_byte_ptr) { in DecodeRLE8()
469 static_cast<int32_t>(*first_byte_ptr) > avail_size) { in DecodeRLE8()
473 if (!ReadData(&second_byte_ptr, *first_byte_ptr & 1 in DecodeRLE8()
474 ? *first_byte_ptr + 1 in DecodeRLE8()
475 : *first_byte_ptr)) { in DecodeRLE8()
479 std::copy(second_byte_ptr, second_byte_ptr + *first_byte_ptr, in DecodeRLE8()
[all …]