Home
last modified time | relevance | path

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

/external/pdfium/core/src/fxcodec/codec/
Dfx_codec_flate.cpp348 uint8_t raw_byte = pSrcData[byte + 1]; in PNG_PredictLine() local
355 pDestData[byte] = raw_byte + left; in PNG_PredictLine()
363 pDestData[byte] = raw_byte + up; in PNG_PredictLine()
375 pDestData[byte] = raw_byte + (up + left) / 2; in PNG_PredictLine()
391 pDestData[byte] = raw_byte + PaethPredictor(left, up, upper_left); in PNG_PredictLine()
395 pDestData[byte] = raw_byte; in PNG_PredictLine()
433 uint8_t raw_byte = pSrcData[byte + 1]; in PNG_Predictor() local
440 pDestData[byte] = raw_byte + left; in PNG_Predictor()
448 pDestData[byte] = raw_byte + up; in PNG_Predictor()
460 pDestData[byte] = raw_byte + (up + left) / 2; in PNG_Predictor()
[all …]