Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/codec/
Dfx_codec_flate.cpp262 uint8_t* pDestData = dest_buf; in PNG_PredictorEncode() local
265 pDestData[0] = 2; in PNG_PredictorEncode()
269 pDestData[byte + 1] = pSrcData[byte] - up; in PNG_PredictorEncode()
272 pDestData += (row_size + 1); in PNG_PredictorEncode()
281 void PNG_PredictLine(uint8_t* pDestData, in PNG_PredictLine() argument
291 FXSYS_memmove(pDestData, pSrcData + 1, row_size); in PNG_PredictLine()
300 left = pDestData[byte - BytesPerPixel]; in PNG_PredictLine()
302 pDestData[byte] = raw_byte + left; in PNG_PredictLine()
310 pDestData[byte] = raw_byte + up; in PNG_PredictLine()
316 left = pDestData[byte - BytesPerPixel]; in PNG_PredictLine()
[all …]
/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTDecompress.h39 void *pDestData,
DPVRTDecompress.cpp809 …ss(const void * const pSrcData, const int &x, const int &y, const void *pDestData,const int &/*nMo… in ETCTextureDecompress() argument
823 output = (unsigned int*)pDestData + i*x +m; in ETCTextureDecompress()
918 void *pDestData, in PVRTDecompressETC() argument
930 memcpy((char*)(pDestData)+i*x*4,pTempBuffer+PVRT_MAX(x,ETC_MIN_TEXWIDTH)*4*i,x*4); in PVRTDecompressETC()
936 i32read = ETCTextureDecompress(pSrcData,x,y,pDestData,nMode); in PVRTDecompressETC()
939 unsigned char* pSwap = (unsigned char*)pDestData, swap; in PVRTDecompressETC()