Home
last modified time | relevance | path

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

/external/v8/src/objects/
Dmanaged.h29 ManagedPtrDestructor(size_t estimated_size, void* shared_ptr_ptr, in ManagedPtrDestructor()
31 : estimated_size_(estimated_size), in ManagedPtrDestructor()
64 size_t estimated_size, in Allocate() argument
67 return FromSharedPtr(isolate, estimated_size, in Allocate()
74 size_t estimated_size, in FromRawPtr() argument
76 return FromSharedPtr(isolate, estimated_size, in FromRawPtr()
84 Isolate* isolate, size_t estimated_size, in FromUniquePtr() argument
86 return FromSharedPtr(isolate, estimated_size, std::move(unique_ptr)); in FromUniquePtr()
91 Isolate* isolate, size_t estimated_size, in FromSharedPtr() argument
94 ->AdjustAmountOfExternalAllocatedMemory(estimated_size); in FromSharedPtr()
[all …]
/external/protobuf/src/google/protobuf/stubs/
Dbytestream.cc85 GrowingArrayByteSink::GrowingArrayByteSink(size_t estimated_size) in GrowingArrayByteSink() argument
86 : capacity_(estimated_size), in GrowingArrayByteSink()
87 buf_(new char[estimated_size]), in GrowingArrayByteSink()
Dbytestream.h228 explicit GrowingArrayByteSink(size_t estimated_size);
/external/eigen/Eigen/src/SparseLU/
DSparseLU_Memory.h162 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/fpdfapi/parser/
Dfpdf_parser_decode.h82 uint32_t estimated_size,
89 uint32_t estimated_size,
Dcpdf_stream_acc.cpp21 uint32_t estimated_size, in LoadAllData() argument
48 estimated_size, bImageAcc, &m_pData, &m_dwSize, in LoadAllData()
Dfpdf_parser_decode.cpp311 uint32_t estimated_size, in FPDFAPI_FlateOrLZWDecode() argument
330 BitsPerComponent, Columns, estimated_size, dest_buf, dest_size); in FPDFAPI_FlateOrLZWDecode()
365 int estimated_size = i == nSize - 1 ? last_estimated_size : 0; in PDF_DataDecode() local
382 estimated_size, &new_buf, &new_size); in PDF_DataDecode()
385 estimated_size, &new_buf, &new_size); in PDF_DataDecode()
Dcpdf_stream_acc.h26 void LoadAllData(bool bRawAccess, uint32_t estimated_size, bool bImageAcc);
/external/pdfium/core/fxcodec/codec/
Dccodec_flatemodule.h36 uint32_t estimated_size,
Dfx_codec_flate.cpp770 uint32_t estimated_size, in FlateOrLZWDecode() argument
796 FlateUncompress(src_buf, src_size, estimated_size, *dest_buf, *dest_size, in FlateOrLZWDecode()
/external/v8/src/arm/
Dassembler-arm.cc5219 int estimated_size = size_up_to_marker + estimated_size_after_marker; in CheckConstPool() local
5235 int dist64 = pc_offset() + estimated_size - in CheckConstPool()
5244 int dist32 = pc_offset() + estimated_size - first_const_pool_32_use_; in CheckConstPool()