Searched refs:estimated_size (Results 1 – 10 of 10) sorted by relevance
/external/pdfium/core/fpdfapi/parser/ |
D | cpdf_stream_acc.cpp | 23 uint32_t estimated_size, in LoadAllData() argument 26 ASSERT(!estimated_size); in LoadAllData() 37 ProcessFilteredData(estimated_size, bImageAcc); in LoadAllData() 45 uint32_t estimated_size) { in LoadAllDataFilteredWithEstimatedSize() argument 46 LoadAllData(false, estimated_size, false); in LoadAllDataFilteredWithEstimatedSize() 49 void CPDF_StreamAcc::LoadAllDataImageAcc(uint32_t estimated_size) { in LoadAllDataImageAcc() argument 50 LoadAllData(false, estimated_size, true); in LoadAllDataImageAcc() 118 void CPDF_StreamAcc::ProcessFilteredData(uint32_t estimated_size, in ProcessFilteredData() argument 141 !PDF_DataDecode({pSrcData.Get(), dwSrcSize}, estimated_size, bImageAcc, in ProcessFilteredData()
|
D | cpdf_stream_acc.h | 31 void LoadAllDataFilteredWithEstimatedSize(uint32_t estimated_size); 32 void LoadAllDataImageAcc(uint32_t estimated_size); 51 void LoadAllData(bool bRawAccess, uint32_t estimated_size, bool bImageAcc); 53 void ProcessFilteredData(uint32_t estimated_size, bool bImageAcc);
|
D | fpdf_parser_decode.h | 74 uint32_t estimated_size, 83 uint32_t estimated_size,
|
D | fpdf_parser_decode.cpp | 346 uint32_t estimated_size, in FlateOrLZWDecode() argument 365 estimated_size, dest_buf, dest_size); in FlateOrLZWDecode() 411 int estimated_size = i == nSize - 1 ? last_estimated_size : 0; in PDF_DataDecode() local 427 offset = FlateOrLZWDecode(false, last_span, pParam, estimated_size, in PDF_DataDecode() 430 offset = FlateOrLZWDecode(true, last_span, pParam, estimated_size, in PDF_DataDecode()
|
/external/pdfium/core/fxcodec/basic/ |
D | basicmodule.cpp | 237 FX_SAFE_SIZE_T estimated_size = src_span.size(); in RunLengthEncode() local 238 estimated_size += 2; in RunLengthEncode() 239 estimated_size /= 3; in RunLengthEncode() 240 estimated_size *= 4; in RunLengthEncode() 241 estimated_size += 1; in RunLengthEncode() 242 dest_buf->reset(FX_Alloc(uint8_t, estimated_size.ValueOrDie())); in RunLengthEncode() 316 FX_SAFE_SIZE_T estimated_size = src_span.size(); in A85Encode() local 317 estimated_size /= 4; in A85Encode() 318 estimated_size *= 5; in A85Encode() 319 estimated_size += 4; in A85Encode() [all …]
|
/external/protobuf/src/google/protobuf/stubs/ |
D | bytestream.cc | 87 GrowingArrayByteSink::GrowingArrayByteSink(size_t estimated_size) in GrowingArrayByteSink() argument 88 : capacity_(estimated_size), in GrowingArrayByteSink() 89 buf_(new char[estimated_size]), in GrowingArrayByteSink()
|
D | bytestream.h | 229 explicit GrowingArrayByteSink(size_t estimated_size);
|
/external/eigen/Eigen/src/SparseLU/ |
D | SparseLU_Memory.h | 162 Index estimated_size; in memInit() local 163 estimated_size = (5 * n + 5) * sizeof(Index) + tempSpace in memInit() 165 return estimated_size; in memInit()
|
/external/pdfium/core/fxcodec/flate/ |
D | flatemodule.h | 41 uint32_t estimated_size,
|
D | flatemodule.cpp | 813 uint32_t estimated_size, in FlateOrLZWDecode() argument 829 FlateUncompress(src_span, estimated_size, dest_buf, dest_size, &offset); in FlateOrLZWDecode()
|