Home
last modified time | relevance | path

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

/external/pdfium/fxjs/
Dcjs_globaldata.cpp321 sData.AppendBlock(sElement.GetBuffer(), sElement.GetSize()); in SaveGlobalPersisitentVariables()
328 sFile.AppendBlock(&wType, sizeof(uint16_t)); in SaveGlobalPersisitentVariables()
330 sFile.AppendBlock(&wVersion, sizeof(uint16_t)); in SaveGlobalPersisitentVariables()
331 sFile.AppendBlock(&nCount, sizeof(uint32_t)); in SaveGlobalPersisitentVariables()
333 sFile.AppendBlock(&dwSize, sizeof(uint32_t)); in SaveGlobalPersisitentVariables()
335 sFile.AppendBlock(sData.GetBuffer(), sData.GetSize()); in SaveGlobalPersisitentVariables()
361 sData.AppendBlock(&dwNameLen, sizeof(uint32_t)); in MakeByteString()
363 sData.AppendBlock(&pData->nType, sizeof(uint16_t)); in MakeByteString()
366 sData.AppendBlock(&dData, sizeof(double)); in MakeByteString()
370 sData.AppendBlock(&dwNameLen, sizeof(uint32_t)); in MakeByteString()
[all …]
/external/pdfium/core/fxcrt/
Dcfx_widetextbuf.cpp20 AppendBlock(str.unterminated_c_str(), str.GetLength() * sizeof(wchar_t)); in operator <<()
25 AppendBlock(str.c_str(), str.GetLength() * sizeof(wchar_t)); in operator <<()
55 AppendBlock(lpsz, wcslen(lpsz) * sizeof(wchar_t)); in operator <<()
60 AppendBlock(buf.m_pBuffer.get(), buf.m_DataSize); in operator <<()
Dcfx_binarybuf.h28 void AppendBlock(const void* pBuf, size_t size);
30 AppendBlock(str.c_str(), str.GetLength()); in AppendString()
Dcfx_binarybuf.cpp63 void CFX_BinaryBuf::AppendBlock(const void* pBuf, size_t size) { in AppendBlock() function in CFX_BinaryBuf
/external/pdfium/core/fpdfapi/parser/
Dcpdf_crypto_handler.cpp177 dest_buf.AppendBlock(src_buf, src_size); in CryptStream()
182 dest_buf.AppendBlock(src_buf, src_size); in CryptStream()
189 dest_buf.AppendBlock(pContext->m_Block, 16); in CryptStream()
218 dest_buf.AppendBlock(block_buf, 16); in CryptStream()
246 dest_buf.AppendBlock(block_buf, 16); in CryptFinish()
253 dest_buf.AppendBlock(block_buf, 16); in CryptFinish()
258 dest_buf.AppendBlock(block_buf, 16 - block_buf[15]); in CryptFinish()
/external/pdfium/core/fxcodec/codec/
Dfx_codec_fax.cpp780 m_DestBuf.AppendBlock(m_pLineBuf, dest_bitpos / 8); in Encode()