Home
last modified time | relevance | path

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

/external/pdfium/core/src/fxcodec/codec/
Dfx_codec_flate.cpp246 FX_LPBYTE pSrcData = data_buf; in PNG_PredictorEncode() local
255 FXSYS_memmove32(pDestData + 1, pSrcData, move_size); in PNG_PredictorEncode()
257 pSrcData += move_size; in PNG_PredictorEncode()
267 left = pSrcData[byte - BytesPerPixel]; in PNG_PredictorEncode()
269 pDestData[byte + 1] = pSrcData[byte] - left; in PNG_PredictorEncode()
276 up = pSrcData[byte - row_size]; in PNG_PredictorEncode()
278 pDestData[byte + 1] = pSrcData[byte] - up; in PNG_PredictorEncode()
285 left = pSrcData[byte - BytesPerPixel]; in PNG_PredictorEncode()
289 up = pSrcData[byte - row_size]; in PNG_PredictorEncode()
291 pDestData[byte + 1] = pSrcData[byte] - (left + up) / 2; in PNG_PredictorEncode()
[all …]
/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_objects.cpp1082 FX_LPBYTE pSrcData; in LoadAllData() local
1088 pSrcData = m_pSrcData = FX_Alloc(FX_BYTE, dwSrcSize); in LoadAllData()
1089 if (!pStream->ReadRawData(0, pSrcData, dwSrcSize)) { in LoadAllData()
1093 pSrcData = pStream->m_pDataBuf; in LoadAllData()
1101 pStream->m_pCryptoHandler->DecryptStream(context, pSrcData, dwSrcSize, dest_buf); in LoadAllData()
1107 pDecryptedData = pSrcData; in LoadAllData()
1121 if (pSrcData != pStream->m_pDataBuf && pSrcData != m_pData) { in LoadAllData()
1122 FX_Free(pSrcData); in LoadAllData()
1124 if (pDecryptedData != pSrcData && pDecryptedData != m_pData) { in LoadAllData()
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3dapi/
Dd3d10shader.idl257 HRESULT D3D10CompileShader(LPCSTR pSrcData, SIZE_T SrcDataLen, LPCSTR pFileName, const D3D10_SHADER…
264 HRESULT D3D10PreprocessShader(LPCSTR pSrcData, SIZE_T SrcDataSize, LPCSTR pFileName, const D3D10_SH…
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/
Dd3d11_context.h1593 const void *pSrcData, in UpdateSubresource()
1603 …pipe->transfer_inline_write(pipe, dst->resource, dst_level, PIPE_TRANSFER_WRITE, &box, pSrcData, s… in UpdateSubresource()