Searched refs:second_byte_ptr (Results 1 – 1 of 1) sorted by relevance
413 uint8_t* second_byte_ptr = nullptr; in DecodeRLE8() local473 if (!ReadData(&second_byte_ptr, *first_byte_ptr & 1 in DecodeRLE8()479 std::copy(second_byte_ptr, second_byte_ptr + *first_byte_ptr, in DecodeRLE8()495 if (!ReadData(&second_byte_ptr, 1)) { in DecodeRLE8()501 *second_byte_ptr); in DecodeRLE8()514 uint8_t* second_byte_ptr = nullptr; in DecodeRLE4() local581 if (!ReadData(&second_byte_ptr, size & 1 ? size + 1 : size)) { in DecodeRLE4()586 uint8_t color = (i & 0x01) ? (*second_byte_ptr++ & 0x0F) in DecodeRLE4()587 : (*second_byte_ptr & 0xF0) >> 4; in DecodeRLE4()610 if (!ReadData(&second_byte_ptr, 1)) { in DecodeRLE4()[all …]